/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/ |
H A D | 1-3.c | 43 #define ERR_MSG(f, rc) printf("Failed: line: %d func: %s rc: %s (%u)\n", \ macro 54 ERR_MSG("pthread_getscheparam()", ret); in check_param() 79 ERR_MSG("pthread_barrier_wait()", ret); in threaded() 85 ERR_MSG("pthread_barrier_wait()", ret); in threaded() 93 ERR_MSG("pthread_barrier_wait()", ret); in threaded() 99 ERR_MSG("pthread_barrier_wait()", ret); in threaded() 107 ERR_MSG("pthread_barrier_wait()", ret); in threaded() 125 ERR_MSG("pthread_barrier_init()", ret); in main() 131 ERR_MSG("pthread_attr_init()", ret); in main() 137 ERR_MSG("pthread_attr_setinheritsche in main() [all...] |
H A D | 1-2.c | 27 #define ERR_MSG(f, rc) printf("Failed: func %s rc: %s (%u)\n", \ macro 42 ERR_MSG("pthread_setschedparam()", rc); in thread_func() 47 ERR_MSG("pthread_getschedparam()", rc); in thread_func() 72 ERR_MSG("pthread_create()", rc); in main()
|
H A D | 1-1.c | 26 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 37 ERR_MSG("pthread_getschedparam()", rc); in thread_func() 50 ERR_MSG("pthread_create()", rc); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/ |
H A D | 5-1.c | 23 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 35 ERR_MSG("pthread_attr_init()", rc1); in main() 44 ERR_MSG("pthread_attr_setscope()", rc1); in main() 45 ERR_MSG("pthread_attr_setscope()", rc2); in main() 48 ERR_MSG("pthread_attr_setscope()", rc1); in main() 52 ERR_MSG("pthread_attr_setscope()", rc2); in main()
|
/third_party/f2fs-tools/lib/ |
H A D | libf2fs_zoned.c | 217 ERR_MSG("No memory for report zones\n"); in f2fs_report_zone() 228 ERR_MSG("ioctl BLKREPORTZONE failed: errno=%d\n", errno); in f2fs_report_zone() 253 ERR_MSG("No memory for report zones\n"); in f2fs_report_zones() 267 ERR_MSG("ioctl BLKREPORTZONE failed: errno=%d\n", in f2fs_report_zones() 274 ERR_MSG("Unexpected ioctl BLKREPORTZONE result\n"); in f2fs_report_zones() 306 ERR_MSG("No memory for report zones\n"); in f2fs_check_zones() 312 ERR_MSG("No memory for zone capacity list.\n"); in f2fs_check_zones() 332 ERR_MSG("ioctl BLKREPORTZONE failed\n"); in f2fs_check_zones() 393 ERR_MSG("Invalid zones: last sector reported is %llu, expected %llu\n", in f2fs_check_zones() 401 ERR_MSG("Inconsisten in f2fs_check_zones() [all...] |
/third_party/f2fs-tools/fsck/ |
H A D | sload.c | 81 ERR_MSG("cannot allocate security path for %s%s\n", in set_selinux_xattr() 88 ERR_MSG("cannot lookup security context for %s\n", mnt_path); in set_selinux_xattr() 122 ERR_MSG("cannot allocate mount path for %s%s\n", in set_perms_and_caps() 151 ERR_MSG("lstat failure\n"); in set_inode_metadata() 183 ERR_MSG("unknown file type on %s", de->path); in set_inode_metadata() 214 ERR_MSG("No entries in %s\n", full_path); in build_directory() 224 ERR_MSG("Skip: ENOMEM\n"); in build_directory() 316 ERR_MSG("Failed to open file contexts \"%s\"", in configure_files() 323 ERR_MSG("Failed to get android file_contexts\n"); in configure_files() 335 ERR_MSG("Faile in configure_files() [all...] |
H A D | segment.c | 36 ERR_MSG("Not enough space\n"); in reserve_new_block() 41 ERR_MSG("Not enough space for node block\n"); in reserve_new_block() 47 ERR_MSG("Not enough space\n"); in reserve_new_block() 52 ERR_MSG("Not enough space for node block\n"); in reserve_new_block() 73 ERR_MSG("Can't find free block"); in reserve_new_block() 697 ERR_MSG("Not enough space\n"); in f2fs_build_file()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/ |
H A D | 4-1.c | 48 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 72 ERR_MSG("setrlimit()", errno); in child() 86 ERR_MSG("malloc()", errno); in child() 99 ERR_MSG("pthread_cond_init()", rc); in child() 114 ERR_MSG("fork()", errno); in main() 124 ERR_MSG("waitpid()", errno); in main()
|
H A D | 4-3.c | 33 #define ERR_MSG(f, rc) printf("Failed: function: %s status: %s(%u)\n", \ macro 46 ERR_MSG("pthread_cond_init()", rc); in main() 52 ERR_MSG("pthread_cond_init() 2", rc); in main()
|
H A D | 1-1.c | 27 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 59 ERR_MSG(f, rc); in main()
|
H A D | 3-1.c | 18 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 54 ERR_MSG(label, rc); in main()
|
/third_party/skia/gm/ |
H A D | gm.h | 50 #define DEF_SIMPLE_GM_CAN_FAIL(NAME, CANVAS, ERR_MSG, W, H) \ 51 DEF_SIMPLE_GM_BG_NAME_CAN_FAIL(NAME, CANVAS, ERR_MSG, W, H, SK_ColorWHITE, SkString(#NAME)) 52 #define DEF_SIMPLE_GM_BG_CAN_FAIL(NAME, CANVAS, ERR_MSG, W, H, BGCOLOR) \ 53 DEF_SIMPLE_GM_BG_NAME_CAN_FAIL(NAME, CANVAS, ERR_MSG, W, H, BGCOLOR, SkString(#NAME)) 54 #define DEF_SIMPLE_GM_BG_NAME_CAN_FAIL(NAME, CANVAS, ERR_MSG, W, H, BGCOLOR, NAME_STR) \ 57 skiagm::DrawResult SK_MACRO_CONCAT(NAME,_GM)(SkCanvas* CANVAS, SkString* ERR_MSG) 67 DEF_SIMPLE_GPU_GM_BG_CAN_FAIL(NAME, GR_CONTEXT, CANVAS, /* ERR_MSG */, W, H, BGCOLOR) { \ 73 #define DEF_SIMPLE_GPU_GM_CAN_FAIL(NAME, GR_CONTEXT, CANVAS, ERR_MSG, W, H) \ 74 DEF_SIMPLE_GPU_GM_BG_CAN_FAIL(NAME, GR_CONTEXT, CANVAS, ERR_MSG, W, H, SK_ColorWHITE) 76 #define DEF_SIMPLE_GPU_GM_BG_CAN_FAIL(NAME, GR_CONTEXT, CANVAS, ERR_MSG, [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/ |
H A D | 7-1.c | 32 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %u errno: %s\n", \ macro 54 ERR_MSG("sigaction()", rc); in main() 67 ERR_MSG("sigpending()", rc); in main() 73 ERR_MSG("sigismember()", rc); in main()
|
H A D | 6-1.c | 27 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %u errno: %s\n", \ macro 46 ERR_MSG("sigaction()", rc); in main() 59 ERR_MSG("sigpending()", rc); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/ |
H A D | 4-1.c | 24 #define ERR_MSG(f, rc) printf("Failed: func: %s rc: %s (%u)\n", \ macro 37 ERR_MSG("pthread_attr_init()", rc); in main() 43 ERR_MSG("pthread_attr_setschedpolicy()", rc); in main()
|
H A D | 5-1.c | 27 #define ERR_MSG(p, f, rc) printf("Failed: %s function: %s error: %s (%u)\n", \ macro 38 ERR_MSG("", "pthread_attr_init()", rc); in set_policy() 45 ERR_MSG(label, "pthread_attr_setschedpolicy()", rc); in set_policy()
|
H A D | common.h | 34 #define ERR_MSG(p, f, rc) \ macro 56 ERR_MSG(p->policy_label, "pthread_getschedparam()", rc); in thread_func() 114 ERR_MSG(p->policy_label, func, rc); in init_attr() 131 ERR_MSG(p->policy_label, "pthread_create()", rc); in create_test_thread()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | webpmux.c | 151 #define RETURN_IF_ERROR(ERR_MSG) \ 153 fprintf(stderr, ERR_MSG); \ 157 #define RETURN_IF_ERROR3(ERR_MSG, FORMAT_STR1, FORMAT_STR2) \ 159 fprintf(stderr, ERR_MSG, FORMAT_STR1, FORMAT_STR2); \ 163 #define ERROR_GOTO1(ERR_MSG, LABEL) \ 165 fprintf(stderr, ERR_MSG); \ 170 #define ERROR_GOTO2(ERR_MSG, FORMAT_STR, LABEL) \ 172 fprintf(stderr, ERR_MSG, FORMAT_STR); \ 177 #define ERROR_GOTO3(ERR_MSG, FORMAT_STR1, FORMAT_STR2, LABEL) \ 179 fprintf(stderr, ERR_MSG, FORMAT_STR [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/ |
H A D | 17-5.c | 33 #define ERR_MSG(f, rc) printf("Failed: %s rc: %d errno: %s\n", \ macro 91 ERR_MSG(label, rc); in main()
|
/third_party/python/Include/internal/ |
H A D | pycore_initconfig.h | 27 #define _PyStatus_ERR(ERR_MSG) \ 31 .err_msg = (ERR_MSG)}
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zutil.h | 46 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
macro 49 return (strm->msg = (char*)ERR_MSG(err), (err))
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | zutil.h | 63 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] macro 66 return (strm->msg = ERR_MSG(err), (err))
|
/third_party/node/deps/zlib/ |
H A D | zutil.h | 74 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] macro 77 return (strm->msg = ERR_MSG(err), (err))
|
/third_party/skia/third_party/externals/zlib/ |
H A D | zutil.h | 67 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] macro 70 return (strm->msg = ERR_MSG(err), (err))
|
/third_party/zlib/ |
H A D | zutil.h | 59 #define ERR_MSG(err) z_errmsg[(err) < -6 || (err) > 2 ? 9 : 2 - (err)] macro 62 return (strm->msg = ERR_MSG(err), (err))
|