Searched refs:errc (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10/llvmCore-3425.0.34/lib/Object/
H A DError.cpp50 return errc::success;
51 return errc::invalid_argument;
H A DBinary.cpp47 return make_error_code(errc::invalid_argument);
/macosx-10.10/Libc-1044.1.2/include/
H A Derr.h75 void errc(int, int, const char *, ...) __dead2 __printflike(3, 4);
/macosx-10.10/system_cmds-643.1.1/taskpolicy.tproj/
H A Dtaskpolicy.c215 if (ret != 0) errc(EX_NOINPUT, ret, "posix_spawnattr_init");
218 if (ret != 0) errc(EX_NOINPUT, ret, "posix_spawnattr_setflags");
222 if (ret != 0) errc(EX_NOINPUT, ret, "posix_spawnattr_set_qos_clamp_np");
226 if (ret != 0) errc(EX_NOINPUT, ret, "posix_spawn");
/macosx-10.10/xnu-2782.1.97/tools/tests/execperf/
H A Drun.c67 errc(1, ret, "posix_spawn(%s)", newargv[0]);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A Dsystem_error.h124 enum class errc
206 template <> struct is_error_condition_enum<errc> : true_type { }
208 error_code make_error_code(errc e);
209 error_condition make_error_condition(errc e);
486 //enum class errc
487 struct errc { struct in namespace:llvm
612 errc(_ v) : v_(v) {} function in struct:llvm::errc
616 template <> struct is_error_condition_enum<errc> : true_type { };
618 template <> struct is_error_condition_enum<errc::_> : true_type { };
715 inline error_condition make_error_condition(errc _
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DLockFileManager.cpp107 Error = make_error_code(errc::no_space_on_device);
118 if (EC == errc::success)
H A DFileOutputBuffer.cpp65 return make_error_code(errc::operation_not_permitted);
H A DMemoryBuffer.cpp245 return make_error_code(errc::is_a_directory);
352 return make_error_code(errc::not_enough_memory);
/macosx-10.10/text_cmds-88/tr/
H A Dstr.c105 errc(1, EILSEQ, NULL);
225 errc(1, EILSEQ, NULL);
275 errc(1, EILSEQ, NULL);
331 errc(1, EILSEQ, NULL);
/macosx-10.10/system_cmds-643.1.1/newgrp.tproj/
H A Dnewgrp.c182 errc(1, status, "mbr_uid_to_uuid");
186 errc(1, status, "mbr_gid_to_uuid");
190 errc(1, status, "mbr_check_membership");
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Unix/
H A DPathV2.inc124 if (errno != errc::not_enough_memory)
200 if (errno != errc::file_exists)
240 if (errno != errc::no_such_file_or_directory)
286 if (errno != errc::no_such_file_or_directory)
317 return make_error_code(errc::operation_not_permitted);
330 if (ec == errc::no_such_file_or_directory)
425 if (errno == errc::file_exists)
428 if (errno == errc::no_such_file_or_directory &&
442 return make_error_code(errc::no_such_file_or_directory);
507 ec = make_error_code(errc
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DProgram.inc404 return make_error_code(errc::success);
411 return make_error_code(errc::success);
418 return make_error_code(errc::success);
H A DPathV2.inc240 return make_error_code(errc::function_not_supported);
700 // ERROR_HANDLE_EOF is mapped to errc::value_too_large.
716 return make_error_code(errc::invalid_argument);
841 ec = make_error_code(errc::bad_file_descriptor);
/macosx-10.10/perl-103/versioner/
H A Dversioner.c368 if (EXPECT_FALSE((ret = posix_spawnattr_init(&attr)) != 0)) errc(1, ret, "posix_spawnattr_init");
369 if (EXPECT_FALSE((ret = posix_spawnattr_setflags(&attr, POSIX_SPAWN_SETEXEC)) != 0)) errc(1, ret, "posix_spawnattr_setflags");
372 if (EXPECT_FALSE((ret = posix_spawnattr_setbinpref_np(&attr, PREFER32CPULEN, prefer32cpu, &copied)) != 0)) errc(1, ret, "posix_spawnattr_setbinpref_np");
376 errc(1, ret, "posix_spawn: %s", path);
/macosx-10.10/text_cmds-88/nl/
H A Dnl.c168 errc(EXIT_FAILURE, EILSEQ, NULL);
175 errc(EXIT_FAILURE, EILSEQ, NULL);
/macosx-10.10/system_cmds-643.1.1/arch.tproj/
H A Darch.c161 errc(1, ret, "posix_spawnattr_init");
164 errc(1, ret, "posix_spawnattr_setflags");
166 errc(1, ret, "posix_spawnattr_setbinpref_np");
173 errc(1, ret, "posix_spawn%s: %s", (pflag ? "p" : ""), str);
/macosx-10.10/xnu-2782.1.97/tools/tests/zero-to-n/
H A Dzero-to-n.c659 if (ret != 0) errc(1, ret, "posix_spawnattr_init");
662 if (ret != 0) errc(1, ret, "posix_spawnattr_setflags");
665 if (ret != 0) errc(1, ret, "posix_spawnattr_setprocesstype_np");
668 if (ret != 0) errc(1, ret, "posix_spawn");
/macosx-10.10/Libc-1044.1.2/nls/FreeBSD/
H A Dmsgcat.c71 #define NLRETERR(errc) { errno = errc; return (NLERR); }
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Derr.c197 errc(int eval, int code, const char *fmt, ...) function
/macosx-10.10/text_cmds-88/look/
H A Dlook.c180 errc(2, EILSEQ, NULL);
/macosx-10.10/text_cmds-88/csplit/
H A Dcsplit.c239 errc(1, ENAMETOOLONG, NULL);
/macosx-10.10/ruby-106/ruby/
H A Dstring.c5137 const unsigned int errc = -1; local
5186 while ((c = trnext(&trsrc, enc)) != errc) {
5188 trans[c] = errc;
5195 while ((c = trnext(&trrepl, enc)) != errc)
5199 if (trans[i] != errc) {
5208 trans[i] = errc;
5210 while ((c = trnext(&trsrc, enc)) != errc) {
5212 if (r == errc) r = trrepl.now;
5248 else c = errc;
5250 else if (cflag) c = errc;
5443 const unsigned int errc = -1; local
[all...]
/macosx-10.10/msdosfs-209.1.1/newfs_msdos.tproj/
H A Dnewfs_msdos.c840 errc(1, error, "%s: wipefs_alloc()", fname);
843 errc(1, error, "%s: wipefs_except_blocks()", fname);
846 errc(1, error, "%s: wipefs_wipe()", fname);
/macosx-10.10/llvmCore-3425.0.34/unittests/Support/
H A DPath.cpp24 Message << #x ": did not return errc::success.\n" \
193 fs::copy_file(Twine(TempPath), Twine(TempPath2)), errc::file_exists);

Completed in 234 milliseconds

12