Home
last modified time | relevance | path

Searched refs:status (Results 5001 - 5025 of 5477) sorted by relevance

1...<<201202203204205206207208209210>>...220

/third_party/icu/icu4c/source/common/
H A Ducnv2022.cpp407 _ISO_2022_SafeClone(const UConverter *cnv, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status);
3590 UErrorCode *status)
3596 if (U_FAILURE(*status)){
3621 &size, status);
3622 if(U_FAILURE(*status)) {
/third_party/NuttX/fs/nfs/
H A Dnfs_adapter.c132 time_t ns_ctime; /* Time of last status change */
158 int status; in nfs_2_vfs() local
169 status = ENAMETOOLONG; in nfs_2_vfs()
172 status = ENOTEMPTY; in nfs_2_vfs()
175 status = result; in nfs_2_vfs()
179 return status; in nfs_2_vfs()
1731 /* Yes.. Update the cached file status in the file structure. */ in vfs_nfs_write()
1942 /* Yes.. Update the cached file status in the file structure. */ in vfs_nfs_writepage()
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-regexp-object.c244 ecma_value_t status = ecma_builtin_helper_def_prop (new_object_p, in ecma_op_regexp_alloc() local
249 JERRY_ASSERT (ecma_is_value_true (status)); in ecma_op_regexp_alloc()
1953 const ecma_value_t status = ecma_op_object_put (regexp_object_p, last_index_str_p, ecma_make_uint32_value (0), true); in ecma_regexp_search_helper() local
1954 if (ECMA_IS_VALUE_ERROR (status)) in ecma_regexp_search_helper()
1960 JERRY_ASSERT (ecma_is_value_boolean (status)); in ecma_regexp_search_helper()
/third_party/nghttp2/src/
H A Dshrpx_http3_upstream.cc1201 unsigned int status; in downstream_error() local
1204 status = 504; in downstream_error()
1206 status = 408; in downstream_error()
1209 status = 502; in downstream_error()
1211 if (error_reply(downstream, status) != 0) { in downstream_error()
1328 // 4 means :status and possible server, via, and set-cookie (for in on_downstream_header_complete()
1336 nva.push_back(http3::make_nv_ls_nocopy(":status", response_status)); in on_downstream_header_complete()
1368 nva.push_back(http3::make_nv_ls_nocopy(":status", response_status)); in on_downstream_header_complete()
1698 // 2 for :status and server in send_reply()
1703 nva.push_back(http3::make_nv_ls_nocopy(":status", response_statu in send_reply()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnv2022.cpp407 _ISO_2022_SafeClone(const UConverter *cnv, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status);
3590 UErrorCode *status)
3596 if (U_FAILURE(*status)){
3621 &size, status);
3622 if(U_FAILURE(*status)) {
/third_party/mesa3d/src/intel/vulkan/
H A Danv_private.h1543 * Current error status of the command buffer. Used to track inconsistent
1549 VkResult status; member
1569 if (batch->status == VK_SUCCESS) in anv_batch_set_error()
1570 batch->status = error; in anv_batch_set_error()
1571 return batch->status; in anv_batch_set_error()
1577 return batch->status != VK_SUCCESS; in anv_batch_has_error()
/third_party/node/deps/openssl/openssl/apps/
H A Ds_client.c243 int status; member
267 ctx->status = in next_proto_cb()
606 {"status", OPT_STATUS, '-', "Request certificate status from server"},
1597 next_proto.status = -1; in s_client_main()
3218 BIO_printf(bio, "SCT validation status: %s\n", in print_stuff()
3279 if (next_proto.status != -1) { in print_stuff()
3283 BIO_printf(bio, "Next protocol: (%d) ", next_proto.status); in print_stuff()
/third_party/openssl/apps/
H A Ds_client.c243 int status; member
267 ctx->status = in next_proto_cb()
606 {"status", OPT_STATUS, '-', "Request certificate status from server"},
1597 next_proto.status = -1; in s_client_main()
3218 BIO_printf(bio, "SCT validation status: %s\n", in print_stuff()
3279 if (next_proto.status != -1) { in print_stuff()
3283 BIO_printf(bio, "Next protocol: (%d) ", next_proto.status); in print_stuff()
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnv2022.cpp407 _ISO_2022_SafeClone(const UConverter *cnv, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status);
3517 UErrorCode *status)
3523 if (U_FAILURE(*status)){
3548 &size, status);
3549 if(U_FAILURE(*status)) {
/third_party/python/Objects/
H A Dlistobject.c1036 int status; in list_pop_impl() local
1051 status = list_resize(self, Py_SIZE(self) - 1); in list_pop_impl()
1052 if (status >= 0) in list_pop_impl()
1058 status = list_ass_slice(self, index, index+1, (PyObject *)NULL); in list_pop_impl()
1059 if (status < 0) { in list_pop_impl()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fTextureMultisampleTests.cpp1815 glw::GLenum status = gl.glCheckFramebufferStatus(GL_FRAMEBUFFER);
1819 if (status != GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE) // should not be complete
1821 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Expected GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE, got " << glu::getFramebufferStatusName(status) << tcu::TestLog::EndMessage;
1827 if (status != GL_FRAMEBUFFER_COMPLETE) // should be complete
1829 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Expected GL_FRAMEBUFFER_COMPLETE, got " << glu::getFramebufferStatusName(status) << tcu::TestLog::EndMessage;
/third_party/libabigail/src/
H A Dabg-dwarf-reader.cc2035 /// @param status output parameter. This is set to the status of
2040 read_corpus(status& status) in read_corpus() argument
2042 status = STATUS_UNKNOWN; in read_corpus()
2045 elf::reader::read_corpus(status); in read_corpus()
2047 if ((status & STATUS_NO_SYMBOLS_FOUND) in read_corpus()
2048 || !(status & STATUS_OK)) in read_corpus()
2056 status |= STATUS_DEBUG_INFO_NOT_FOUND; in read_corpus()
2062 status | in read_corpus()
[all...]
/third_party/rust/crates/libc/src/unix/bsd/apple/
H A Dmod.rs716 pub status: ::c_int,
5045 pub {const} fn WSTOPSIG(status: ::c_int) -> ::c_int {
5046 status >> 8
5049 pub {const} fn _WSTATUS(status: ::c_int) -> ::c_int {
5050 status & 0x7f
5053 pub {const} fn WIFCONTINUED(status: ::c_int) -> bool {
5054 _WSTATUS(status) == _WSTOPPED && WSTOPSIG(status) == 0x13
5057 pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
5058 _WSTATUS(status) !
[all...]
/third_party/libinput/src/
H A Dlibinput.c3852 libinput_config_status_to_str(enum libinput_config_status status) in libinput_config_status_to_str() argument
3856 switch(status) { in libinput_config_status_to_str()
4229 enum libinput_config_status status; in libinput_device_config_accel_apply() local
4230 status = libinput_device_config_accel_set_profile(device, accel_config->profile); in libinput_device_config_accel_apply()
4231 if (status != LIBINPUT_CONFIG_STATUS_SUCCESS) in libinput_device_config_accel_apply()
4232 return status; in libinput_device_config_accel_apply()
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc728 CompilationJob::Status status = job->FinalizeJob(shared_info, isolate); in FinalizeSingleUnoptimizedCompilationJob() local
729 if (status == CompilationJob::SUCCEEDED) { in FinalizeSingleUnoptimizedCompilationJob()
742 DCHECK_IMPLIES(status == CompilationJob::RETRY_ON_MAIN_THREAD, in FinalizeSingleUnoptimizedCompilationJob()
744 return status; in FinalizeSingleUnoptimizedCompilationJob()
1175 CompilationJob::Status status = job->PrepareJob(isolate); in CompileMaglev() local
1176 CHECK_EQ(status, CompilationJob::SUCCEEDED); // TODO(v8:7700): Use status. in CompileMaglev()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DRenderer9.cpp377 // to reset the scene status and ensure the default states are reset.
2209 HRESULT status = getDeviceStatusCode(); in testDeviceLost() local
2210 return FAILED(status); in testDeviceLost()
2215 HRESULT status = D3D_OK; in getDeviceStatusCode() local
2219 status = mDeviceEx->CheckDeviceState(nullptr); in getDeviceStatusCode()
2223 status = mDevice->TestCooperativeLevel(); in getDeviceStatusCode()
2226 return status; in getDeviceStatusCode()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cMultiBindTests.cpp779 GLint status = GL_FALSE; in Link() local
784 /* Get link status */ in Link()
785 gl.getProgramiv(id, GL_LINK_STATUS, &status); in Link()
789 if (GL_TRUE != status) in Link()
885 GLint status = GL_FALSE; in Compile() local
891 /* Get compilation status */ in Compile()
892 gl.getShaderiv(id, GL_COMPILE_STATUS, &status); in Compile()
896 if (GL_TRUE != status) in Compile()
H A Dgl4cBufferStorageTests.cpp1082 GLint status = GL_FALSE; in Link() local
1087 /* Get link status */ in Link()
1088 gl.getProgramiv(id, GL_LINK_STATUS, &status); in Link()
1092 if (GL_TRUE != status) in Link()
1188 GLint status = GL_FALSE; in Compile() local
1194 /* Get compilation status */ in Compile()
1195 gl.getShaderiv(id, GL_COMPILE_STATUS, &status); in Compile()
1199 if (GL_TRUE != status) in Compile()
H A Dgl4cDirectStateAccessBuffersTests.cpp5235 glw::GLint status = GL_FALSE; in BuildProgram() local
5237 gl.getShaderiv(shader[i].id, GL_COMPILE_STATUS, &status); in BuildProgram()
5240 if (GL_FALSE == status) in BuildProgram()
5277 glw::GLint status = GL_FALSE; in BuildProgram() local
5279 gl.getProgramiv(m_po, GL_LINK_STATUS, &status); in BuildProgram()
5281 if (GL_TRUE == status) in BuildProgram()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcRobustBufferAccessBehaviorTests.cpp422 GLint status = GL_FALSE; in Link() local
427 /* Get link status */ in Link()
428 gl.getProgramiv(id, GL_LINK_STATUS, &status); in Link()
432 if (GL_TRUE != status) in Link()
523 GLint status = GL_FALSE; in Compile() local
529 /* Get compilation status */ in Compile()
530 gl.getShaderiv(id, GL_COMPILE_STATUS, &status); in Compile()
534 if (GL_TRUE != status) in Compile()
H A DglcViewportArrayTests.cpp399 /* Compilation status */ in compile()
400 glw::GLint status = GL_FALSE; in compile() local
410 /* Get compilation status */ in compile()
411 gl.getShaderiv(shader_id, GL_COMPILE_STATUS, &status); in compile()
415 if (GL_TRUE != status) in compile()
529 /* Link status */ in link()
530 glw::GLint status = GL_FALSE; in link() local
573 /* Get link status */ in link()
574 gl.getProgramiv(m_program_object_id, GL_LINK_STATUS, &status); in link()
578 if (GL_TRUE != status) in link()
[all...]
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pShaderCompilationCases.cpp1733 GLint status = 0;
1735 gl.getShaderiv(shader, GL_COMPILE_STATUS, &status);
1736 return status != 0;
1947 // Check compilation and linking status here, after all compilation and linking gl calls are made.
2423 GLint status;
2425 gl.getShaderiv(shader, GL_COMPILE_STATUS, &status);
2426 return status != 0;
/third_party/vk-gl-cts/modules/gles2/performance/
H A Des2pShaderCompilationCases.cpp1713 GLint status = 0;
1715 gl.getShaderiv(shader, GL_COMPILE_STATUS, &status);
1716 return status != 0;
1927 // Check compilation and linking status here, after all compilation and linking gl calls are made.
2403 GLint status;
2405 gl.getShaderiv(shader, GL_COMPILE_STATUS, &status);
2406 return status != 0;
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dap_ctrl_iface.c525 static const char * pbc_status_str(enum pbc_status status) in pbc_status_str() argument
527 switch (status) { in pbc_status_str()
559 (hapd->wps_stats.status == WPS_STATUS_SUCCESS ? in hostapd_ctrl_iface_wps_get_status()
561 (hapd->wps_stats.status == WPS_STATUS_FAILURE ? in hostapd_ctrl_iface_wps_get_status()
568 /* If status == Failure - Add possible Reasons */ in hostapd_ctrl_iface_wps_get_status()
569 if(hapd->wps_stats.status == WPS_STATUS_FAILURE && in hostapd_ctrl_iface_wps_get_status()
580 if (hapd->wps_stats.status) { in hostapd_ctrl_iface_wps_get_status()
1651 wpa_printf(MSG_DEBUG, "External MGMT TX status process: %s", cmd); in hostapd_ctrl_iface_mgmt_tx_status_process()
/third_party/eudev/src/ata_id/
H A Data_id.c103 if (!(io_hdr.status == 0 && in disk_scsi_inquiry_command()

Completed in 124 milliseconds

1...<<201202203204205206207208209210>>...220