/external/libnfc-nxp/src/ |
phFriNfc_IntNdefMap.c | 75 NFCSTATUS status = NFCSTATUS_PENDING; 88 status = phFriNfc_Desf_ChkAndParseTLV(NdefMap,PH_FRINFC_NDEFMAP_DESF_TLV_INDEX); 89 return (status); 109 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,\ 115 return ( status); 175 NFCSTATUS status = NFCSTATUS_SUCCESS; local 181 /*Return Status Error ? Invalid Format?*/ 182 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,NFCSTATUS_INVALID_FORMAT); 196 status = PHNFCSTVAL(CID_NFC_NONE,NFCSTATUS_SUCCESS); 205 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,NFCSTATUS_INVALID_FORMAT) [all...] |
phFriNfc_LlcpMac.c | 38 NFCSTATUS status = NFCSTATUS_SUCCESS; local 60 return status; 68 NFCSTATUS status = NFCSTATUS_SUCCESS; local 71 status = PHNFCSTVAL(CID_FRI_NFC_LLCP_MAC, NFCSTATUS_INVALID_PARAMETER); 98 status = phFriNfc_LlcpMac_Nfcip_Register (LlcpMac); 99 if(status == NFCSTATUS_SUCCESS) 101 status = LlcpMac->LlcpMacInterface.chk(LlcpMac,ChkLlcpMac_Cb,pContext); 105 status = PHNFCSTVAL(CID_FRI_NFC_LLCP_MAC, NFCSTATUS_FAILED); 110 status = PHNFCSTVAL(CID_FRI_NFC_LLCP_MAC, NFCSTATUS_INVALID_DEVICE); 115 return status; 120 NFCSTATUS status = NFCSTATUS_SUCCESS; local 135 NFCSTATUS status = NFCSTATUS_SUCCESS; local 152 NFCSTATUS status = NFCSTATUS_SUCCESS; local 170 NFCSTATUS status = NFCSTATUS_SUCCESS; local [all...] |
phFriNfc_MapTools.c | 136 NFCSTATUS status = NFCSTATUS_SUCCESS; local 142 /*Return Status Error ? Invalid Format?*/ 143 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,NFCSTATUS_INVALID_FORMAT); 153 status = (( (( PH_NFCFRI_MFSTDMAP_NFCDEV_MAJOR_VER_NUM == 180 status = PHNFCSTVAL(CID_NFC_NONE,NFCSTATUS_SUCCESS); 189 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,NFCSTATUS_INVALID_FORMAT); 208 status = PHNFCSTVAL(CID_NFC_NONE,NFCSTATUS_SUCCESS); 217 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,NFCSTATUS_INVALID_FORMAT); 227 return (status);
|
/external/libpcap/tests/ |
reactivatetest.c | 42 int status = 0; local 53 status = pcap_activate(pd); 54 if (status != PCAP_ERROR_ACTIVATED) { 55 if (status == 0) 57 else if (status == PCAP_ERROR) 62 pcap_statustostr(status));
|
/external/lzma/C/ |
LzmaLib.c | 44 ELzmaStatus status;
local 45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
|
/external/nanopb-c/examples/simple/ |
simple.c | 11 bool status; local 28 status = pb_encode(&stream, SimpleMessage_fields, &message); 32 if (!status) 53 status = pb_decode(&stream, SimpleMessage_fields, &message); 56 if (!status)
|
/external/qemu/distrib/sdl-1.2.15/src/thread/ |
SDL_thread_c.h | 56 int status; member in struct:SDL_Thread
|
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/ |
SDL_xbios_tveille.c | 36 static int status; variable 53 status = cookie_veil->enabled; 61 cookie_veil->enabled = status;
|
/external/regex-re2/re2/testing/ |
regexp_test.cc | 44 RegexpStatus status; local 46 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status); 47 EXPECT_TRUE(status.ok()); 63 RegexpStatus status; local 65 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status); 66 EXPECT_TRUE(status.ok());
|
/external/skia/dm/ |
DMReporter.cpp | 7 DEFINE_bool2(quiet, q, false, "If true, don't print status updates."); 8 DEFINE_bool2(verbose, v, false, "If true, print status updates one-per-line."); 21 SkString status; local 22 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending); 24 status.appendf(", %d failed", failed); 27 status.appendf("\t%5dms %s", timeMs, name.c_str()); 29 SkDebugf("%s", status.c_str());
|
/external/srtp/crypto/rng/ |
ctr_prng.c | 55 err_status_t status; local 64 status = random_source(tmp_key, 32); 65 if (status) 66 return status; 69 status = aes_icm_context_init(&ctr_prng.state, tmp_key); 70 if (status) 71 return status; 78 err_status_t status; local 86 status = ctr_prng_init(ctr_prng.rand); 87 if (status) [all...] |
/external/srtp/crypto/test/ |
kernel_driver.c | 61 err_status_t status; local 67 status = crypto_kernel_init(); 68 if (status) { 84 status = crypto_kernel_set_debug_module(optarg, 1); 85 if (status) { 96 printf("checking crypto_kernel status...\n"); 97 status = crypto_kernel_status(); 98 if (status) { 105 status = crypto_kernel_shutdown(); 106 if (status) { [all...] |
/external/strace/test/ |
childthread.c | 27 int status; local 50 got_pid = waitpid(-1, &status, 0); 52 assert(WIFEXITED(status)); 53 assert(WEXITSTATUS(status) == 42);
|
/external/strace/tests/ |
net-accept-connect.c | 35 int status; local 36 assert(waitpid(pid, &status, 0) == pid); 37 assert(status == 0);
|
/external/valgrind/main/drd/tests/ |
threaded-fork.c | 23 int status; local 43 while (waitpid(childpid, &status, 0) != childpid) {
|
/external/valgrind/main/gdbserver_tests/ |
clean_after_fork.c | 25 int status; local 26 while((ret = waitpid(pid, &status, 0)) != pid) { 32 mem = status;
|
/external/valgrind/main/none/tests/ |
mmap_fcntl_bug.c | 21 int fd, status; local 63 if (wait(&status) == -1) 66 if (!WIFEXITED(status)) 67 errx(1, "Child died with signal %i", WTERMSIG(status)); 69 switch (WEXITSTATUS(status)) { 76 errx(1, "Child weird exit status %i", WEXITSTATUS(status));
|
threaded-fork.c | 21 int status; local 41 while(waitpid(childpid, &status, 0) != childpid) {
|
/frameworks/base/core/tests/coretests/apks/install_jni_lib/ |
com_android_frameworks_coretests_JNITest.cpp | 42 int status; local 49 if ((status = android::register_com_android_framework_coretests_JNITests(e)) < 0) {
|
/frameworks/compile/mclinker/lib/Support/ |
Demangle.cpp | 28 int status; local 30 &output_leng, &status); 31 if (status != 0) { // Failed
|
/frameworks/rs/ |
rsMutex.cpp | 31 int status = pthread_mutex_init(&mMutex, NULL); local 32 if (status) { 40 int status; local 41 status = pthread_mutex_lock(&mMutex); 42 if (status) { 43 ALOGE("Mutex: error %i locking.", status); 50 int status; local 51 status = pthread_mutex_unlock(&mMutex); 52 if (status) { 53 ALOGE("Mutex error %i unlocking.", status); [all...] |
/hardware/qcom/display/msm8084/libgralloc/ |
gralloc.cpp | 101 int status = -EINVAL; local 109 status = 0; 111 status = fb_device_open(module, name, device); 113 return status;
|
/hardware/qcom/display/msm8226/libgralloc/ |
gralloc.cpp | 101 int status = -EINVAL; local 109 return status; 112 status = 0; 114 status = fb_device_open(module, name, device); 116 return status;
|
/hardware/qcom/display/msm8960/libgralloc/ |
gralloc.cpp | 100 int status = -EINVAL; local 108 status = 0; 110 status = fb_device_open(module, name, device); 112 return status;
|
/hardware/qcom/display/msm8974/libgralloc/ |
gralloc.cpp | 100 int status = -EINVAL; local 108 status = 0; 110 status = fb_device_open(module, name, device); 112 return status;
|