HomeSort by relevance Sort by last modified time
    Searched refs:WAIT (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips32-imm.d 2 #name: MIPS MIPS32 WAIT and SDBBP instructions
5 # Check MIPS32 WAIT and SDBBP instruction assembly
10 [0-9a-f]+ <[^>]*> 4359e260 wait 0x56789
micromips@mips32-imm.d 2 #name: MIPS MIPS32 WAIT and SDBBP instructions
6 # Check MIPS32 WAIT and SDBBP instruction assembly (microMIPS).
11 [0-9a-f]+ <[^>]*> 03c3 937c wait 0x3c3
mipsr6@mips32-imm.d 2 #name: MIPS MIPS32 WAIT and SDBBP instructions
6 # Check MIPS32 WAIT and SDBBP instruction assembly
11 [0-9a-f]+ <[^>]*> 4359e260 wait 0x56789
micromips@mips32-imm.s 1 # Source file to test wide immediates with MIPS32 WAIT and SDBBP instructions
10 wait 0x3c3
mips32-imm.s 1 # Source file to test wide immediates with MIPS32 WAIT and SDBBP instructions
10 wait 0x56789
  /external/compiler-rt/test/asan/TestCases/Posix/
wait.cc 9 #include <sys/wait.h>
18 #if defined(WAIT)
19 res = wait(status);
25 // CHECK: {{in .*wait}}
26 // CHECK: {{in main .*wait.cc:}}
  /bionic/libc/bionic/
pthread_barrier.cpp 60 WAIT,
70 // Barrier state. It is WAIT if waiting for more threads to enter the barrier in this cycle,
98 atomic_init(&barrier->state, WAIT);
116 // Wait until all threads for the previous cycle have left the barrier. This is needed
154 while (atomic_load_explicit(&barrier->state, memory_order_acquire) == WAIT) {
155 __futex_wait_ex(&barrier->state, barrier->pshared, WAIT, false, nullptr);
162 atomic_store_explicit(&barrier->state, WAIT, memory_order_release);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
Status003Test.java 61 * the 'Object.wait(mlsecTime)' method.
65 * <BR>&nbsp;&nbsp; - returned thread status is WAIT status;
72 + " checks command for TIMED_WAITING Thread: which is waiting in Object.wait(Time) method...");
94 if (threadStatus != JDWPConstants.ThreadStatus.WAIT) {
98 + Integer.toHexString(JDWPConstants.ThreadStatus.WAIT)
99 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.WAIT) + ")");
Status004Test.java 60 * the 'Object.wait()' method.
64 * <BR>&nbsp;&nbsp; - returned thread status is WAIT status;
71 + " checks command for WAITING Thread: which is waiting UNDEFINITELY in Object.wait() method...");
93 if (threadStatus != JDWPConstants.ThreadStatus.WAIT) {
97 + Integer.toHexString(JDWPConstants.ThreadStatus.WAIT)
98 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.WAIT) + ")");
  /external/webrtc/webrtc/base/
gunit.h 22 // Wait until "ex" is true, or "timeout" expires.
23 #define WAIT(ex, timeout) \
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 61 assertEquals(String.format("%c1234", PhoneNumberUtils.WAIT),
63 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.WAIT)));
64 assertEquals(String.format("%c1234%c%cN", PhoneNumberUtils.WAIT, PhoneNumberUtils.PAUSE,
65 PhoneNumberUtils.WAIT), PhoneNumberUtils
67 String.format("+1 (700).555-41NN%c1-2.34 %c%cN", PhoneNumberUtils.WAIT,
69 PhoneNumberUtils.WAIT)));
281 c = PhoneNumberUtils.WAIT;
  /external/webrtc/webrtc/libjingle/xmpp/
pingtask_unittest.cc 98 WAIT(false, ping_timeout_millis / 2);
  /frameworks/base/services/core/java/com/android/server/am/
AppNotRespondingDialog.java 45 static final int WAIT = 2;
118 final TextView wait = (TextView) findViewById(com.android.internal.R.id.aerr_wait); local
119 wait.setOnClickListener(this);
134 mHandler.obtainMessage(WAIT).sendToTarget();
154 case WAIT:
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUServiceThreadTest.java 107 private static boolean WAIT = true;
118 WAIT = false;
122 WAIT = true;
146 while (WAIT) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceThreadTest.java 103 private static boolean WAIT = true;
114 WAIT = false;
118 WAIT = true;
142 while (WAIT) {
  /external/toybox/toys/pending/
init.c 36 #define WAIT 0x02
128 char *act_name = "sysinit\0wait\0once\0respawn\0askfirst\0ctrlaltdel\0"
293 pid_t y = wait(NULL);
306 if (x->action & (SHUTDOWN|ONCE|SYSINIT|CTRLALTDEL|WAIT)) {
309 if (x->action & (SHUTDOWN|SYSINIT|CTRLALTDEL|WAIT)) waitforpid(pid);
478 run_action_from_list(WAIT);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 48 public static final byte WAIT = 4;
67 case WAIT:
68 return "WAIT";
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaConnectionTest.java 62 /* case 1: If PAUSE/WAIT sequence at the end, ignore them */
67 /* case 2: If consecutive PAUSE/WAIT sequence in the middle of the string,
68 * and if there is any WAIT in PAUSE/WAIT sequence, treat them like WAIT.*/
166 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.WAIT),mCT,null,
173 logd("Process the post dial sequence with wait ");
174 assertEquals(Connection.PostDialState.WAIT, connection.getPostDialState());
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 53 static enum State {WAIT, DONE, CANCEL}
69 State mState = State.WAIT;
  /external/webrtc/webrtc/p2p/stunprober/
stunprober_unittest.cc 102 WAIT(stopped_, 1000);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
MoreContactUtils.java 39 private static final String WAIT_SYMBOL_AS_STRING = String.valueOf(PhoneNumberUtils.WAIT);
  /external/webrtc/talk/app/webrtc/
dtmfsender_unittest.cc 265 // Wait until the first tone got sent.
271 // Wait until it's completed.
286 // Wait until the first tone got sent.
291 WAIT(false, 200);
300 // Wait until the first tone got sent.
305 WAIT(false, 200);
315 // Wait until the first tone got sent.
319 // Wait until it's completed.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaConnection.java 240 * 2) handle corner cases for PAUSE/WAIT dialing:
242 * If PAUSE/WAIT sequence at the end, ignore them.
244 * If consecutive PAUSE/WAIT sequence in the middle of the string,
245 * and if there is any WAIT in PAUSE/WAIT sequence, treat them like WAIT.
273 // converted to WAIT character
365 if (mPostDialState != PostDialState.WAIT) {
367 + "getPostDialState() to be WAIT but was " + mPostDialState);
765 setPostDialState(PostDialState.WAIT);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java 157 private static final char WAIT = ';';
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneConnection.java 335 if (mPostDialState != PostDialState.WAIT) {
337 + "getPostDialState() to be WAIT but was " + mPostDialState);
466 } else if (c == PhoneNumberUtils.WAIT) {
467 setPostDialState(PostDialState.WAIT);
    [all...]

Completed in 852 milliseconds

1 2 3 4