Searched refs:EntityProto (Results 1 – 5 of 5) sorted by relevance
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/ |
D | datastore_v3.pb.go | 947 type EntityProto struct { struct 959 func (m *EntityProto) Reset() { *m = EntityProto{} } argument 960 func (m *EntityProto) String() string { return proto.CompactTextString(m) } argument 961 func (*EntityProto) ProtoMessage() {} argument 963 func (m *EntityProto) GetKey() *Reference { argument 970 func (m *EntityProto) GetEntityGroup() *Path { argument 977 func (m *EntityProto) GetOwner() *User { argument 984 func (m *EntityProto) GetKind() EntityProto_Kind { argument 991 func (m *EntityProto) GetKindUri() string { argument 998 func (m *EntityProto) GetProperty() []*Property { argument [all …]
|
D | datastore_v3.proto | 111 message EntityProto { message 390 optional EntityProto entity = 2; 404 repeated EntityProto entity = 1; 474 repeated EntityProto result = 2;
|
/external/syzkaller/vendor/google.golang.org/appengine/datastore/ |
D | save.go | 121 func saveEntity(defaultAppID string, key *Key, src interface{}) (*pb.EntityProto, error) { 225 func propertiesToProto(defaultAppID string, key *Key, props []Property) (*pb.EntityProto, error) { 226 e := &pb.EntityProto{
|
D | load.go | 299 func loadEntity(dst interface{}, src *pb.EntityProto) (err error) { argument 331 func protoToEntity(src *pb.EntityProto) (*Entity, error) { argument 395 var ent pb.EntityProto
|
D | query.go | 596 func (t *Iterator) next() (*Key, *pb.EntityProto, error) {
|