Home
last modified time | relevance | path

Searched refs:error (Results 8226 - 8250 of 15111) sorted by relevance

1...<<321322323324325326327328329330>>...605

/kernel/linux/linux-6.6/kernel/time/
H A Dtime.c17 * Introduced error checking for many cases in adjtimex().
172 int error = 0; in do_sys_settimeofday64() local
177 error = security_settime64(tv, tz); in do_sys_settimeofday64()
178 if (error) in do_sys_settimeofday64()
179 return error; in do_sys_settimeofday64()
604 * Note that due to the small error in the multiplier here, this
741 * max relative error 5.7e-8 (1.8s per year) for USER_HZ <= 1024, in nsec_to_clock_t()
869 * Return: %0 on success or negative errno on error
900 * Return: %0 on success or negative errno on error
947 * Return: %0 on success or negative errno on error
[all...]
/kernel/linux/linux-6.6/lib/crypto/mpi/
H A Dmpicoder.c248 * Return: 0 on success or error code in case of error
259 #error please implement for this limb size. in mpi_read_buffer()
288 #error please implement for this limb size. in mpi_read_buffer()
308 * Return: Pointer to MPI buffer or NULL on error
352 * Return: 0 on success or error code in case of error
363 #error please implement for this limb size. in mpi_write_to_sgl()
405 #error please implement for this limb size. in mpi_write_to_sgl()
435 * Return: Pointer to a new MPI or NULL on error
[all...]
/kernel/linux/linux-6.6/net/9p/
H A Dtrans_xen.c424 goto error; in xen_9pfs_front_init()
431 goto error; in xen_9pfs_front_init()
466 goto error; in xen_9pfs_front_init()
474 error: in xen_9pfs_front_init()
/kernel/linux/linux-6.6/kernel/
H A Dwatch_queue.c264 goto error; in watch_queue_set_size()
270 goto error; in watch_queue_set_size()
275 goto error; in watch_queue_set_size()
299 error: in watch_queue_set_size()
/third_party/glfw/src/
H A Dwgl_context.c697 const DWORD error = GetLastError(); in _glfwCreateContextWGL() local
699 if (error == (0xc0070000 | ERROR_INVALID_VERSION_ARB)) in _glfwCreateContextWGL()
716 else if (error == (0xc0070000 | ERROR_INVALID_PROFILE_ARB)) in _glfwCreateContextWGL()
721 else if (error == (0xc0070000 | ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB)) in _glfwCreateContextWGL()
/third_party/libcoap/src/
H A Dcoap_address.c102 default: /* fall through and signal error */ in coap_address_equals()
422 int error; in coap_resolve_address_info() local
517 error = getaddrinfo(addrstr, NULL, &hints, &res); in coap_resolve_address_info()
519 if (error != 0) { in coap_resolve_address_info()
520 coap_log_warn("getaddrinfo: %s\n", gai_strerror(error)); in coap_resolve_address_info()
/third_party/mbedtls/tests/scripts/
H A Dcheck_names.py30 error. It must be run from Mbed TLS root.
92 An abstract parent class representing a form of static analysis error.
415 exclusions = re.compile(r"// *no-check-names|#error")
718 except subprocess.CalledProcessError as error:
719 self.log.debug(error.output)
720 raise error
765 self.log.error(line)
/third_party/jerryscript/jerry-main/
H A Dmain-unix.c92 * Print error value
95 print_unhandled_exception (jerry_value_t error_value) /**< error value */ in print_unhandled_exception()
211 /* Temporarily modify the error message, so we can use the path. */ in print_unhandled_exception()
216 /* Revert the error message. */ in print_unhandled_exception()
399 * Check whether a usage-related condition holds. If not, print an error
405 const char *msg, /**< error message to print if condition does not hold */ in check_usage()
406 const char *opt) /**< optional part of the error message */ in check_usage()
660 cli_state.error = "Internal error"; in main()
666 if (cli_state.error ! in main()
[all...]
/third_party/lame/ACM/tinyxml/
H A Dtinyxml.cpp588 error = false; in TiXmlDocument()
597 error = false; in TiXmlDocument()
675 clone->error = error; in Clone()
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
H A Dvid_dec.c80 goto error; in vid_dec_LoaderComponent()
84 goto error; in vid_dec_LoaderComponent()
88 goto error; in vid_dec_LoaderComponent()
147 error: in vid_dec_LoaderComponent()
/third_party/node/test/fixtures/wpt/common/security-features/resources/
H A Dcommon.sub.js137 * @return {Promise} A promise wrapping the success and error events.
145 xhr.addEventListener("error", function() {
180 * Binds to success and error events of an object wrapping them into a promise
182 * resolves and error event rejects.
188 * @param {string} rejectEventName [="error"] The event name to bind reject to.
195 // Returns a promise wrapping success and error events of objects.
202 // When `rejectObject`'s `rejectEventName` event (default: "error") or
203 // `rejectObject2`'s `rejectEventName2` event (default: "error") is
210 const actualRejectEventName = rejectEventName || "error";
211 const actualRejectEventName2 = rejectEventName2 || "error";
[all...]
/third_party/nghttp2/src/
H A Dshrpx_memcached_connection.cc166 auto error = errno; in initiate_connection() local
167 MCLOG(WARN, this) << "socket() failed; errno=" << error; in initiate_connection()
175 auto error = errno; in initiate_connection() local
176 MCLOG(WARN, this) << "connect() failed; errno=" << error; in initiate_connection()
546 MCLOG(INFO, this) << "response returned error status: " in parse_packet()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetBOCU1.java613 ByteBuffer error = ByteBuffer.wrap(errorBuffer); in regularLoop()
625 error.put((byte)(diff>>16)); in regularLoop()
627 error.put((byte)(diff>>8)); in regularLoop()
629 error.put((byte)diff); in regularLoop()
768 * @return new delta for diff including b - <0 indicates an error
/third_party/node/deps/v8/src/objects/
H A Dmodule.cc86 Handle<Object> error) { in RecordError()
89 DCHECK(!error->IsTheHole(isolate)); in RecordError()
97 if (isolate->is_catchable_by_javascript(*error)) { in RecordError()
98 module->set_exception(*error); in RecordError()
384 // here accessing uninitialized variable error should be throwed. in GetExport()
85 RecordError(Isolate* isolate, Handle<Module> module, Handle<Object> error) RecordError() argument
/third_party/mesa3d/src/glx/
H A Dsingle2.c131 if (gc->error) { in __indirect_glGetError()
132 /* Use internal error first */ in __indirect_glGetError()
133 retval = gc->error; in __indirect_glGetError()
134 gc->error = GL_NO_ERROR; in __indirect_glGetError()
141 retval = reply.error; in __indirect_glGetError()
590 ** Switch to new mode did not take effect, therefore an error in __indirect_glRenderMode()
591 ** occurred. When an error happens the server won't send us any in __indirect_glRenderMode()
/third_party/node/deps/openssl/openssl/apps/
H A Dsmime.c699 int error; in smime_cb() local
701 error = X509_STORE_CTX_get_error(ctx); in smime_cb()
703 if ((error != X509_V_ERR_NO_EXPLICIT_POLICY) in smime_cb()
704 && ((error != X509_V_OK) || (ok != 2))) in smime_cb()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dpcy_tree.c91 * Return value: <= 0 on error, or positive bit mask:
401 * Return value: <= 0 error, otherwise one of:
596 * Return value: <= 0 error, otherwise one of:
657 * X509_PCY_TREE_INTERNAL: Internal error, most likely malloc
692 goto error; in X509_policy_check()
704 goto error; in X509_policy_check()
709 goto error; in X509_policy_check()
720 error: in X509_policy_check()
/third_party/pulseaudio/src/pulsecore/
H A Dtagstruct.c360 int error = 0; in pa_tagstruct_gets() local
382 error = 1; in pa_tagstruct_gets()
385 error = 0; in pa_tagstruct_gets()
389 if (error) in pa_tagstruct_gets()
/third_party/openssl/apps/
H A Dsmime.c698 int error; in smime_cb() local
700 error = X509_STORE_CTX_get_error(ctx); in smime_cb()
702 if ((error != X509_V_ERR_NO_EXPLICIT_POLICY) in smime_cb()
703 && ((error != X509_V_OK) || (ok != 2))) in smime_cb()
/third_party/skia/third_party/externals/angle2/src/common/
H A Dutilities.cpp1015 errno = 0; // reset global error flag. in ParseArrayIndex()
1019 // Check if resulting integer is out-of-range or conversion error. in ParseArrayIndex()
1033 const char *GetGenericErrorMessage(GLenum error) in GetGenericErrorMessage() argument
1035 switch (error) in GetGenericErrorMessage()
1055 return "Unknown error."; in GetGenericErrorMessage()
1285 const char *GetGenericErrorMessage(EGLint error) in GetGenericErrorMessage() argument
1287 switch (error) in GetGenericErrorMessage()
1327 return "Unknown error."; in GetGenericErrorMessage()
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_composites.cpp32 // the sequence of indices in the instruction. May return error if traversal
376 if (spv_result_t error = GetExtractInsertValueType(_, inst, &member_type)) { in ValidateCompositeExtract()
377 return error; in ValidateCompositeExtract()
411 if (spv_result_t error = GetExtractInsertValueType(_, inst, &member_type)) { in ValidateCompositeInsert()
412 return error; in ValidateCompositeInsert()
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/parser/
H A Dparser.go168 e error
177 // err appends an fmt.Printf style error into l.diags for the given token.
354 func lex(source string) ([]*Token, []Diagnostic, error) {
408 func (p *parser) parse() error {
688 // unexpected emits an 'unexpected token error' for the i'th token.
690 p.err(p.toks[i], "syntax error: unexpected '%s'", p.toks[i].Text(p.lines))
719 // err appends an fmt.Printf style error into l.diags for the given token.
733 func Parse(source string) (Results, error) {
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
H A Dserialization.go29 func ReadJSON(r io.Reader) (*Tree, string, error) {
35 func (t *Tree) Encode(revision string, w io.Writer) error {
283 err error
289 func (p *parser) parse() (*Tree, string, error) {
/third_party/openssl/crypto/x509/
H A Dpcy_tree.c91 * Return value: <= 0 on error, or positive bit mask:
401 * Return value: <= 0 error, otherwise one of:
596 * Return value: <= 0 error, otherwise one of:
657 * X509_PCY_TREE_INTERNAL: Internal error, most likely malloc
692 goto error; in X509_policy_check()
704 goto error; in X509_policy_check()
709 goto error; in X509_policy_check()
720 error: in X509_policy_check()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_composites.cpp32 // the sequence of indices in the instruction. May return error if traversal
376 if (spv_result_t error = GetExtractInsertValueType(_, inst, &member_type)) { in ValidateCompositeExtract()
377 return error; in ValidateCompositeExtract()
411 if (spv_result_t error = GetExtractInsertValueType(_, inst, &member_type)) { in ValidateCompositeInsert()
412 return error; in ValidateCompositeInsert()

Completed in 30 milliseconds

1...<<321322323324325326327328329330>>...605