HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 26 - 50 of 6808) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/interfaces/drm/1.0/default/
service.cpp 41 android::status_t status = local
44 status != android::OK,
45 "Error while registering drm service: %d", status);
46 status = registerPassthroughServiceImplementation<ICryptoFactory>();
48 status != android::OK,
49 "Error while registering crypto service: %d", status);
  /hardware/interfaces/radio/1.0/vts/functional/
VtsHalRadioV1_0TargetTest.cpp 28 int status = RUN_ALL_TESTS(); local
29 LOG(INFO) << "Test result = " << status;
31 return status;
VtsHalSapV1_0TargetTest.cpp 29 int status = RUN_ALL_TESTS(); local
30 LOG(INFO) << "Test result = " << status;
32 return status;
  /hardware/interfaces/usb/1.0/default/
service.cpp 38 status_t status = service->registerAsService(); local
40 if (status == OK) {
  /hardware/interfaces/wifi/supplicant/1.0/vts/functional/
VtsHalWifiSupplicantV1_0TargetTest.cpp 38 int status = RUN_ALL_TESTS(); local
39 LOG(INFO) << "Test result = " << status;
40 return status;
  /packages/services/Car/evs/manager/
service.cpp 58 status_t status = service->registerAsService(kManagedEnumeratorName); local
59 if (status == OK) {
66 ALOGE("Could not register service %s (%d).", kManagedEnumeratorName, status);
  /system/bt/test/rootcanal/
service.cc 35 android::status_t status = bluetooth->registerAsService(); local
36 if (status == android::OK)
  /system/libhidl/transport/allocator/1.0/default/
service.cpp 21 status_t status = allocator->registerAsService("ashmem"); local
23 if (android::OK != status) {
24 LOG(FATAL) << "Unable to register allocator service: " << status;
  /system/nfc/src/nfc/nfc/
nfc_test.c 53 tNFC_STATUS status = NFC_STATUS_FAILED; local
58 status = nfc_ncif_send_data(p_cb, p_data);
61 if (status != NFC_STATUS_OK) GKI_freebuf(p_data);
63 return status;
  /toolchain/binutils/binutils-2.25/gold/testsuite/
weak_undef_test_2.cc 48 int status = 0; local
54 status = 1;
61 status = 1;
68 status = 1;
75 status = 1;
78 return status;
  /toolchain/binutils/binutils-2.25/libiberty/
asprintf.c 49 int status; local
52 status = vasprintf (buf, fmt, ap);
54 return status;
  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/compliance/
test_fuzzingclient.py 19 status = websocket.STATUS_NORMAL variable
30 status = websocket.STATUS_PROTOCOL_ERROR variable
32 status = websocket.STATUS_PROTOCOL_ERROR variable
34 status = websocket.STATUS_INVALID_PAYLOAD variable
36 # status = websocket.STATUS_PROTOCOL_ERROR
39 ws.close(status)
  /external/clang/test/Sema/
transparent-union-pointer.c 12 int status = 0; local
13 wait(&status);
  /external/compiler-rt/test/asan/TestCases/Posix/
wait.cc 16 int *status = x + argc * 3; local
19 res = wait(status);
21 res = waitpid(pid, status, WNOHANG);
  /external/icu/android_utils/
IcuUtils.cpp 36 UErrorCode status = U_ZERO_ERROR; local
40 u_init(&status);
41 LOG_ALWAYS_FATAL_IF(!U_SUCCESS(status), "Failed to initialize ICU %s", u_errorName(status));
  /external/icu/icu4c/source/samples/msgfmt/answers/
main_2.cpp 27 UErrorCode status = U_ZERO_ERROR; local
32 MessageFormat msg(PATTERN, status);
33 check(status, "MessageFormat::ct");
41 msg.format(msgArgs, 2, str, pos, status);
42 check(status, "MessageFormat::format");
main_3.cpp 27 UErrorCode status = U_ZERO_ERROR; local
32 MessageFormat msg(PATTERN, status);
33 check(status, "MessageFormat::ct");
41 msg.format(msgArgs, 2, str, pos, status);
42 check(status, "MessageFormat::format");
  /external/icu/icu4c/source/samples/msgfmt/
main.cpp 27 UErrorCode status = U_ZERO_ERROR; local
32 MessageFormat msg(PATTERN, status);
33 check(status, "MessageFormat::ct");
41 msg.format(msgArgs, 2, str, pos, status);
42 check(status, "MessageFormat::format");
  /external/jemalloc/test/unit/
fork.c 31 int status; local
35 if (waitpid(pid, &status, 0) == -1)
37 if (WIFSIGNALED(status)) {
39 "signal %d", WTERMSIG(status));
42 if (WIFEXITED(status)) {
43 if (WEXITSTATUS(status) != 0) {
46 WEXITSTATUS(status));
  /external/libcxx/test/support/
demangle.h 36 int status = 0; local
37 char* out = __cxxabiv1::__cxa_demangle(mangled_name, nullptr, nullptr, &status);
  /external/ltp/testcases/kernel/containers/mqns/
mqns_helper.h 35 int pid, status; local
54 SAFE_WAIT(NULL, &status);
  /external/ltp/testcases/kernel/syscalls/mount/
setuid_test.c 41 int status; local
43 status = setreuid(ruid, 0);
44 if (status < 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
4-3.c 33 #define ERR_MSG(f, rc) printf("Failed: function: %s status: %s(%u)\n", \
38 int status; local
42 status = PTS_UNRESOLVED;
47 return status;
  /external/pdfium/core/fxcodec/jbig2/
JBig2_GsidProc.cpp 46 FXCODEC_STATUS status = local
48 while (status == FXCODEC_STATUS_DECODE_TOBECONTINUE)
49 status = pGRD->Continue_decode(pPause);
JBig2_PddProc.cpp 43 FXCODEC_STATUS status = local
45 while (status == FXCODEC_STATUS_DECODE_TOBECONTINUE)
46 status = pGRD->Continue_decode(pPause);

Completed in 2026 milliseconds

12 3 4 5 6 7 8 91011>>