Searched refs:fieldId (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/tools/incident_report/
H A Dgeneric_message.cpp28 GenericMessage::addInt32(int32_t fieldId, uint32_t value) argument
33 mNodes.insert(pair<int32_t,Node>(fieldId, node));
37 GenericMessage::addInt64(int32_t fieldId, uint64_t value) argument
42 mNodes.insert(pair<int32_t,Node>(fieldId, node));
46 GenericMessage::addMessage(int32_t fieldId) argument
52 mNodes.insert(pair<int32_t,Node>(fieldId, node));
57 GenericMessage::addString(int32_t fieldId, const string& value) argument
62 mNodes.insert(pair<int32_t,Node>(fieldId, node));
66 GenericMessage::find(int fieldId) const
68 return mNodes.equal_range(fieldId);
[all...]
H A Dgeneric_message.h56 void addInt32(int32_t fieldId, uint32_t value);
57 void addInt64(int32_t fieldId, uint64_t value);
58 GenericMessage* addMessage(int32_t fieldId);
59 void addString(int32_t fieldId, const string& value);
64 const_iterator_pair find(int fieldId) const;
H A Dmain.cpp45 read_length_delimited(CodedInputStream* in, uint32 fieldId, Descriptor const* descriptor, argument
53 FieldDescriptor const* field = descriptor->FindFieldByNumber(fieldId);
57 GenericMessage* child = message->addMessage(fieldId);
68 message->addString(fieldId, str);
93 int fieldId = WireFormatLite::GetTagFieldNumber(tag); local
97 message->addInt64(fieldId, value64);
104 message->addInt64(fieldId, value64);
110 if (!read_length_delimited(in, fieldId, descriptor, message)) {
116 message->addInt32(fieldId, value32);
208 int fieldId local
[all...]
/frameworks/base/cmds/incidentd/src/
H A Dprotobuf.h32 uint8_t* write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size);
H A Dprotobuf.cpp35 write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size) argument
37 buf = write_raw_varint(buf, (fieldId << 3) | 2);
/frameworks/base/services/core/java/com/android/server/power/
H A DSuspendBlocker.java46 void writeToProto(ProtoOutputStream proto, long fieldId); argument
H A DWirelessChargerDetector.java175 public void writeToProto(ProtoOutputStream proto, long fieldId) { argument
176 final long wcdToken = proto.start(fieldId);
H A DPowerManagerService.java3937 public void writeToProto(ProtoOutputStream proto, long fieldId) { argument
3938 final long wakeLockToken = proto.start(fieldId);
4061 public void writeToProto(ProtoOutputStream proto, long fieldId) { argument
4062 final long sbToken = proto.start(fieldId);
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DBaseObservable.java56 * <code>BR</code> to be used as <code>fieldId</code>.
58 * @param fieldId The generated BR id for the Bindable field.
60 public void notifyPropertyChanged(int fieldId) { argument
62 mCallbacks.notifyCallbacks(this, fieldId, null);
H A DViewDataBinding.java284 * @param fieldId The BR ID of the field being changed or _all if
289 protected abstract boolean onFieldChange(int localFieldId, Object object, int fieldId); argument
424 private void handleFieldChange(int mLocalFieldId, Object object, int fieldId) { argument
425 boolean result = onFieldChange(mLocalFieldId, object, fieldId);
/frameworks/base/core/java/android/util/proto/
H A DProtoOutputStream.java119 * Position of the field type in a (long) fieldId.
124 * Mask for the field types stored in a fieldId. Leaves a whole
262 * Write a value for the given fieldId.
268 * @param fieldId The field identifier constant from the generated class.
271 public void write(long fieldId, double val) { argument
273 final int id = (int)fieldId;
275 switch ((int)((fieldId & (FIELD_TYPE_MASK | FIELD_COUNT_MASK)) >> FIELD_TYPE_SHIFT)) {
391 + getFieldIdString(fieldId));
397 * Write a value for the given fieldId.
403 * @param fieldId Th
406 write(long fieldId, float val) argument
541 write(long fieldId, int val) argument
676 write(long fieldId, long val) argument
809 write(long fieldId, boolean val) argument
838 write(long fieldId, String val) argument
867 write(long fieldId, byte[] val) argument
899 start(long fieldId) argument
935 writeDouble(long fieldId, double val) argument
955 writeRepeatedDouble(long fieldId, double val) argument
973 writePackedDouble(long fieldId, double[] val) argument
999 writeFloat(long fieldId, float val) argument
1019 writeRepeatedFloat(long fieldId, float val) argument
1037 writePackedFloat(long fieldId, float[] val) argument
1086 writeInt32(long fieldId, int val) argument
1110 writeRepeatedInt32(long fieldId, int val) argument
1132 writePackedInt32(long fieldId, int[] val) argument
1164 writeInt64(long fieldId, long val) argument
1184 writeRepeatedInt64(long fieldId, long val) argument
1202 writePackedInt64(long fieldId, long[] val) argument
1233 writeUInt32(long fieldId, int val) argument
1253 writeRepeatedUInt32(long fieldId, int val) argument
1271 writePackedUInt32(long fieldId, int[] val) argument
1302 writeUInt64(long fieldId, long val) argument
1322 writeRepeatedUInt64(long fieldId, long val) argument
1340 writePackedUInt64(long fieldId, long[] val) argument
1371 writeSInt32(long fieldId, int val) argument
1391 writeRepeatedSInt32(long fieldId, int val) argument
1409 writePackedSInt32(long fieldId, int[] val) argument
1440 writeSInt64(long fieldId, long val) argument
1460 writeRepeatedSInt64(long fieldId, long val) argument
1478 writePackedSInt64(long fieldId, long[] val) argument
1508 writeFixed32(long fieldId, int val) argument
1528 writeRepeatedFixed32(long fieldId, int val) argument
1546 writePackedFixed32(long fieldId, int[] val) argument
1572 writeFixed64(long fieldId, long val) argument
1592 writeRepeatedFixed64(long fieldId, long val) argument
1610 writePackedFixed64(long fieldId, long[] val) argument
1635 writeSFixed32(long fieldId, int val) argument
1655 writeRepeatedSFixed32(long fieldId, int val) argument
1673 writePackedSFixed32(long fieldId, int[] val) argument
1699 writeSFixed64(long fieldId, long val) argument
1719 writeRepeatedSFixed64(long fieldId, long val) argument
1737 writePackedSFixed64(long fieldId, long[] val) argument
1763 writeBool(long fieldId, boolean val) argument
1784 writeRepeatedBool(long fieldId, boolean val) argument
1802 writePackedBool(long fieldId, boolean[] val) argument
1832 writeString(long fieldId, String val) argument
1851 writeRepeatedString(long fieldId, String val) argument
1893 writeBytes(long fieldId, byte[] val) argument
1913 writeRepeatedBytes(long fieldId, byte[] val) argument
1939 writeEnum(long fieldId, int val) argument
1959 writeRepeatedEnum(long fieldId, int val) argument
1977 writePackedEnum(long fieldId, int[] val) argument
2093 startObject(long fieldId) argument
2121 startRepeatedObject(long fieldId) argument
2219 writeObject(long fieldId, byte[] value) argument
2239 writeRepeatedObject(long fieldId, byte[] value) argument
2283 checkFieldId(long fieldId, long expectedFlags) argument
2373 getFieldIdString(long fieldId) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java421 public int fieldId; field in class:EditorInfo
525 + " fieldId=" + fieldId
550 dest.writeInt(fieldId);
579 res.fieldId = source.readInt();
H A DInputMethodManager.java1236 tba.fieldId = view.getId();
/frameworks/base/core/java/android/os/
H A DLooper.java330 public void writeToProto(ProtoOutputStream proto, long fieldId) { argument
331 final long looperToken = proto.start(fieldId);
H A DMessage.java525 void writeToProto(ProtoOutputStream proto, long fieldId) { argument
526 final long messageToken = proto.start(fieldId);
H A DMessageQueue.java794 void writeToProto(ProtoOutputStream proto, long fieldId) { argument
795 final long messageQueueToken = proto.start(fieldId);
H A DWorkSource.java698 public void writeToProto(ProtoOutputStream proto, long fieldId) { argument
699 final long workSourceToken = proto.start(fieldId);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSetting.java135 public void writeToProto(ProtoOutputStream proto, long fieldId, List<UserInfo> users) { argument
136 final long packageToken = proto.start(fieldId);
H A DPackageSettingBase.java582 protected void writeUsersInfoToProto(ProtoOutputStream proto, long fieldId) { argument
585 final long userToken = proto.start(fieldId);
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java174 final int layoutId, final int fieldId) {
181 return new ArrayAdapter<LocaleInfo>(context, layoutId, fieldId, localeInfos) {
188 text = (TextView) view.findViewById(fieldId);
173 constructAdapter(Context context, final int layoutId, final int fieldId) argument
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLCHeader.cpp249 supportsExtension(JNIEnv *_env, jobject impl, jfieldID fieldId) { argument
262 return _env->GetBooleanField(impl, fieldId);
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp185 jfieldID fieldId = env->GetFieldID(clazz, "mNativeContext", "J"); local
187 jlong oldHandle = env->GetLongField(thiz, fieldId);
195 env->SetLongField(thiz, fieldId, reinterpret_cast<jlong>(client.get()));
202 jfieldID fieldId = env->GetFieldID(clazz, "mNativeContext", "J"); local
204 jlong clientHandle = env->GetLongField(thiz, fieldId);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DInstrument.java214 private void writeBundle(ProtoOutputStream proto, long fieldId, Bundle bundle) { argument
215 final long bundleToken = proto.startObject(fieldId);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProtoDumpUtil.java960 @NonNull ProtoOutputStream proto, String settingName, long fieldId) {
962 long settingsToken = proto.start(fieldId);
959 dumpSetting(@onNull SettingsState settings, @NonNull ProtoOutputStream proto, String settingName, long fieldId) argument
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp250 supportsExtension(JNIEnv *_env, jobject impl, jfieldID fieldId) { argument
263 return _env->GetBooleanField(impl, fieldId);

Completed in 6881 milliseconds

12