/third_party/ltp/testcases/kernel/containers/pidns/ |
H A D | pidns17.c | 23 int children[CHILDREN_NUM], status; in child_func() local 48 SAFE_WAITPID(children[i], &status, 0); in child_func() 50 TST_EXP_EQ_LI(WIFSIGNALED(status), 1); in child_func() 51 TST_EXP_EQ_LI(WTERMSIG(status), SIGUSR1); in child_func()
|
/third_party/musl/libc-test/src/regression/ |
H A D | fflush-exit.c | 21 int fd, pid, status; in main() local 32 ASSERT(waitpid(pid, &status, 0) == pid); in main() 33 ASSERT(WIFEXITED(status) && WEXITSTATUS(status) == 0); in main()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | unumsys.h | 53 * @param status A pointer to a UErrorCode to receive any errors. For example, this 61 unumsys_open(const char *locale, UErrorCode *status); 74 * @param status A pointer to a UErrorCode to receive any errors. For example, this 82 unumsys_openByName(const char *name, UErrorCode *status); 112 * @param status A pointer to a UErrorCode to receive any errors. 118 unumsys_openAvailableNames(UErrorCode *status); 135 * @param unumsys The UNumberingSystem whose algorithmic status is desired. 165 * @param status A pointer to a UErrorCode to receive any errors. 172 int32_t resultLength, UErrorCode *status);
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | pluralranges.h | 29 static StandardPluralRanges forLocale(const Locale& locale, UErrorCode& status); 32 StandardPluralRanges copy(UErrorCode& status) const; 35 LocalPointer<StandardPluralRanges> toPointer(UErrorCode& status) && noexcept; 47 void setCapacity(int32_t length, UErrorCode& status);
|
/third_party/node/deps/npm/node_modules/cross-spawn/lib/ |
H A D | enoent.js | 38 function verifyENOENT(status, parsed) { 39 if (isWin && status === 1 && !parsed.file) { 46 function verifyENOENTSync(status, parsed) { 47 if (isWin && status === 1 && !parsed.file) {
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | unumsys.h | 53 * @param status A pointer to a UErrorCode to receive any errors. For example, this 61 unumsys_open(const char *locale, UErrorCode *status); 74 * @param status A pointer to a UErrorCode to receive any errors. For example, this 82 unumsys_openByName(const char *name, UErrorCode *status); 112 * @param status A pointer to a UErrorCode to receive any errors. 118 unumsys_openAvailableNames(UErrorCode *status); 135 * @param unumsys The UNumberingSystem whose algorithmic status is desired. 165 * @param status A pointer to a UErrorCode to receive any errors. 172 int32_t resultLength, UErrorCode *status);
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | nfsprep.h | 51 * @param status 58 UErrorCode* status); 67 * @param status 73 UErrorCode* status); 82 * @param status 88 UErrorCode* status); 97 * @param status 104 UErrorCode* status);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/ |
H A D | 5-1.c | 33 int status; in set_policy() local 42 status = PTS_PASS; in set_policy() 46 status = PTS_FAIL; in set_policy() 51 return status; in set_policy()
|
/third_party/musl/libc-test/src/functionalext/supplement/dirent/ |
H A D | readdir_r.c | 69 int status; in readdir_r_0200() local 70 waitpid(pid, &status, 0); in readdir_r_0200() 71 if (WIFSIGNALED(status)) { in readdir_r_0200() 72 int sig = WTERMSIG(status); in readdir_r_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/env/ |
H A D | putenv.c | 71 int status; in putenv_0200() local 72 waitpid(pid, &status, 0); in putenv_0200() 73 if (WIFSIGNALED(status)) { in putenv_0200() 74 int sig = WTERMSIG(status); in putenv_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/fortify/fortify_gtest/ |
H A D | fortify_sendto_chk_test.cpp | 35 int status; in HWTEST_F() local 41 waitpid(pid, &status, WUNTRACED); in HWTEST_F() 42 EXPECT_TRUE(WIFEXITED(status)); in HWTEST_F() 43 EXPECT_FALSE(WIFSTOPPED(status)); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | putw.c | 71 int status; in putw_0200() local 72 waitpid(pid, &status, 0); in putw_0200() 73 if (WIFSIGNALED(status)) { in putw_0200() 74 int sig = WTERMSIG(status); in putw_0200()
|
/third_party/musl/libc-test/src/gwp_asan/ |
H A D | buffer_overflow.c | 71 int status;
in main() local 72 if (waitpid(pid, &status, 0) != pid) {
in main() 76 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
in main()
|
H A D | buffer_underflow.c | 71 int status;
in main() local 72 if (waitpid(pid, &status, 0) != pid) {
in main() 76 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
in main()
|
H A D | invalid_free_left.c | 67 int status;
in main() local 68 if (waitpid(pid, &status, 0) != pid) {
in main() 72 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
in main()
|
H A D | use_after_free.c | 66 int status;
in main() local 67 if (waitpid(pid, &status, 0) != pid) {
in main() 71 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
in main()
|
H A D | invalid_free_right.c | 66 int status;
in main() local 67 if (waitpid(pid, &status, 0) != pid) {
in main() 71 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
in main()
|
/third_party/node/deps/uv/src/unix/ |
H A D | random-devurandom.c | 29 static int status; variable 82 status = uv__random_readpath("/dev/random", &c, 1); in uv__random_devurandom_init() 89 if (status != 0) in uv__random_devurandom() 90 return status; in uv__random_devurandom()
|
/third_party/libabigail/src/ |
H A D | abg-elf-based-reader.cc | 86 /// @param status output parameter. This is the status of the 93 fe_iface::status& status) in read_and_add_corpus_to_group() 95 ir::corpus_sptr corp = read_corpus(status); in read_and_add_corpus_to_group() 97 if (status & fe_iface::STATUS_OK) in read_and_add_corpus_to_group() 92 read_and_add_corpus_to_group(ir::corpus_group& group, fe_iface::status& status) read_and_add_corpus_to_group() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | pluralranges.h | 29 static StandardPluralRanges forLocale(const Locale& locale, UErrorCode& status); 32 StandardPluralRanges copy(UErrorCode& status) const; 35 LocalPointer<StandardPluralRanges> toPointer(UErrorCode& status) && noexcept; 47 void setCapacity(int32_t length, UErrorCode& status);
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | unumsys.h | 53 * @param status A pointer to a UErrorCode to receive any errors. For example, this 61 unumsys_open(const char *locale, UErrorCode *status); 74 * @param status A pointer to a UErrorCode to receive any errors. For example, this 82 unumsys_openByName(const char *name, UErrorCode *status); 112 * @param status A pointer to a UErrorCode to receive any errors. 118 unumsys_openAvailableNames(UErrorCode *status); 135 * @param unumsys The UNumberingSystem whose algorithmic status is desired. 165 * @param status A pointer to a UErrorCode to receive any errors. 172 int32_t resultLength, UErrorCode *status);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | drv_callbacks.c | 157 int status = WLAN_STATUS_SUCCESS; in hostapd_notif_assoc() local 325 status = WLAN_STATUS_INVALID_IE; in hostapd_notif_assoc() 334 status = WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY; in hostapd_notif_assoc() 339 hostapd_sta_assoc(hapd, addr, reassoc, status, in hostapd_notif_assoc() 376 status = WLAN_STATUS_INVALID_IE; in hostapd_notif_assoc() 380 status = WLAN_STATUS_SUCCESS; in hostapd_notif_assoc() 384 status = WLAN_STATUS_INVALID_IE; in hostapd_notif_assoc() 388 status = WLAN_STATUS_GROUP_CIPHER_NOT_VALID; in hostapd_notif_assoc() 392 status = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID; in hostapd_notif_assoc() 396 status in hostapd_notif_assoc() 1257 hostapd_notify_auth_ft_finish(void *ctx, const u8 *dst, const u8 *bssid, u16 auth_transaction, u16 status, const u8 *ies, size_t ies_len) hostapd_notify_auth_ft_finish() argument 1308 u16 status = WLAN_STATUS_SUCCESS; hostapd_notif_auth() local 1842 u16 status; hostapd_notif_update_dh_ie() local [all...] |
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/src/ |
H A D | napi_mirror_player.cpp | 53 napi_status status = napi_define_class(env, "mirrorPlayer", NAPI_AUTO_LENGTH, NapiMirrorPlayerConstructor, nullptr, in DefineMirrorPlayerJSClass() local 55 if (status != napi_ok) { in DefineMirrorPlayerJSClass() 59 status = napi_create_reference(env, mirrorPlayer, initialRefCount, &consRef_); in DefineMirrorPlayerJSClass() 60 if (status != napi_ok) { in DefineMirrorPlayerJSClass() 83 napi_status status = napi_get_reference_value(env, consRef_, &constructor); in CreateNapiMirrorPlayer() local 84 if (status != napi_ok || constructor == nullptr) { in CreateNapiMirrorPlayer() 90 status = napi_new_instance(env, constructor, argc, nullptr, &result); in CreateNapiMirrorPlayer() 91 if (status != napi_ok) { in CreateNapiMirrorPlayer() 157 napiAsyntask->status = napi_generic_failure; in Play() 203 napiAsyntask->status in Pause() [all...] |
/foundation/bundlemanager/app_domain_verify/services/src/manager/zidl/ |
H A D | app_domain_verify_mgr_service_proxy.cpp | 97 bool status = false; in FilterAbilities() local 98 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, reply, status); in FilterAbilities() 99 if (!status) { in FilterAbilities() 101 APP_DOMAIN_VERIFY_MGR_MODULE_CLIENT, "FilterAbilities status failed, error: %d", error); in FilterAbilities() 137 bool status = false; in QueryDomainVerifyStatus() local 138 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, reply, status); in QueryDomainVerifyStatus() 139 if (!status) { in QueryDomainVerifyStatus() 141 APP_DOMAIN_VERIFY_MGR_MODULE_CLIENT, "QueryDomainVerifyStatus status failed, error: %d", error); in QueryDomainVerifyStatus() 163 bool status = false; in QueryAllDomainVerifyStatus() local 164 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, reply, status); in QueryAllDomainVerifyStatus() 197 bool status = false; SaveDomainVerifyStatus() local 215 bool status = false; IsAtomicServiceUrl() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/huawei/hinic/ |
H A D | hinic_hw_dev.h | 193 u8 status; member 204 u8 status; member 226 u8 status; member 237 u8 status; member 247 u8 status; member 258 u8 status; member 269 u8 status; member 278 u8 status; member 297 u8 status; member 306 u8 status; member 321 u8 status; global() member 351 u8 status; global() member 408 u8 status; global() member 491 u8 status; global() member 519 u8 status; global() member [all...] |