HomeSort by relevance Sort by last modified time
    Searched full:callstatus (Results 1 - 25 of 27) sorted by null

1 2

  /external/autotest/client/cros/networking/chrome_testing/network_test_ext/
background.js 7 // chromeTesting.networking.callStatus, which is a dictionary of the form:
18 this.callStatus = {};
24 if (this.callStatus[function_name] == null)
25 this.callStatus[function_name] = {};
26 if (this.callStatus[function_name].status == chromeTesting.STATUS_PENDING)
28 this.callStatus[function_name].status = chromeTesting.STATUS_PENDING;
35 this.callStatus[function_name].status = chromeTesting.STATUS_FAILURE;
36 this.callStatus[function_name].result = null;
37 this.callStatus[function_name].error = error.message;
39 this.callStatus[function_name].status = chromeTesting.STATUS_SUCCESS
    [all...]
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/cards/
CallCard.java 53 public @interface CallStatus {
59 @CallStatus
71 mCallStatus = CallStatus.INCOMING_OR_DIALING;
116 if (mCallStatus == CallStatus.INCOMING_OR_DIALING) {
117 mCallStatus = CallStatus.ACTIVE;
173 if (mCallStatus == CallStatus.ACTIVE) {
174 mCallStatus = CallStatus.DISCONNECTED;
  /packages/services/Telephony/src/com/android/phone/otasp/
OtaspActivationService.java 150 int callStatus = PhoneUtils.placeCall(this,
155 if (callStatus == PhoneUtils.CALL_STATUS_DIALED) {
156 if (DBG) logd(" ==> success return from placeCall(): callStatus = " + callStatus);
158 loge(" ==> failure return from placeCall(): callStatus = " + callStatus);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldo.c 231 ci->callstatus |= CIST_HOOKED;
239 ci->callstatus &= ~CIST_HOOKED;
249 ci->callstatus |= CIST_TAIL;
314 ci->callstatus = 0;
347 ci->callstatus = CIST_LUA;
413 if (ci->callstatus & CIST_YPCALL) { /* was inside a pcall? */
414 ci->callstatus &= ~CIST_YPCALL; /* finish 'lua_pcall' */
420 if (!(ci->callstatus & CIST_STAT)) /* no call status? */
423 ci->callstatus = (ci->callstatus & ~(CIST_YPCALL | CIST_STAT)) | CIST_YIELDED
    [all...]
lstate.h 74 lu_byte callstatus; member in struct:CallInfo
106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
lvm.c 66 if (ci->callstatus & CIST_HOOKYIELD) { /* called hook last time? */
67 ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */
86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */
719 ci->callstatus |= CIST_REENTRY;
746 oci->callstatus |= CIST_TAIL; /* function was tail called */
757 if (!(ci->callstatus & CIST_REENTRY)) /* 'ci' still the called one */
lapi.c 881 if (L->ci->callstatus & CIST_YIELDED) {
961 ci->callstatus |= CIST_YPCALL;
963 ci->callstatus &= ~CIST_YPCALL;
lstate.c 145 ci->callstatus = 0;
ldebug.c 241 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0;
246 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous))
  /external/skia/third_party/lua/src/
ldo.c 231 ci->callstatus |= CIST_HOOKED;
239 ci->callstatus &= ~CIST_HOOKED;
249 ci->callstatus |= CIST_TAIL;
313 ci->callstatus = 0;
340 ci->callstatus = CIST_LUA;
406 if (ci->callstatus & CIST_YPCALL) { /* was inside a pcall? */
407 ci->callstatus &= ~CIST_YPCALL; /* finish 'lua_pcall' */
413 if (!(ci->callstatus & CIST_STAT)) /* no call status? */
416 ci->callstatus = (ci->callstatus & ~(CIST_YPCALL | CIST_STAT)) | CIST_YIELDED
    [all...]
lstate.h 74 lu_byte callstatus; member in struct:CallInfo
106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
lvm.c 66 if (ci->callstatus & CIST_HOOKYIELD) { /* called hook last time? */
67 ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */
86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */
719 ci->callstatus |= CIST_REENTRY;
746 oci->callstatus |= CIST_TAIL; /* function was tail called */
757 if (!(ci->callstatus & CIST_REENTRY)) /* 'ci' still the called one */
lstate.c 145 ci->callstatus = 0;
lapi.c 881 if (L->ci->callstatus & CIST_YIELDED) {
961 ci->callstatus |= CIST_YPCALL;
963 ci->callstatus &= ~CIST_YPCALL;
ldebug.c 241 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0;
246 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous))
  /external/syslinux/com32/lua/src/
ldo.c 231 ci->callstatus |= CIST_HOOKED;
239 ci->callstatus &= ~CIST_HOOKED;
249 ci->callstatus |= CIST_TAIL;
314 ci->callstatus = 0;
347 ci->callstatus = CIST_LUA;
413 if (ci->callstatus & CIST_YPCALL) { /* was inside a pcall? */
414 ci->callstatus &= ~CIST_YPCALL; /* finish 'lua_pcall' */
420 if (!(ci->callstatus & CIST_STAT)) /* no call status? */
423 ci->callstatus = (ci->callstatus & ~(CIST_YPCALL | CIST_STAT)) | CIST_YIELDED
    [all...]
lstate.h 74 lu_byte callstatus; member in struct:CallInfo
106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
lvm.c 89 if (ci->callstatus & CIST_HOOKYIELD) { /* called hook last time? */
90 ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */
109 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */
742 ci->callstatus |= CIST_REENTRY;
769 oci->callstatus |= CIST_TAIL; /* function was tail called */
780 if (!(ci->callstatus & CIST_REENTRY)) /* 'ci' still the called one */
lapi.c 881 if (L->ci->callstatus & CIST_YIELDED) {
961 ci->callstatus |= CIST_YPCALL;
963 ci->callstatus &= ~CIST_YPCALL;
lstate.c 150 ci->callstatus = 0;
  /external/autotest/client/cros/networking/chrome_testing/
chrome_networking_test_context.py 128 "chromeTesting.networking.callStatus.<|function|>"
177 of "chromeTesting.networking.callStatus.<|function|>.status" equals
195 'chromeTesting.networking.callStatus.' + function,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcasync.h 286 unsigned __LONG32 CallStatus;
307 unsigned __LONG32 CallStatus;
  /packages/services/Telephony/src/com/android/phone/
EmergencyCallHelper.java 369 int callStatus = PhoneUtils.placeCall(mApp,
374 if (DBG) log("- PhoneUtils.placeCall() returned status = " + callStatus);
379 switch (callStatus) {
388 Log.w(TAG, "placeEmergencyCall(): placeCall() failed: callStatus = " + callStatus);
CallController.java 427 int callStatus = PhoneUtils.placeCall(mApp,
435 switch (callStatus) {
518 Log.wtf(TAG, "placeCall: unknown callStatus " + callStatus
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
ClusterView.java 45 import com.android.car.cluster.sample.cards.CallCard.CallStatus;
167 if (card.getCallStatus() == CallStatus.INCOMING_OR_DIALING) {
181 && callCard.getCallStatus() == CallStatus.ACTIVE) {

Completed in 623 milliseconds

1 2