Home
last modified time | relevance | path

Searched refs:EntityProto (Results 1 – 5 of 5) sorted by relevance

/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
Ddatastore_v3.pb.go947 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 …]
Ddatastore_v3.proto111 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/
Dsave.go121 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{
Dload.go299 func loadEntity(dst interface{}, src *pb.EntityProto) (err error) { argument
331 func protoToEntity(src *pb.EntityProto) (*Entity, error) { argument
395 var ent pb.EntityProto
Dquery.go596 func (t *Iterator) next() (*Key, *pb.EntityProto, error) {