Lines Matching refs:name

46     void setInt32(const char *name, int32_t value);
47 void setInt64(const char *name, int64_t value);
48 void setSize(const char *name, size_t value);
49 void setFloat(const char *name, float value);
50 void setDouble(const char *name, double value);
51 void setPointer(const char *name, void *value);
52 void setString(const char *name, const char *s, ssize_t len = -1);
53 void setString(const char *name, const AString &s);
54 void setObject(const char *name, const sp<RefBase> &obj);
55 void setBuffer(const char *name, const sp<ABuffer> &buffer);
56 void setMessage(const char *name, const sp<AMessage> &obj);
59 const char *name,
62 bool contains(const char *name) const;
64 bool findInt32(const char *name, int32_t *value) const;
65 bool findInt64(const char *name, int64_t *value) const;
66 bool findSize(const char *name, size_t *value) const;
67 bool findFloat(const char *name, float *value) const;
68 bool findDouble(const char *name, double *value) const;
69 bool findPointer(const char *name, void **value) const;
70 bool findString(const char *name, AString *value) const;
71 bool findObject(const char *name, sp<RefBase> *obj) const;
72 bool findBuffer(const char *name, sp<ABuffer> *buffer) const;
73 bool findMessage(const char *name, sp<AMessage> *obj) const;
76 const char *name,
142 void setName(const char *name, size_t len);
151 Item *allocateItem(const char *name);
153 const Item *findItem(const char *name, Type type) const;
156 const char *name, const sp<RefBase> &obj, Type type);
158 size_t findItemIndex(const char *name, size_t len) const;