/third_party/mbedtls/programs/pkey/ |
H A D | key_app.c | 156 psa_status_t status = psa_crypto_init(); in main() local 157 if (status != PSA_SUCCESS) { in main() 159 (int) status); in main()
|
/third_party/mbedtls/programs/ssl/ |
H A D | ssl_pthread_server.c | 324 psa_status_t status = psa_crypto_init(); in main() local 325 if (status != PSA_SUCCESS) { in main() 327 (int) status); in main()
|
/third_party/mbedtls/programs/psa/ |
H A D | psa_constant_names.c | 139 psa_status_t status) in psa_snprint_status() 141 const char *name = psa_strerror(status); in psa_snprint_status() 143 return snprintf(buffer, buffer_size, "%ld", (long) status); in psa_snprint_status() 200 printf(" error=status Status code (psa_status_t)\n"); in usage() 298 if (!strcmp(argv[1], "error") || !strcmp(argv[1], "status")) { in main() 138 psa_snprint_status(char *buffer, size_t buffer_size, psa_status_t status) psa_snprint_status() argument
|
/third_party/mesa3d/src/c11/impl/ |
H A D | threads_win32.c | 169 if (InterlockedCompareExchangePointer((PVOID volatile *)&flag->status, (PVOID)1, (PVOID)0) == 0) { in call_once() 171 InterlockedExchangePointer((PVOID volatile *)&flag->status, (PVOID)2); in call_once() 173 while (flag->status == 1) { in call_once()
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-jit-trust/ |
H A D | minimal-http-client.c | 19 static int interrupted, bad = 1, status, conmon; variable 231 status = (int)lws_http_client_http_response(wsi); in callback_http() 234 buf, status); in callback_http() 317 bad = 0; // we accept 403 or whatever for this test status != 200; in callback_http() 324 bad = 0; // status != 200; in callback_http()
|
/third_party/ltp/testcases/kernel/fs/ftest/ |
H A D | ftest08.c | 149 int child, count, fd, i, nwait, status; in runtest() local 181 while ((child = wait(&status)) != -1 || errno == EINTR) { in runtest() 183 //tst_resm(TINFO, "\tTest{%d} exited status = 0x%x", child, status); in runtest() 184 if (status) { in runtest() 186 "\tExpected 0 exit status - failed."); in runtest()
|
H A D | ftest04.c | 145 int count, child, fd, i, nwait, status; in runtest() local 168 while ((child = wait(&status)) != -1 || errno == EINTR) { in runtest() 170 //tst_resm(TINFO, "\tTest{%d} exited status = 0x%x", child, status); in runtest() 171 if (status) { in runtest() 173 "\tExpected 0 exit status - failed."); in runtest()
|
/third_party/node/src/crypto/ |
H A D | crypto_cipher.h | 223 const WebCryptoCipherStatus status = variable 231 if (status == WebCryptoCipherStatus::OK) { 238 switch (status) {
|
/third_party/node/test/node-api/test_threadsafe_function/ |
H A D | binding.c | 44 napi_status status; in data_source_thread() local 73 status = napi_call_threadsafe_function(ts_fn, &ints[index], in data_source_thread() 81 switch (status) { in data_source_thread()
|
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | statusfile.py | 40 # Outcomes only for status file, need special handling 98 """Finds and prints unused rules in status file. 308 status = {"success": True} 312 status["success"] = False 336 return status["success"]
|
/third_party/nghttp2/src/ |
H A D | h2load.h | 161 // HTTP status code 162 int status; member 175 // means successful HTTP status code. 216 // means successful HTTP status code. 218 // The number of requests marked as success. HTTP status code is 239 // The number of each HTTP status category, status[i] is status code 241 std::array<size_t, 6> status; member 454 void on_status_code(int32_t stream_id, uint16_t status); [all...] |
/third_party/node/deps/npm/node_modules/npm-profile/lib/ |
H A D | index.js | 97 status: er.statusCode, 110 if (res.status === 200) { 116 } else if (res.status === 202) {
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | winnmtst.cpp | 281 UErrorCode status = U_ZERO_ERROR; in testLocales() local 315 NumberFormat *wnf = NumberFormat::createInstance(ulocale, status); in testLocales() 316 NumberFormat *wcf = NumberFormat::createCurrencyInstance(ulocale, status); in testLocales()
|
/third_party/libdrm/tests/amdgpu/ |
H A D | hotunplug_tests.c | 257 void *status; in amdgpu_destroy_cs_thread() local 261 pthread_join(*thread, &status); in amdgpu_destroy_cs_thread() 262 CU_ASSERT_EQUAL(status, 0); in amdgpu_destroy_cs_thread()
|
/third_party/ltp/testcases/network/stress/ns-tools/ |
H A D | ns-tcpserver.c | 168 int status; /* exit value of a child */ in delete_zombies() local 172 zombie_pid = waitpid((pid_t) - 1, &status, WNOHANG); in delete_zombies() 179 if (status != EXIT_SUCCESS) { in delete_zombies()
|
/third_party/ltp/testcases/kernel/syscalls/madvise/ |
H A D | madvise11.c | 187 void *status; in stress_alloc_offl() local 189 SAFE_PTHREAD_JOIN(thread_ids[thread_index], &status); in stress_alloc_offl() 190 if ((intptr_t)status != 0) { in stress_alloc_offl()
|
/third_party/node/deps/v8/src/base/debug/ |
H A D | stack_trace_posix.cc | 105 int status = 0; in DemangleSymbols() local 107 abi::__cxa_demangle(mangled_symbol.c_str(), nullptr, nullptr, &status)); in DemangleSymbols() 108 if (status == 0) { // Demangling is successful. in DemangleSymbols()
|
/third_party/node/deps/openssl/openssl/providers/fips/ |
H A D | self_test.c | 183 int ret = 0, status; in verify_integrity() local 207 status = read_ex_cb(bio, buf, sizeof(buf), &bytes_read); in verify_integrity() 208 if (status != 1) in verify_integrity()
|
/third_party/node/deps/openssl/openssl/crypto/ocsp/ |
H A D | ocsp_cl.c | 115 /* Get response status */ 244 * Extract status information from an OCSP_SINGLERESP structure. Note: the 245 * revtime and reason values are only set if the certificate status is 246 * revoked. Returns numerical value of status. 281 * found extract status information. Return 0 is successful. 283 int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status, in OCSP_resp_find_status() argument 297 if (status != NULL) in OCSP_resp_find_status() 298 *status = i; in OCSP_resp_find_status()
|
/third_party/openssl/crypto/ocsp/ |
H A D | ocsp_cl.c | 115 /* Get response status */ 244 * Extract status information from an OCSP_SINGLERESP structure. Note: the 245 * revtime and reason values are only set if the certificate status is 246 * revoked. Returns numerical value of status. 281 * found extract status information. Return 0 is successful. 283 int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status, in OCSP_resp_find_status() argument 297 if (status != NULL) in OCSP_resp_find_status() 298 *status = i; in OCSP_resp_find_status()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | ShaderGL.cpp | 218 GLint status = GL_FALSE; in peekCompletion() local 219 functions->getShaderiv(mShaderID, GL_COMPLETION_STATUS, &status); in peekCompletion() 220 return status == GL_TRUE; in peekCompletion()
|
/third_party/skia/src/gpu/gl/ |
H A D | GrGLRenderTarget.cpp | 252 GrGLenum status; in bindInternal() local 253 GL_CALL_RET(status, CheckFramebufferStatus(fboTarget)); in bindInternal() 254 if (status != GR_GL_FRAMEBUFFER_COMPLETE) { in bindInternal()
|
/third_party/openssl/providers/fips/ |
H A D | self_test.c | 185 int ret = 0, status; in verify_integrity() local 209 status = read_ex_cb(bio, buf, sizeof(buf), &bytes_read); in verify_integrity() 210 if (status != 1) in verify_integrity()
|
/third_party/skia/third_party/externals/microhttpd/src/include/ |
H A D | microspdy.h | 741 * @param status shows if actually the response was sent or it was
744 * status indicates an error but parts of the response headers
756 enum SPDY_RESPONSE_RESULT status,
1128 * @param status HTTP status code for the response (e.g. 404)
1129 * @param statustext HTTP status message for the response, which will
1130 * be appended to the status code (e.g. "OK"). Can be NULL
1143 SPDY_build_response (int status,
1163 * @param status HTTP status cod [all...] |
/third_party/skia/third_party/externals/angle2/util/fuchsia/ |
H A D | ScenicWindow.cpp | 21 #include <zircon/status.h> 249 void ScenicWindow::onScenicError(zx_status_t status) in onScenicError() argument 251 WARN() << "OnScenicError: " << zx_status_get_string(status); in onScenicError()
|