Home
last modified time | relevance | path

Searched refs:flg (Results 1 – 8 of 8) sorted by relevance

/cts/tests/process/src/android/os/cts/process/common/
DMessage.java113 int flg = 0; in writeToParcel() local
114 if (packageName != null) flg |= 0x1; in writeToParcel()
115 if (applicationClassName != null) flg |= 0x2; in writeToParcel()
116 if (receiverClassName != null) flg |= 0x4; in writeToParcel()
117 if (applicationContextClassName != null) flg |= 0x8; in writeToParcel()
118 if (processName != null) flg |= 0x10; in writeToParcel()
119 dest.writeInt(flg); in writeToParcel()
144 int flg = in.readInt(); in Message() local
145 String _packageName = (flg & 0x1) == 0 ? null : in.readString(); in Message()
146 String _applicationClassName = (flg & 0x2) == 0 ? null : in.readString(); in Message()
[all …]
/cts/hostsidetests/voiceinteraction/app/src/com/android/cts/voiceinteraction/
DEventPayloadParcelable.java43 int flg = in.readInt(); in EventPayloadParcelable() local
45 (flg & 0x2) == 0 ? null : in.readTypedObject( in EventPayloadParcelable()
47 this.mAudioStream = (flg & 0x4) == 0 ? null : in.readTypedObject( in EventPayloadParcelable()
75 int flg = 0; in writeToParcel() local
76 if (mHotwordDetectedResult != null) flg |= 0x2; in writeToParcel()
77 if (mAudioStream != null) flg |= 0x4; in writeToParcel()
79 out.writeInt(flg); in writeToParcel()
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
DEventPayloadParcelable.java30 int flg = in.readInt(); in EventPayloadParcelable() local
32 (flg & 0x2) == 0 ? null : (HotwordDetectedResult) in.readTypedObject( in EventPayloadParcelable()
34 this.mAudioStream = (flg & 0x4) == 0 ? null : (ParcelFileDescriptor) in.readTypedObject( in EventPayloadParcelable()
63 int flg = 0; in writeToParcel() local
64 if (mHotwordDetectedResult != null) flg |= 0x2; in writeToParcel()
65 if (mAudioStream != null) flg |= 0x4; in writeToParcel()
67 out.writeInt(flg); in writeToParcel()
/cts/tests/app/ShortFgsTest/ShortFgsTestHelper/src/android/app/cts/shortfgstesthelper/
DShortFgsMessage.java599 long flg = 0; in writeToParcel() local
600 if (ack) flg |= 0x2; in writeToParcel()
601 if (mDoCallStartForegroundService) flg |= 0x100; in writeToParcel()
602 if (mDoCallStartService) flg |= 0x200; in writeToParcel()
603 if (mDoCallStartForeground) flg |= 0x400; in writeToParcel()
604 if (mDoCallStopForeground) flg |= 0x800; in writeToParcel()
605 if (mDoCallBindService) flg |= 0x1000; in writeToParcel()
606 if (mDoCallUnbindService) flg |= 0x2000; in writeToParcel()
607 if (mDoCallStopSelf) flg |= 0x4000; in writeToParcel()
608 if (mDoKillProcess) flg |= 0x8000; in writeToParcel()
[all …]
/cts/tests/app/FgsStartTest/helper/src/android/app/fgsstarttesthelper/
DFgsNewLogicMessage.java106 byte flg = 0; in writeToParcel()
107 if (mFgsStarted) flg |= 0x1; in writeToParcel()
108 if (mUnexpectedErrorMessage != null) flg |= 0x2; in writeToParcel()
109 dest.writeByte(flg); in writeToParcel()
124 byte flg = in.readByte(); in FgsNewLogicMessage()
125 boolean fgsStarted = (flg & 0x1) != 0; in FgsNewLogicMessage()
126 String unexpectedErrorMessage = (flg & 0x2) == 0 ? null : in.readString(); in FgsNewLogicMessage()
/cts/tests/app/FgsTimeoutTest/FgsTimeoutTestHelper/src/android/app/cts/fgstimeouttesthelper/
DFgsTimeoutMessage.java507 long flg = 0; in writeToParcel() local
508 if (ack) flg |= 0x2; in writeToParcel()
509 if (mDoCallStartForegroundService) flg |= 0x100; in writeToParcel()
510 if (mDoCallStartService) flg |= 0x200; in writeToParcel()
511 if (mDoCallStartForeground) flg |= 0x400; in writeToParcel()
512 if (mDoCallStopForeground) flg |= 0x800; in writeToParcel()
513 if (mDoCallStopSelf) flg |= 0x4000; in writeToParcel()
514 if (mDoKillProcess) flg |= 0x8000; in writeToParcel()
515 if (mCallGetTestInfo) flg |= 0x40000; in writeToParcel()
516 if (mFailureString != null) flg |= 0x4; in writeToParcel()
[all …]
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
DT_monitor_enter_2.java21 private int flg = 0; field in T_monitor_enter_2
27 flg = v; in run()
30 if(flg != v) { in run()
DT_monitor_enter_2.smali19 .field private flg:I
28 iput v2, v3, Ldot/junit/opcodes/monitor_enter/d/T_monitor_enter_2;->flg:I
43 iput v9, v8, Ldot/junit/opcodes/monitor_enter/d/T_monitor_enter_2;->flg:I
55 iget v1, v8, Ldot/junit/opcodes/monitor_enter/d/T_monitor_enter_2;->flg:I