/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | coleitr.h | 103 * to reset the status, shifting pointers to either the end or the start of 178 * @param status the error code status. 183 int32_t next(UErrorCode& status); 187 * @param status the error code status. 192 int32_t previous(UErrorCode& status); 240 * @param status the error code status. 243 void setText(const UnicodeString& str, UErrorCode& status); [all...] |
/third_party/skia/third_party/externals/icu/source/samples/numfmt/ |
H A D | main.cpp | 52 UErrorCode status = U_ZERO_ERROR; in cppapi() local 55 NumberFormat *fmt = NumberFormat::createInstance(us, status); in cppapi() 56 check(status, "NumberFormat::createInstance"); in cppapi() 62 fmt->parse(str, result, status); in cppapi() 63 check(status, "NumberFormat::parse"); in cppapi() 74 fmt->format(result, str, status); in cppapi() 75 check(status, "NumberFormat::format"); in cppapi()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | rbbi_cache.h | 36 DictionaryCache(RuleBasedBreakIterator *bi, UErrorCode &status); 48 * @param firstRuleStatus The rule status index that applies to the break at startPos 49 * @param otherRuleStatus The rule status index that applies to boundaries other than startPos 65 int32_t fFirstRuleStatusIndex; // Rule status info for first boundary. 66 int32_t fOtherRuleStatusIndex; // Rule status info for 2nd through last boundaries. 73 * Cache of break boundary positions and rule status values. 88 BreakCache(RuleBasedBreakIterator *bi, UErrorCode &status); 102 void previous(UErrorCode &status); 106 void following(int32_t startPosition, UErrorCode &status); 108 void preceding(int32_t startPosition, UErrorCode &status); [all...] |
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | c_parser_lite.py | 164 status = "" 166 status = "PASS" 168 status = "FAIL" 170 status = "IGNORE" 171 status = status_dict.get(status) 172 details = ("", "", status, run_time) 190 test_name, status = message_list[1].strip(), message_list[2].strip() 193 status = status_dict.get(status) [all...] |
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_store/client/hap/src/main/js/test/ |
H A D | RdbStoreSyncCustomDir.test.js | 206 console.log('testRdbSyncCustomTest0100 device=' + result[i][0] + ' status=' + result[i][1]);
207 let status = result[i][1];
208 expect(status == 0).assertTrue();
251 console.log('testRdbSyncCustomTest0200 device=' + result[i][0] + ' status=' + result[i][1]);
252 let status = result[i][1];
253 expect(status == 0).assertTrue();
285 console.log('testRdbSyncCustomTest0200 device=' + result[i][0] + ' status=' + result[i][1]);
286 let status = result[i][1];
287 expect(status == 0).assertTrue();
329 console.log('testRdbSyncCustomTest0300 device=' + result[i][0] + ' status [all...] |
/third_party/icu/icu4c/source/test/perf/unisetperf/ |
H A D | unisetperf.cpp | 51 UnicodeSetPerformanceTest(int32_t argc, const char *argv[], UErrorCode &status) in UnicodeSetPerformanceTest() argument 52 : UPerfTest(argc, argv, options, UPRV_LENGTHOF(options), unisetperf_usage, status), in UnicodeSetPerformanceTest() 54 if (U_SUCCESS(status)) { in UnicodeSetPerformanceTest() 56 set.applyPattern(pattern, status); in UnicodeSetPerformanceTest() 63 UPerfTest::getBuffer(inputLength, status); in UnicodeSetPerformanceTest() 64 if(U_SUCCESS(status) && inputLength>0) { in UnicodeSetPerformanceTest() 70 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status); in UnicodeSetPerformanceTest() 71 if(status==U_BUFFER_OVERFLOW_ERROR) { in UnicodeSetPerformanceTest() 74 status=U_ZERO_ERROR; in UnicodeSetPerformanceTest() 75 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status); in UnicodeSetPerformanceTest() 428 UErrorCode status = U_ZERO_ERROR; main() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/dso/ |
H A D | dso_vms.c | 272 int status = 0; in vms_bind_sym() local 315 status = do_find_symbol(ptr, &symname_dsc, sym, LIB$M_FIS_MIXEDCASE); in vms_bind_sym() 317 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym() 318 status = do_find_symbol(ptr, &symname_dsc, sym, 0); in vms_bind_sym() 320 if (!$VMS_STATUS_SUCCESS(status)) { in vms_bind_sym() 332 status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); in vms_bind_sym() 334 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym() 335 lib$signal(status); /* This is really bad. Abort! */ in vms_bind_sym() 364 int status; in vms_merger() local [all...] |
/third_party/openssl/crypto/dso/ |
H A D | dso_vms.c | 272 int status = 0; in vms_bind_sym() local 315 status = do_find_symbol(ptr, &symname_dsc, sym, LIB$M_FIS_MIXEDCASE); in vms_bind_sym() 317 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym() 318 status = do_find_symbol(ptr, &symname_dsc, sym, 0); in vms_bind_sym() 320 if (!$VMS_STATUS_SUCCESS(status)) { in vms_bind_sym() 332 status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); in vms_bind_sym() 334 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym() 335 lib$signal(status); /* This is really bad. Abort! */ in vms_bind_sym() 364 int status; in vms_merger() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
H A D | status.h | 16 // File: status.h 19 // This header file defines the Abseil `status` library, consisting of: 23 // utilities for generating and propagating status codes. 24 // * A set of helper functions for creating status codes and checking their 58 #include "absl/status/internal/status_internal.h" 89 // to your status. See `absl::Status::SetPayload()` and 267 // The purpose of this enumerated value is to force people who handle status 276 // Returns the name for the status code, or "" if it is an unknown value. 288 // status. 349 // functions to constuct each status cod [all...] |
/test/xts/acts/account/OsAccountTest_js/entry/src/ohosTest/js/test/ |
H A D | ActsDSGetSet.test.js | 105 expect(data.status).assertEqual(0) 126 expect(data.status).assertEqual(0) 145 expect(data.status).assertEqual(0) 166 expect(data.status).assertEqual(0) 193 expect(data.status).assertEqual(1) 239 expect(data.status).assertEqual(1) 311 expect(data.status).assertEqual(1) 355 expect(data.status).assertEqual(1) 399 expect(data.status).assertEqual(1) 444 expect(data.status) [all...] |
/third_party/nghttp2/integration-tests/ |
H A D | nghttpx_http2_test.go | 33 if got, want := res.status, http.StatusOK; got != want { 34 t.Errorf("status = %v; want %v", got, want) 62 if got, want := res.status, http.StatusOK; got != want { 63 t.Errorf("status = %v; want %v", got, want) 94 if got, want := res.status, http.StatusOK; got != want { 95 t.Errorf("status = %v; want %v", got, want) 122 if got, want := res.status, http.StatusOK; got != want { 123 t.Errorf("status = %v; want %v", got, want) 150 if got, want := res.status, http.StatusOK; got != want { 151 t.Errorf("status [all...] |
/third_party/icu/tools/release/c/ |
H A D | uconfig-simpleTest.cpp | 9 UErrorCode status = U_ZERO_ERROR; in main() local 10 u_init(&status); in main() 11 puts(u_errorName(status)); in main() 13 return U_FAILURE(status)?1:0; in main()
|
/test/xts/acts/kernel_lite/ipc_posix/message_queue/ |
H A D | IpcMqTest.cpp | 207 int status;
in HWTEST_F() local 210 pid = waitpid(pid, &status, 0);
in HWTEST_F() 212 EXPECT_TRUE(WIFEXITED(status) != 0) << "ERROR: WIFEXITED(status) == 0";
in HWTEST_F() 213 EXPECT_TRUE(WEXITSTATUS(status) == 0) << "ERROR: WEXITSTATUS(status) != 0"
in HWTEST_F() 214 << ", WEXITSTATUS(status) = " << WEXITSTATUS(status);
in HWTEST_F() 268 int status;
in HWTEST_F() local 273 pid = waitpid(pid, &status, in HWTEST_F() 334 int status; HWTEST_F() local 576 int status; HWTEST_F() local 600 int status; HWTEST_F() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A D | spp_client.c | 604 char *status = NULL; in process_spp_post_dev_data_response() local 610 status = get_spp_attr_value(ctx->xml, node, "sppStatus"); in process_spp_post_dev_data_response() 611 if (status == NULL) { in process_spp_post_dev_data_response() 616 status); in process_spp_post_dev_data_response() 625 status, session_id); in process_spp_post_dev_data_response() 644 strcasecmp(status, in process_spp_post_dev_data_response() 666 strcasecmp(status, "Exchange complete, release TLS connection") == in process_spp_post_dev_data_response() 677 strcasecmp(status, "Update complete, request sppUpdateResponse") == in process_spp_post_dev_data_response() 692 strcasecmp(status, "Provisioning complete, request " in process_spp_post_dev_data_response() 703 if (strcasecmp(status, "N in process_spp_post_dev_data_response() 827 char *status, *session_id; process_spp_exchange_complete() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p_invitation.c | 117 u8 dialog_token, u8 status, in p2p_build_invitation_resp() 158 p2p_buf_add_status(buf, status); in p2p_build_invitation_resp() 187 u8 status = P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE; in p2p_process_invitation_req() local 217 status = P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE; in p2p_process_invitation_req() 225 status = P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE; in p2p_process_invitation_req() 233 status = P2P_SC_FAIL_INVALID_PARAMS; in p2p_process_invitation_req() 256 status = P2P_SC_FAIL_NO_COMMON_CHANNELS; in p2p_process_invitation_req() 268 status = p2p->cfg->invitation_process( in p2p_process_invitation_req() 275 if (status == HM_FILTER_INVITE_REQ) { in p2p_process_invitation_req() 288 status in p2p_process_invitation_req() 115 p2p_build_invitation_resp(struct p2p_data *p2p, struct p2p_device *peer, u8 dialog_token, u8 status, const u8 *group_bssid, u8 reg_class, u8 channel, struct p2p_channels *channels) p2p_build_invitation_resp() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A D | spp_client.c | 604 char *status = NULL; in process_spp_post_dev_data_response() local 610 status = get_spp_attr_value(ctx->xml, node, "sppStatus"); in process_spp_post_dev_data_response() 611 if (status == NULL) { in process_spp_post_dev_data_response() 616 status); in process_spp_post_dev_data_response() 625 status, session_id); in process_spp_post_dev_data_response() 644 strcasecmp(status, in process_spp_post_dev_data_response() 666 strcasecmp(status, "Exchange complete, release TLS connection") == in process_spp_post_dev_data_response() 677 strcasecmp(status, "Update complete, request sppUpdateResponse") == in process_spp_post_dev_data_response() 692 strcasecmp(status, "Provisioning complete, request " in process_spp_post_dev_data_response() 703 if (strcasecmp(status, "N in process_spp_post_dev_data_response() 827 char *status, *session_id; process_spp_exchange_complete() local [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/ |
H A D | mali_kbase_sync_file.c | 171 if (dma_fence_is_signaled(kcb->fence) && kcb->fence->status < 0) in kbase_fence_wait_callback() 280 /* translate into CONFIG_SYNC status: in kbase_sync_fence_info_get() 289 int status = fence->error; in kbase_sync_fence_info_get() local 291 int status = fence->status; in kbase_sync_fence_info_get() 293 if (status < 0) { in kbase_sync_fence_info_get() 294 info->status = status; /* signaled with error */ in kbase_sync_fence_info_get() 296 info->status = 1; /* signaled with success */ in kbase_sync_fence_info_get() 299 info->status in kbase_sync_fence_info_get() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_sync_file.c | 182 if (dma_fence_is_signaled(kcb->fence) && kcb->fence->status < 0) in kbase_fence_wait_callback() 291 /* translate into CONFIG_SYNC status: in kbase_sync_fence_info_get() 300 int status = fence->error; in kbase_sync_fence_info_get() local 302 int status = fence->status; in kbase_sync_fence_info_get() 304 if (status < 0) in kbase_sync_fence_info_get() 305 info->status = status; /* signaled with error */ in kbase_sync_fence_info_get() 307 info->status = 1; /* signaled with success */ in kbase_sync_fence_info_get() 309 info->status in kbase_sync_fence_info_get() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_sync_file.c | 182 if (dma_fence_is_signaled(kcb->fence) && kcb->fence->status < 0) in kbase_fence_wait_callback() 292 /* translate into CONFIG_SYNC status: in kbase_sync_fence_info_get() 301 int status = fence->error; in kbase_sync_fence_info_get() local 303 int status = fence->status; in kbase_sync_fence_info_get() 305 if (status < 0) { in kbase_sync_fence_info_get() 306 info->status = status; /* signaled with error */ in kbase_sync_fence_info_get() 308 info->status = 1; /* signaled with success */ in kbase_sync_fence_info_get() 311 info->status in kbase_sync_fence_info_get() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/ |
H A D | mali_kbase_sync_file.c | 173 if (dma_fence_is_signaled(kcb->fence) && kcb->fence->status < 0) in kbase_fence_wait_callback() 280 /* translate into CONFIG_SYNC status: in kbase_sync_fence_info_get() 289 int status = fence->error; in kbase_sync_fence_info_get() local 291 int status = fence->status; in kbase_sync_fence_info_get() 293 if (status < 0) in kbase_sync_fence_info_get() 294 info->status = status; /* signaled with error */ in kbase_sync_fence_info_get() 296 info->status = 1; /* signaled with success */ in kbase_sync_fence_info_get() 298 info->status in kbase_sync_fence_info_get() [all...] |
/third_party/alsa-utils/axfer/ |
H A D | xfer-libasound-irq-mmap.c | 13 snd_pcm_status_t *status; member 28 err = snd_pcm_status_malloc(&layout->status); in irq_mmap_pre_process() 193 // To querying current status of hardware, we need to care of in irq_mmap_r_process_frames() 195 // 1. status to actual hardware by driver. in irq_mmap_r_process_frames() 196 // 2. status data in kernel space. in irq_mmap_r_process_frames() 197 // 3. status data in user space. in irq_mmap_r_process_frames() 209 err = snd_pcm_status(state->handle, layout->status); in irq_mmap_r_process_frames() 212 s = snd_pcm_status_get_state(layout->status); in irq_mmap_r_process_frames() 214 // TODO: if reporting something, do here with the status data. in irq_mmap_r_process_frames() 248 err = snd_pcm_status(state->handle, layout->status); in irq_mmap_w_process_frames() [all...] |
/third_party/gptfdisk/ |
H A D | mbrpart.cc | 42 status = 0; in MBRPart() 74 status = orig.status; in operator =() 92 status = orig.status; in operator =() 135 status = UINT8_C(0); in Empty() 207 theStruct->status = status; in StoreInStruct() 324 if (status & 0x80) // it's bootable in ShowData()
|
/third_party/icu/icu4c/source/common/ |
H A D | utracimp.h | 55 * Bit 4: Flag for presence of U_ErrorCode status param. 182 * negative values an informational status. 206 #define UTRACE_EXIT_STATUS(status) UPRV_BLOCK_MACRO_BEGIN { \ 208 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, UTRACE_EXITV_STATUS, status); \ 212 #define UTRACE_EXIT_VALUE_STATUS(val, status) UPRV_BLOCK_MACRO_BEGIN { \ 214 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (UTRACE_EXITV_I32 | UTRACE_EXITV_STATUS), val, status); \ 218 #define UTRACE_EXIT_PTR_STATUS(ptr, status) UPRV_BLOCK_MACRO_BEGIN { \ 220 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (UTRACE_EXITV_PTR | UTRACE_EXITV_STATUS), ptr, status); \ 375 #define UTRACE_EXIT_STATUS(status) 376 #define UTRACE_EXIT_VALUE_STATUS(val, status) [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/api/ |
H A D | event.cpp | 41 clSetUserEventStatus(cl_event d_ev, cl_int status) try { in clSetUserEventStatus() argument 44 if (status > 0) in clSetUserEventStatus() 47 if (sev.status() <= 0) in clSetUserEventStatus() 50 if (status) in clSetUserEventStatus() 51 sev.abort(status); in clSetUserEventStatus() 69 if (ev.status() < 0) in clWaitForEvents() 106 buf.as_scalar<cl_int>() = ev.status(); in clGetEventInfo() 138 pfn_notify(desc(ev), ev.status(), user_data); in clSetEventCallback() 258 if (hev.status() != CL_COMPLETE) in clGetEventProfilingInfo()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | utracimp.h | 55 * Bit 4: Flag for presence of U_ErrorCode status param. 182 * negative values an informational status. 206 #define UTRACE_EXIT_STATUS(status) UPRV_BLOCK_MACRO_BEGIN { \ 208 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, UTRACE_EXITV_STATUS, status); \ 212 #define UTRACE_EXIT_VALUE_STATUS(val, status) UPRV_BLOCK_MACRO_BEGIN { \ 214 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (UTRACE_EXITV_I32 | UTRACE_EXITV_STATUS), val, status); \ 218 #define UTRACE_EXIT_PTR_STATUS(ptr, status) UPRV_BLOCK_MACRO_BEGIN { \ 220 utrace_exit(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (UTRACE_EXITV_PTR | UTRACE_EXITV_STATUS), ptr, status); \ 375 #define UTRACE_EXIT_STATUS(status) 376 #define UTRACE_EXIT_VALUE_STATUS(val, status) [all...] |