SYMBOL INDEX (106 symbols across 7 files) FILE: 11_app_dev/chaincode_example01.go type SimpleChaincode (line 27) | type SimpleChaincode struct method Init (line 38) | func (t *SimpleChaincode) Init(stub *shim.ChaincodeStub, function stri... method Invoke (line 52) | func (t *SimpleChaincode) Invoke(stub *shim.ChaincodeStub, function st... method Query (line 67) | func (t *SimpleChaincode) Query(stub *shim.ChaincodeStub, function str... method write (line 80) | func (t *SimpleChaincode) write(stub *shim.ChaincodeStub, args []strin... method read (line 99) | func (t *SimpleChaincode) read(stub *shim.ChaincodeStub, args []string... function main (line 30) | func main() { FILE: 11_app_dev/chaincode_example02.go type SimpleChaincode (line 34) | type SimpleChaincode struct method Init (line 37) | func (t *SimpleChaincode) Init(stub *shim.ChaincodeStub, function stri... method Invoke (line 74) | func (t *SimpleChaincode) Invoke(stub *shim.ChaincodeStub, function st... method delete (line 133) | func (t *SimpleChaincode) delete(stub *shim.ChaincodeStub, args []stri... method Query (line 150) | func (t *SimpleChaincode) Query(stub *shim.ChaincodeStub, function str... function main (line 180) | func main() { FILE: 11_app_dev/chaincode_example03.go type SimpleChaincode (line 24) | type SimpleChaincode struct method Init (line 64) | func (t *SimpleChaincode) Init(stub *shim.ChaincodeStub, function stri... method Invoke (line 89) | func (t *SimpleChaincode) Invoke(stub *shim.ChaincodeStub, function st... method createBank (line 107) | func (t *SimpleChaincode) createBank(stub *shim.ChaincodeStub, args []... method createCompany (line 131) | func (t *SimpleChaincode) createCompany(stub *shim.ChaincodeStub, args... method issueCoin (line 152) | func (t *SimpleChaincode) issueCoin(stub *shim.ChaincodeStub, args []s... method issueCoinToBank (line 191) | func (t *SimpleChaincode) issueCoinToBank(stub *shim.ChaincodeStub, ar... method issueCoinToCp (line 266) | func (t *SimpleChaincode) issueCoinToCp(stub *shim.ChaincodeStub, args... method transfer (line 344) | func (t *SimpleChaincode) transfer(stub *shim.ChaincodeStub, args []st... method Query (line 424) | func (t *SimpleChaincode) Query(stub *shim.ChaincodeStub, function str... type CenterBank (line 27) | type CenterBank struct type Bank (line 33) | type Bank struct type Company (line 40) | type Company struct type Transaction (line 46) | type Transaction struct function main (line 56) | func main() { function getCenterBank (line 513) | func getCenterBank(stub *shim.ChaincodeStub) (CenterBank, []byte,error) { function getCompanyById (line 526) | func getCompanyById(stub *shim.ChaincodeStub, id string) (Company,[]byte... function getBankById (line 539) | func getBankById(stub *shim.ChaincodeStub, id string) (Bank, []byte,erro... function getTransactionById (line 552) | func getTransactionById(stub *shim.ChaincodeStub, id string) (Transactio... function getBanks (line 565) | func getBanks(stub *shim.ChaincodeStub) ([]Bank, error) { function getCompanys (line 597) | func getCompanys(stub *shim.ChaincodeStub) ([]Company, error) { function getTransactions (line 629) | func getTransactions(stub *shim.ChaincodeStub) ([]Transaction, error) { function writeCenterBank (line 661) | func writeCenterBank(stub *shim.ChaincodeStub,centerBank CenterBank) (er... function writeBank (line 673) | func writeBank(stub *shim.ChaincodeStub,bank Bank) (error) { function writeCompany (line 690) | func writeCompany(stub *shim.ChaincodeStub,company Company) (error) { function writeTransaction (line 707) | func writeTransaction(stub *shim.ChaincodeStub,transaction Transaction) ... FILE: 11_app_dev/chaincode_example04.go type SimpleChaincode (line 26) | type SimpleChaincode struct method Init (line 66) | func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Re... method Invoke (line 73) | func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.... method createSchool (line 104) | func (t *SimpleChaincode) createSchool(stub shim.ChaincodeStubInterfac... method createStudent (line 133) | func (t *SimpleChaincode) createStudent(stub shim.ChaincodeStubInterfa... method enrollStudent (line 164) | func (t *SimpleChaincode) enrollStudent(stub shim.ChaincodeStubInterfa... method updateDiploma (line 217) | func (t *SimpleChaincode) updateDiploma(stub shim.ChaincodeStubInterfa... method getStudentByAddress (line 280) | func (t *SimpleChaincode) getStudentByAddress(stub shim.ChaincodeStubI... method getSchoolByAddress (line 296) | func (t *SimpleChaincode) getSchoolByAddress(stub shim.ChaincodeStubIn... method getRecordById (line 312) | func (t *SimpleChaincode) getRecordById(stub shim.ChaincodeStubInterfa... method getRecords (line 328) | func (t *SimpleChaincode) getRecords(stub shim.ChaincodeStubInterface)... method getBackgroundById (line 376) | func (t *SimpleChaincode) getBackgroundById(stub shim.ChaincodeStubInt... type School (line 32) | type School struct type Student (line 41) | type Student struct type Background (line 48) | type Background struct type Record (line 54) | type Record struct function writeRecord (line 384) | func writeRecord(stub shim.ChaincodeStubInterface, record Record) error { function writeSchool (line 399) | func writeSchool(stub shim.ChaincodeStubInterface, school School) error { function writeStudent (line 412) | func writeStudent(stub shim.ChaincodeStubInterface, student Student) err... function writeBackground (line 425) | func writeBackground(stub shim.ChaincodeStubInterface, background Backgr... function GetAddress (line 443) | func GetAddress() (string, string, string) { function main (line 461) | func main() { FILE: 11_app_dev/chaincode_example05.go type SimpleChaincode (line 23) | type SimpleChaincode struct method Init (line 49) | func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface, funct... method Invoke (line 59) | func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface, fun... method Query (line 79) | func (t *SimpleChaincode) Query(stub shim.ChaincodeStubInterface, func... method createUser (line 157) | func (t *SimpleChaincode) createUser(stub shim.ChaincodeStubInterface,... type Home (line 29) | type Home struct type Transaction (line 39) | type Transaction struct function main (line 131) | func main() { function GetAddress (line 139) | func GetAddress() (string, string, string) { function buyByAddress (line 188) | func buyByAddress(stub shim.ChaincodeStubInterface, args []string) ([]by... function changeStatus (line 253) | func changeStatus(stub shim.ChaincodeStubInterface, args []string) ([]by... function getHomeByAddress (line 273) | func getHomeByAddress(stub shim.ChaincodeStubInterface, address string) ... function getHomes (line 286) | func getHomes(stub shim.ChaincodeStubInterface) ([]Home, error) { function getHomeById (line 318) | func getHomeById(stub shim.ChaincodeStubInterface, id string) (Home, []b... function getTransactionById (line 325) | func getTransactionById(stub shim.ChaincodeStubInterface, id string) (Tr... function getTransactions (line 340) | func getTransactions(stub shim.ChaincodeStubInterface) ([]Transaction, e... function writeHome (line 373) | func writeHome(stub shim.ChaincodeStubInterface, home Home) error { function writeTransaction (line 385) | func writeTransaction(stub shim.ChaincodeStubInterface, transaction Tran... FILE: 11_app_dev/chaincode_example06.go type SimpleChaincode (line 21) | type SimpleChaincode struct method Init (line 73) | func (t *SimpleChaincode) Init(stub *shim.ChaincodeStub, function stri... method Invoke (line 86) | func (t *SimpleChaincode) Invoke(stub *shim.ChaincodeStub, function st... method Query (line 97) | func (t *SimpleChaincode) Query(stub *shim.ChaincodeStub, function str... method createUser (line 168) | func (t *SimpleChaincode) createUser(stub *shim.ChaincodeStub, args []... method createExpressPointer (line 198) | func(t *SimpleChaincode) createExpressPointer(stub *shim.ChaincodeStub... method createExpress (line 222) | func(t *SimpleChaincode) createExpress(stub *shim.ChaincodeStub,args[]... method createExpressOrder (line 257) | func(t *SimpleChaincode) createExpressOrder(stub *shim.ChaincodeStub,a... method addExpressPointer (line 296) | func(t *SimpleChaincode) addExpressPointer(stub *shim.ChaincodeStub,ad... method updateExpressOrder (line 320) | func(t *SimpleChaincode) updateExpressOrder(stub *shim.ChaincodeStub,a... method finishExpressOrder (line 344) | func(t *SimpleChaincode) finishExpressOrder(stub *shim.ChaincodeStub,a... method getExpressOrderById (line 397) | func(t *SimpleChaincode) getExpressOrderById(stub *shim.ChaincodeStub,... method getExpress (line 411) | func(t *SimpleChaincode) getExpress(stub *shim.ChaincodeStub)(Express,... method getUserByAddress (line 426) | func(t *SimpleChaincode) getUserByAddress(stub *shim.ChaincodeStub,add... method getExpressPointerByAddress (line 441) | func(t *SimpleChaincode) getExpressPointerByAddress(stub *shim.Chainco... method writeExpress (line 456) | func(t *SimpleChaincode) writeExpress(stub *shim.ChaincodeStub,Express... method writeExpressOrder (line 468) | func(t *SimpleChaincode) writeExpressOrder(stub *shim.ChaincodeStub,Ex... method writeUser (line 482) | func(t *SimpleChaincode) writeUser(stub *shim.chaincodeStub,User user)... type ExpressOrder (line 27) | type ExpressOrder struct type User (line 43) | type User struct type Express (line 53) | type Express struct type ExpressPointer (line 64) | type ExpressPointer struct function main (line 142) | func main() { function GetAddress (line 150) | func GetAddress() (string,string,string) { method writeExpressPointer (line 494) | func(t *SimpleChaincdoe) writeExpressPointer(stub *shim.chaincodeStub,Ex... FILE: _code/unpack_chaincode.go function check (line 12) | func check(msg string, e error) { function main (line 19) | func main() {