HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 1 - 25 of 4170) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/soong/ui/status/
ninja_test.go 15 package status package
35 stat := &Status{}
  /external/nanopb-c/tests/enum_to_string/
enum_to_string.c 7 int status = 0; local
14 if (status != 0)
17 return status;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-demangle-fuzzer/
llvm-demangle-fuzzer.cpp 18 int status = 0; local
20 nullptr, &status))
  /external/syzkaller/vendor/google.golang.org/grpc/status/
go16.go 21 package status package
28 // FromContextError converts a context error into a Status. It returns a
29 // Status with codes.OK if err is nil, or a Status with codes.Unknown if err is
31 func FromContextError(err error) *Status {
go17.go 21 package status package
30 // FromContextError converts a context error into a Status. It returns a
31 // Status with codes.OK if err is nil, or a Status with codes.Unknown if err is
33 func FromContextError(err error) *Status {
  /device/generic/goldfish/keymaster/strongbox/
service.cpp 36 auto status = keymaster->registerAsService("default"); local
37 if (status != android::OK) {
38 LOG(FATAL) << "Could not register default service for Keymaster 4.0 (" << status << ")";
42 status = strongbox->registerAsService("strongbox");
43 if (status != android::OK) {
44 LOG(FATAL) << "Could not register strongbox service for Keymaster 4.0 (" << status << ")";
  /device/generic/goldfish/power/
service.cpp 38 status_t status; local
52 status = service->registerAsService();
53 if (status != OK) {
54 ALOGE("Could not register service for Power HAL Iface (%d).", status);
  /device/google/bonito/dumpstate/
service.cpp 34 android::status_t status = dumpstate->registerAsService(); local
36 if (status != android::OK)
38 ALOGE("Could not register DumpstateDevice service (%d).", status);
  /device/google/crosshatch/dumpstate/
service.cpp 34 android::status_t status = dumpstate->registerAsService(); local
36 if (status != android::OK)
38 ALOGE("Could not register DumpstateDevice service (%d).", status);
  /device/google/marlin/power/
service.cpp 38 status_t status; local
52 status = service->registerAsService();
53 if (status != OK) {
54 ALOGE("Could not register service for Power HAL Iface (%d).", status);
  /device/google/marlin/usb/
service.cpp 39 status_t status = service->registerAsService(); local
41 if (status != OK) {
  /device/google/wahoo/dumpstate/
service.cpp 34 android::status_t status = dumpstate->registerAsService(); local
36 if (status != android::OK)
38 ALOGE("Could not register DumpstateDevice service (%d).", status);
  /device/linaro/hikey/bluetooth/
service.cc 35 android::status_t status = bluetooth->registerAsService(); local
36 if (status == android::OK)
  /device/linaro/hikey/power/
service.cpp 38 status_t status; local
52 status = service->registerAsService();
53 if (status != OK) {
54 ALOGE("Could not register service for Power HAL Iface (%d).", status);
  /external/ImageMagick/www/source/
wand.c 22 status; local
37 status=MagickReadImage(magick_wand,argv[1]);
38 if (status == MagickFalse)
49 status=MagickWriteImages(magick_wand,argv[2],MagickTrue);
50 if (status == MagickFalse)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_nolibc_test.cc 27 int status = system(NolibcTestPath.c_str()); local
28 EXPECT_EQ(true, WIFEXITED(status));
29 EXPECT_EQ(0, WEXITSTATUS(status));
  /external/compiler-rt/test/lsan/TestCases/
fork.cc 14 int status = 0; local
19 waitpid(pid, &status, 0);
20 assert(WIFEXITED(status));
21 return WEXITSTATUS(status);
  /external/elfutils/tests/
hash.c 38 int status; local
41 status = check ("_DYNAMIC", 165832675);
42 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
44 return status;
  /external/grpc-grpc/third_party/nanopb/tests/multiple_files/
test_multiple_files.c 13 int status = 0; local
29 return status;
  /external/icu/icu4c/source/samples/datecal/
cal.cpp 24 UErrorCode status = U_ZERO_ERROR; local
26 GregorianCalendar* gc = new GregorianCalendar(status);
27 if (U_FAILURE(status)) {
42 gc->get(UCAL_YEAR, status),
43 gc->get(UCAL_MONTH, status) + 1,
44 gc->get(UCAL_MONTH, status),
45 gc->get(UCAL_DATE, status));
46 if (U_FAILURE(status))
52 gc->add(UCAL_DATE, 1, status);
53 if (U_FAILURE(status)) {
    [all...]
ccal.c 24 UErrorCode status = U_ZERO_ERROR; local
26 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
27 if (U_FAILURE(status)) {
44 ucal_get(cal, UCAL_YEAR, &status),
45 ucal_get(cal, UCAL_MONTH, &status) + 1,
46 ucal_get(cal, UCAL_MONTH, &status),
47 ucal_get(cal, UCAL_DATE, &status));
48 if (U_FAILURE(status)) {
53 ucal_add(cal, UCAL_DATE, 1, &status);
54 if (U_FAILURE(status))
    [all...]
  /external/icu/icu4c/source/samples/msgfmt/answers/
main_0.cpp 20 UErrorCode status = U_ZERO_ERROR; local
main_1.cpp 19 UErrorCode status = U_ZERO_ERROR; local
  /external/icu/icu4c/source/test/testmap/
testmap.c 32 UErrorCode status = U_ZERO_ERROR; local
34 udata_setCommonData(NULL, &status);
35 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
36 if(status != U_ILLEGAL_ARGUMENT_ERROR)
42 status = U_ZERO_ERROR;
43 udata_setCommonData(&U_ICUDATA_ENTRY_POINT, &status);
44 printf("setCommonData(%p) -> %s\n", (void*)&U_ICUDATA_ENTRY_POINT, u_errorName(status));
45 if(U_FAILURE(status))
51 status = U_ZERO_ERROR;
52 c = ucnv_open("iso-8859-3", &status);
    [all...]
  /external/iproute2/lib/
exec.c 12 int status; local
23 if (waitpid(pid, &status, 0) < 0) {
28 if (WIFEXITED(status)) {
29 return WEXITSTATUS(status);

Completed in 1081 milliseconds

1 2 3 4 5 6 7 8 91011>>