/kernel/linux/linux-5.10/lib/ |
H A D | stmp_device.c | 46 goto error; in stmp_reset_block() 59 goto error; in stmp_reset_block() 64 goto error; in stmp_reset_block() 69 goto error; in stmp_reset_block() 73 error: in stmp_reset_block()
|
/kernel/linux/linux-5.10/drivers/power/reset/ |
H A D | rmobile-reset.c | 42 int error; in rmobile_reset_probe() local 48 error = register_restart_handler(&rmobile_reset_nb); in rmobile_reset_probe() 49 if (error) { in rmobile_reset_probe() 51 "cannot register restart handler (err=%d)\n", error); in rmobile_reset_probe() 59 return error; in rmobile_reset_probe()
|
/kernel/linux/linux-6.6/drivers/power/reset/ |
H A D | rmobile-reset.c | 42 int error; in rmobile_reset_probe() local 48 error = register_restart_handler(&rmobile_reset_nb); in rmobile_reset_probe() 49 if (error) { in rmobile_reset_probe() 51 "cannot register restart handler (err=%d)\n", error); in rmobile_reset_probe() 59 return error; in rmobile_reset_probe()
|
/kernel/linux/linux-6.6/lib/ |
H A D | stmp_device.c | 46 goto error; in stmp_reset_block() 59 goto error; in stmp_reset_block() 64 goto error; in stmp_reset_block() 69 goto error; in stmp_reset_block() 73 error: in stmp_reset_block()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpeg12framerate.c | 67 AVRational test, error; in ff_mpeg12_find_best_frame_rate() local 82 error = av_div_q(frame_rate, test); in ff_mpeg12_find_best_frame_rate() 84 error = av_div_q(test, frame_rate); in ff_mpeg12_find_best_frame_rate() 86 cmp = av_cmp_q(error, best_error); in ff_mpeg12_find_best_frame_rate() 91 best_error = error; in ff_mpeg12_find_best_frame_rate()
|
/third_party/mesa3d/src/gallium/frontends/omx/ |
H A D | vid_omx_common.c | 66 goto error; in omx_get_screen() 71 goto error; in omx_get_screen() 76 goto error; in omx_get_screen() 83 goto error; in omx_get_screen() 93 error: in omx_get_screen()
|
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | status_test_support.cc | 9 *os << status.ToASCIIString() << " (error: 0x" << std::hex in PrintTo() 10 << static_cast<int>(status.error) << ", " in PrintTo() 21 return status.error == expected_.error && status.pos == expected_.pos; 47 testing::Matcher<Status> StatusIs(Error error, size_t pos) { in StatusIs() argument 48 return MakeMatcher(new StatusIsMatcher(Status(error, pos))); in StatusIs()
|
/third_party/node/test/parallel/ |
H A D | test-worker-exit-code.js | 20 console.error('Parent port must not be null'); 28 const test = (arg, name = 'worker', exit, error = null) => { 36 if (error) { 37 w.on('error', common.mustCall((err) => { 39 assert.match(String(err), error); 45 testCases.forEach((tc, i) => test(i, tc.func.name, tc.result, tc.error));
|
H A D | test-whatwg-readablestream.js | 85 // Throw error and return rejected promise in `cancel()` method 574 const error = new Error('boom'); 577 controller.error(error); 582 assert.rejects(reader.closed, error); 583 assert.rejects(reader.read(), error); 584 assert.rejects(reader.read(), error); 588 const error = new Error('boom'); 591 controller.error(error); [all...] |
/third_party/node/test/sequential/ |
H A D | test-stream2-stderr-sync.js | 48 // using console.error 50 console.error('child 0'); 51 console.error('foo'); 52 console.error('bar'); 53 console.error('baz'); 80 console.error('child 3\nfoo\nbar\nbaz');
|
/third_party/mesa3d/src/util/tests/ |
H A D | process_test.c | 39 bool error = false; variable 48 error = true; in expect_equal_str() 83 error = true; in test_util_get_process_exec_path() 90 error = true; in test_util_get_process_exec_path() 110 return error ? 1 : 0; in main()
|
/third_party/skia/third_party/externals/angle2/src/libOpenCL/ |
H A D | dispatch.cpp | 35 const char *error = nullptr; in CreateDispatch() local 51 error = "Not able to find GLESv2 library"; in CreateDispatch() 68 error = "Error loading CL dispatch table."; in CreateDispatch() 93 else if (error != nullptr) in CreateDispatch() 95 ERR() << error; in CreateDispatch()
|
/third_party/skia/src/images/ |
H A D | SkJPEGWriteUtility.cpp | 56 skjpeg_error_mgr* error = (skjpeg_error_mgr*)cinfo->err; in skjpeg_error_exit() local 58 (*error->output_message) (cinfo); in skjpeg_error_exit() 63 if (error->fJmpBufStack.empty()) { in skjpeg_error_exit() 64 SK_ABORT("JPEG error with no jmp_buf set."); in skjpeg_error_exit() 67 longjmp((_JBTYPE*)*error->fJmpBufStack.back(), -1); in skjpeg_error_exit() 69 longjmp(*error->fJmpBufStack.back(), -1); in skjpeg_error_exit()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/ |
H A D | main.h | 35 EGLint error; member 44 void setCurrentError(EGLint error); 59 void error(EGLint errorCode); 62 const T &error(EGLint errorCode, const T &returnValue) in error() function 64 egl::error(errorCode); in error()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_paren_rhs_stmt_test.cc | 25 ASSERT_FALSE(p->has_error()) << p->error(); in TEST_F() 37 EXPECT_EQ(p->error(), "1:1: expected '('"); in TEST_F() 46 EXPECT_EQ(p->error(), "1:6: expected ')'"); in TEST_F() 55 EXPECT_EQ(p->error(), "1:2: unable to parse expression"); in TEST_F() 64 EXPECT_EQ(p->error(), "1:2: unable to parse expression"); in TEST_F()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | nonNullableTypes1.js | 6 function error(): never { 11 return x || error(); 43 function error() {
function 47 return x || error();
76 declare function error(): never;
|
H A D | emitBOM.js | 5 tests/cases/compiler/emitBOM.js(1,2): error TS1127: Invalid character.
6 tests/cases/compiler/emitBOM.js(1,3): error TS1127: Invalid character.
12 !!! error TS1127: Invalid character.
14 !!! error TS1127: Invalid character.
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | status.h | 44 namespace error { namespace 45 // These values must match error codes defined in google/rpc/code.proto. 65 } // namespace error 72 // Create a status in the canonical error space with the specified 73 // code, and error message. If "code == 0", error_message is 76 Status(error::Code error_code, StringPiece error_message); 88 return error_code_ == error::OK; in ok() 93 error::Code code() const { in code() 108 // Return a combination of the error code name and message. 112 error [all...] |
/kernel/linux/linux-5.10/drivers/input/mouse/ |
H A D | alps.c | 1405 int error = 0; in alps_register_bare_ps2_mouse() local 1415 error = -ENOMEM; in alps_register_bare_ps2_mouse() 1444 error = input_register_device(dev3); in alps_register_bare_ps2_mouse() 1445 if (error) { in alps_register_bare_ps2_mouse() 1448 error); in alps_register_bare_ps2_mouse() 1457 * Save the error code so that we can detect that we in alps_register_bare_ps2_mouse() 1460 if (error) in alps_register_bare_ps2_mouse() 1461 priv->dev3 = ERR_PTR(error); in alps_register_bare_ps2_mouse() 2102 goto error; in alps_passthrough_mode_v3() 2111 error in alps_passthrough_mode_v3() 2886 int error; alps_identify() local 3042 int error; alps_init() local 3176 int error; alps_detect() local [all...] |
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
H A D | xfs_attr_leaf.c | 790 int error; in xfs_attr_shortform_remove() local 798 error = xfs_attr_sf_findname(args, &sfe, &base); in xfs_attr_shortform_remove() 799 if (error != -EEXIST) in xfs_attr_shortform_remove() 800 return error; in xfs_attr_shortform_remove() 870 * lookup, we only return an error if the attribute does not exist or we can't 908 int error, i, size; in xfs_attr_shortform_to_leaf() local 928 error = xfs_da_grow_inode(args, &blkno); in xfs_attr_shortform_to_leaf() 929 if (error) in xfs_attr_shortform_to_leaf() 933 error = xfs_attr3_leaf_create(args, blkno, &bp); in xfs_attr_shortform_to_leaf() 934 if (error) in xfs_attr_shortform_to_leaf() 1103 int error; xfs_attr3_leaf_to_shortform() local 1187 int error; xfs_attr3_leaf_to_node() local 1255 int error; xfs_attr3_leaf_create() local 1304 int error; xfs_attr3_leaf_split() local 1967 int error; xfs_attr3_leaf_toosmall() local 2740 int error; xfs_attr3_leaf_clearflag() local 2806 int error; xfs_attr3_leaf_setflag() local 2861 int error; xfs_attr3_leaf_flipflags() local [all...] |
/kernel/linux/linux-6.6/drivers/input/mouse/ |
H A D | alps.c | 1405 int error = 0; in alps_register_bare_ps2_mouse() local 1415 error = -ENOMEM; in alps_register_bare_ps2_mouse() 1444 error = input_register_device(dev3); in alps_register_bare_ps2_mouse() 1445 if (error) { in alps_register_bare_ps2_mouse() 1448 error); in alps_register_bare_ps2_mouse() 1457 * Save the error code so that we can detect that we in alps_register_bare_ps2_mouse() 1460 if (error) in alps_register_bare_ps2_mouse() 1461 priv->dev3 = ERR_PTR(error); in alps_register_bare_ps2_mouse() 2102 goto error; in alps_passthrough_mode_v3() 2111 error in alps_passthrough_mode_v3() 2886 int error; alps_identify() local 3042 int error; alps_init() local 3176 int error; alps_detect() local [all...] |
/third_party/mesa3d/include/CL/ |
H A D | cl.hpp | 309 /*! \brief Create a new CL error exception for a given error code 312 * \param err error code value. 323 /*! \brief Get error string associated with exception 325 * \return A memory pointer to the error message string. 337 /*! \brief Get error code associated with exception 339 * \return The error code. 464 #define __VECTOR_CAPACITY_ERR __ERR_STR(Vector capacity error) 2523 cl_int error; in Context() local 2534 notifyFptr, data, &error); in Context() 2553 cl_int error; Context() local 2583 cl_int error; Context() local 2712 cl_int error; getDefault() local 2830 cl_int error; getDefault() local 2999 cl_int error; UserEvent() local 3189 cl_int error; Buffer() local 3213 cl_int error; Buffer() local 3239 cl_int error; Buffer() local 3354 cl_int error; createSubBuffer() local 3415 cl_int error; BufferD3D10() local 3501 cl_int error; BufferGL() local 3679 cl_int error; Image1D() local 3764 cl_int error; Image1DBuffer() local 3843 cl_int error; Image1DArray() local 3933 cl_int error; Image2D() local 4065 cl_int error; Image2DGL() local 4151 cl_int error; Image2DArray() local 4244 cl_int error; Image3D() local 4377 cl_int error; Image3DGL() local 4461 cl_int error; ImageGL() local 4545 cl_int error; BufferRenderGL() local 4675 cl_int error; Sampler() local 5032 cl_int error; Program() local 5068 cl_int error; Program() local 5101 cl_int error; Program() local 5147 cl_int error; Program() local 5203 cl_int error; Program() local 5494 cl_int error; Kernel() local 5523 cl_int error; CommandQueue() local 5553 cl_int error; CommandQueue() local 5583 cl_int error; CommandQueue() local 5648 cl_int error; getDefault() local 6188 cl_int error; enqueueMapBuffer() local 6219 cl_int error; enqueueMapImage() local 6635 cl_int error; Buffer() local 6686 cl_int error; Buffer() local 6733 cl_int error; enqueueReadBuffer() local 6752 cl_int error; enqueueWriteBuffer() local 6772 cl_int error; enqueueMapBuffer() local 6799 cl_int error; enqueueUnmapMemObject() local 6830 cl_int error; enqueueCopyBuffer() local 6848 cl_int error; copy() local 6864 cl_int error; copy() local 6881 cl_int error; copy() local 6920 cl_int error; copy() local 6957 cl_int error; enqueueReadBufferRect() local 6993 cl_int error; enqueueWriteBufferRect() local 7028 cl_int error; enqueueCopyBufferRect() local 7061 cl_int error; enqueueReadImage() local 7091 cl_int error; enqueueWriteImage() local 7119 cl_int error; enqueueCopyImage() local 7145 cl_int error; enqueueCopyImageToBuffer() local 7171 cl_int error; enqueueCopyBufferToImage() local 7191 cl_int error; flush() local 7203 cl_int error; finish() local [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_getcpuclockid/ |
H A D | 1-2.c | 31 int error; in main() 38 error = clock_getcpuclockid(1, &clockid); in main() 39 if (error != 0) { in main() 40 printf("clock_getcpuclockid() failed: %s\n", strerror(error)); in main()
|
/kernel/linux/linux-5.10/kernel/power/ |
H A D | snapshot.c | 648 int error; in memory_bm_create() local 653 error = create_mem_extents(&mem_extents, gfp_mask); in memory_bm_create() 654 if (error) in memory_bm_create() 655 return error; in memory_bm_create() 663 error = -ENOMEM; in memory_bm_create() 673 return error; in memory_bm_create() 776 int error; in memory_bm_set_bit() local 778 error = memory_bm_find_bit(bm, pfn, &addr, &bit); in memory_bm_set_bit() 779 BUG_ON(error); in memory_bm_set_bit() 787 int error; in mem_bm_set_bit_check() local 800 int error; memory_bm_clear_bit() local 819 int error; memory_bm_test_bit() local 1074 int error = 0; create_basic_memory_bitmaps() local 1696 int error; hibernate_preallocate_memory() local 2098 int error; snapshot_read_next() local 2189 int error; load_header() local 2455 int error; prepare_image() local 2584 int error = 0; snapshot_write_next() local [all...] |
/third_party/backends/backend/pixma/ |
H A D | pixma_mp150.c | 63 if ((error = (x)) < 0) \ 64 return error; \ 68 error = handle_interrupt (s, x); \ 71 if (error != PIXMA_ECANCELED && error < 0) \ 72 return error; \ 805 int error, status_len; in query_status_3() local 811 return error; in query_status_3() 819 int error, status_len; in query_status() local 827 return error; in query_status() 856 int error, datalen; read_image_block() local 901 int error; read_error_info() local 1045 int error, tmo = 120; /* some scanners need a long timeout */ wait_until_ready() local 1424 int error = 0, tmo; mp150_scan() local 1557 int error; mp150_fill_buffer() local 1637 int error; mp150_finish_scan() local 1687 int error; mp150_get_status() local [all...] |