/external/selinux/libsepol/cil/test/unit/ |
test_integration.c | 41 int status = 0, status1 = 0, status2 = 0; local 43 status = system("./secilc -M -c 24 test/integration.cil &> /dev/null"); 45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT)) 58 CuAssertIntEquals(tc, 1, WIFEXITED(status)); 59 CuAssertIntEquals(tc, 0, WEXITSTATUS(status)); 67 int status = 0; local 69 status = system("./secilc -M -c 24 test/policy.cil &> /dev/null"); 71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT) [all...] |
/external/valgrind/gdbserver_tests/ |
fork_chain.c | 24 int status; local 25 while((ret = waitpid(pid, &status, 0)) != pid) {
|
/external/valgrind/none/tests/solaris/ |
block_all_signals.c | 31 int status; local 33 while ((ret = waitpid(pid, &status, 0)) != pid) { 40 if (WIFSIGNALED(status)) { 41 assert(WTERMSIG(status) != 0); 43 if (WTERMSIG(status) == SIGSEGV) { 47 WTERMSIG(status)); 49 } else if (WIFEXITED(status)) { 50 if (WEXITSTATUS(status) == 0) { 54 fprintf(stderr, "Child process exited with unexpected status %d.\n", 55 WEXITSTATUS(status)); [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
dec_pred_intra_dc.cpp | 32 PV_STATUS status = PV_SUCCESS; local 41 status = PV_VlcDecIntraDCPredSize(stream, compnum, &DC_size); 43 if (status == PV_SUCCESS) 73 return status;
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
vc1parse_ipic.c | 30 vc1_Status status = VC1_STATUS_OK; local 45 if ((status = vc1_DecodeHuffmanPair(ctxt, VC1_BFRACTION_TBL, 49 return status; 58 if ((status = vc1_CalculatePQuant(pInfo)) != VC1_STATUS_OK) 59 return status; 74 if ((status = vc1_MVRangeDecode(ctxt, pInfo)) != VC1_STATUS_OK) 75 return status; 100 return status;
|
vc1parse_mv_com.c | 22 vc1_Status status = VC1_STATUS_OK;
local 43 return status;
53 vc1_Status status = VC1_STATUS_OK;
local 81 return status;
|
/system/bt/service/common/android/bluetooth/ |
advertise_data.cc | 25 status_t status = parcel->writeByteVector(data_); local 26 return status; 30 status_t status = parcel->readByteVector(&data_); local 31 return status;
|
/system/nfc/src/nfc/nfc/ |
nfc_vs.c | 49 tNFC_STATUS status = NFC_STATUS_FAILED; local 57 status = NFC_STATUS_OK; 66 status = NFC_STATUS_OK; 71 return status; 90 tNFC_STATUS status = NFC_STATUS_OK; local 122 return status;
|
/system/update_engine/ |
parcelable_update_engine_status.cc | 25 status_t status; local 27 status = parcel->writeInt64(last_checked_time_); 28 if (status != OK) { 29 return status; 32 status = parcel->writeDouble(progress_); 33 if (status != OK) { 34 return status; 37 status = parcel->writeString16(current_operation_); 38 if (status != OK) { 39 return status; 51 status_t status; local [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
RecapitalizeStatusTests.java | 31 final RecapitalizeStatus status = new RecapitalizeStatus(); local 32 status.start(30, 40, "abcdefghij", Locale.ENGLISH, SPACE); 33 status.trim(); 34 assertEquals("abcdefghij", status.getRecapitalizedString()); 35 assertEquals(30, status.getNewCursorStart()); 36 assertEquals(40, status.getNewCursorEnd()); 38 status.start(30, 44, " abcdefghij", Locale.ENGLISH, SPACE); 39 status.trim(); 40 assertEquals("abcdefghij", status.getRecapitalizedString()); 41 assertEquals(34, status.getNewCursorStart()) 58 final RecapitalizeStatus status = new RecapitalizeStatus(); local [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WpsResult.java | 28 public enum Status { 34 public Status status; field in class:WpsResult 39 status = Status.FAILURE; 43 public WpsResult(Status s) { 44 status = s; 50 sbuf.append(" status: ").append(status.toString()); 65 status = source.status [all...] |
/development/vndk/tools/header-checker/header-abi-diff/src/ |
header_abi_diff.cpp | 58 llvm::cl::desc("Do not return a non zero status on extensions"), 85 CompatibilityStatus status = judge.GenerateCompatibilityReport(); local 88 switch (status) { 99 if (!suppress_local_warnings && status) { 113 if (allow_extensions && status == CompatibilityStatus::EXTENSION) { 116 return status;
|
/device/generic/goldfish-opengl/system/egl/ |
eglSync.h | 30 // c. type/status: track status of fence so SyncAttrib works 35 status(EGL_UNSIGNALED_KHR) { } 39 EGLint status; member in struct:EGLSync_t
|
/external/ImageMagick/api_examples/ |
magick_command.c | 32 MagickBooleanType status; local
|
/external/ImageMagick/coders/ |
mpr.c | 216 status; 225 status=SetImageRegistry(ImageRegistryType,image->filename,image,exception); 226 return(status); 210 status; local
|
/external/android-clat/ |
dns64.c | 42 int status; local 49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result); 50 if (status != 0 || result == NULL) { 51 logmsg(ANDROID_LOG_ERROR, "plat_prefix/dns(%s) status = %d/%s", 52 ipv4_name, status, gai_strerror(status));
|
/external/compiler-rt/lib/tsan/benchmarks/ |
start_many_threads.cc | 40 int status = pthread_create(&t[i], 0, Thread, (void*)i); local 41 assert(status == 0);
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
wait3.cc | 17 int *status = x + argc * 3; local 20 res = wait3(status, WNOHANG, NULL);
|
wait4.cc | 24 int *status = x + argc * 3; local 27 res = wait4(pid, status, WNOHANG, NULL);
|
waitid.cc | 13 int *status = x + argc * 3; local
|
/external/curl/packages/vms/ |
report_openssl_version.c | 78 int status; local 93 status = LIB$SET_SYMBOL(&symbol_dsc, &value_dsc, &table_type); 94 if (!$VMS_STATUS_SUCCESS(status)) { 95 exit(status);
|
/external/google-breakpad/src/common/mac/ |
launch_reporter.cc | 68 int status; local 69 pid_t result = waitpid(pid, &status, WNOHANG);
|
/external/icu/icu4c/source/common/ |
pluralmap.cpp | 31 UErrorCode status = U_ZERO_ERROR; local 32 cCategory.appendInvariantChars(pluralForm, status); 33 return U_FAILURE(status) ? NONE : toCategory(cCategory.data());
|
/external/icu/icu4c/source/i18n/ |
fpositer.cpp | 37 UErrorCode status = U_ZERO_ERROR; local 38 data = new UVector32(status); 39 data->assign(*rhs.data, status); 40 if (status != U_ZERO_ERROR) { 61 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { 62 // Verify that adopt has valid data, and update status if it doesn't. 63 if (U_SUCCESS(status)) { 69 status = U_ILLEGAL_ARGUMENT_ERROR; 73 status = U_ILLEGAL_ARGUMENT_ERROR; 81 // We own the data, even if status is in error, so we need to delete it no [all...] |
/external/icu/icu4c/source/samples/translit/answers/ |
main_1.cpp | 26 UErrorCode status = U_ZERO_ERROR; local 31 cal = Calendar::createInstance(greece, status); 32 check(status, "Calendar::createInstance"); 53 defFmt->format(cal->getTime(status), str, status); 54 check(status, "DateFormat::format"); 61 fmt->format(cal->getTime(status), str, status); 62 check(status, "DateFormat::format");
|