HomeSort by relevance Sort by last modified time
    Searched defs:hold (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /packages/apps/Dialer/java/com/android/incallui/
CallButtonPresenter.java 241 LogUtil.i("CallButtonPresenter", "putting the call on hold: " + call);
242 call.hold();
244 LogUtil.i("CallButtonPresenter", "removing the call from hold: " + call);
442 // Common functionality (audio, hold, etc).
443 // Show either HOLD or SWAP, but not both. If neither HOLD or SWAP is available:
444 // (1) If the device normally can hold, show HOLD in a disabled state.
445 // (2) If the device doesn't have the concept of hold/swap, remove the button.
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 155 public synchronized void hold(Thread t) { method in class:Profile.Watchdog
212 // Hold the future samples coming from current thread until commit() or
215 public static void hold() { method in class:Profile
216 sWatchdog.hold(Thread.currentThread());
  /toolchain/binutils/binutils-2.27/gas/
cgen.c 336 char * volatile hold; local
340 static char *hold;
361 hold = input_line_pointer;
370 input_line_pointer = (char *) hold;
381 input_line_pointer = hold;
stabs.c 513 char *hold; local
528 hold = input_line_pointer;
569 input_line_pointer = hold;
579 char *hold; local
593 hold = input_line_pointer;
645 input_line_pointer = hold;
657 char *hold = input_line_pointer; local
676 input_line_pointer = hold;
688 char *hold = input_line_pointer; local
702 input_line_pointer = hold;
    [all...]
as.c 1105 char *hold;
1110 hold = input_line_pointer;
1114 input_line_pointer = hold;
1104 char *hold; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
miniunz.c 168 char hold; local
172 hold = *p;
180 if (hold == 0)
182 *p++ = hold;
  /toolchain/binutils/binutils-2.27/zlib/
inflate.h 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockConnection.java 98 mRemoteConnection.hold();
RemoteConferenceTest.java 122 confCall.hold();
ConferenceTest.java 119 conf.hold();
  /external/iputils/
ping.c 122 int ch, hold, packlen; local
482 hold = 1;
483 if (setsockopt(icmp_sock, SOL_IP, IP_RECVERR, (char *)&hold, sizeof(hold)))
486 if (setsockopt(icmp_sock, SOL_IP, IP_RECVTTL, (char *)&hold, sizeof(hold)))
488 if (setsockopt(icmp_sock, SOL_IP, IP_RETOPTS, (char *)&hold, sizeof(hold)))
546 hold = datalen + 8;
547 hold += ((hold+511)/512)*(optlen + 20 + 16 + 64 + 160)
    [all...]
ping_common.c 467 * of the data portion are used to hold a UNIX "timeval" struct in VAX
591 int rcvbuf, hold; local
592 socklen_t tmplen = sizeof(hold);
598 rcvbuf = hold = alloc * preload;
599 if (hold < 65536)
600 hold = 65536;
601 setsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, sizeof(hold));
602 if (getsockopt(icmp_sock, SOL_SOCKET, SO_RCVBUF, (char *)&hold, &tmplen) == 0) {
603 if (hold < rcvbuf
631 int hold; local
    [all...]
  /external/tcpdump/
print-pim.c 99 { PIMV2_HELLO_OPTION_HOLDTIME, "Hold Time" },
152 int hold; local
155 hold = EXTRACT_16BITS(&bp[6]);
156 if (hold != 180) {
157 ND_PRINT((ndo, "Hold "));
158 unsigned_relts_print(ndo, hold);
185 ND_PRINT((ndo, " Hold time: "));
280 ND_PRINT((ndo, " (Hold-time "));
302 ND_PRINT((ndo, " RP %s hold ", ipaddr_string(ndo, &bp[16])));
350 int hold; local
    [all...]
  /external/zlib/src/contrib/untgz/
untgz.c 350 char hold; local
354 hold = *p;
362 if (hold == 0)
364 *p++ = hold;
  /frameworks/base/telephony/java/android/telephony/ims/compat/stub/
ImsCallSessionImplBase.java 53 * can only hold one listener at a time. Subsequent calls to this method
215 * Puts a call on hold. When it succeeds, {@link ImsCallSession.Listener#callSessionHeld} is
218 * @param profile stream media profile {@link ImsStreamMediaProfile} to hold the call
223 public void hold(ImsStreamMediaProfile profile) { method in class:ImsCallSessionImplBase
227 * Continues a call that's on hold. When it succeeds,
  /toolchain/binutils/binutils-2.27/gas/config/
tc-mn10200.c 27 /* Structure to hold information about predefined registers. */
913 char *hold;
948 hold = input_line_pointer;
955 input_line_pointer = hold;
956 str = hold;
967 input_line_pointer = hold;
968 str = hold;
976 input_line_pointer = hold;
977 str = hold;
989 input_line_pointer = hold;
910 char *hold; local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
mep-asm.c 787 char *str = 0, *hold = 0;
794 hold = str;
810 *strp_in += (str - hold);
813 if (hold)
814 free (hold);
786 char *str = 0, *hold = 0; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/untgz/
untgz.c 350 char hold; local
354 hold = *p;
362 if (hold == 0)
364 *p++ = hold;
  /frameworks/base/telecomm/java/android/telecom/
RemoteConnection.java 951 public void hold() { method in class:RemoteConnection
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 57 // Minimum time needed between hold/unhold requests.
220 // Wait for at least TIMEOUT_HOLD_PROCESSING ms to occur before sending hold/unhold requests
230 if (mBackgroundCall.getState().isAlive()) mBackgroundCall.hold();
597 void hold() throws CallStateException { method in class:SipPhone.SipCall
598 if (SC_DBG) log("hold:");
600 for (Connection c : mConnections) ((SipConnection) c).hold();
885 void hold() throws CallStateException { method in class:SipPhone.SipConnection
890 throw new CallStateException("hold(): " + e);
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
ConnectionServiceWrapper.java 1266 void hold(Call call) { method in class:ConnectionServiceWrapper
    [all...]
  /external/freetype/src/bdf/
bdflib.c 528 int refill, hold, to_skip; local
626 hold = buf[end];
643 buf[end] = (char)hold;
646 if ( hold == '\n' )
648 else if ( hold == '\r' )
1044 int hold; local
1054 hold = -1;
1057 hold = *ep;
1064 if ( hold != -1 )
1065 *ep = (char)hold;
    [all...]
  /external/python/cpython3/Python/
pythonrun.c 434 int hold; local
467 hold = _PyLong_AsInt(v);
469 if (hold < 0 && PyErr_Occurred())
471 *lineno = hold;
480 hold = _PyLong_AsInt(v);
482 if (hold < 0 && PyErr_Occurred())
484 *offset = hold;
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallManager.java 379 telecomCall.hold();
  /system/core/logcat/tests/
logcat_test.cpp 1344 char* hold = *list; local
    [all...]

Completed in 2720 milliseconds

1 23 4 5 6