Searched refs:errors (Results 1 - 25 of 661) sorted by relevance

1234567891011>>

/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_dirhie.h26 CURLcode create_dir_hierarchy(const char *outfile, FILE *errors);
H A Dtool_msgs.h28 void helpf(FILE *errors, const char *fmt, ...);
H A Dtool_msgs.c37 * Emit warning formatted message on configured 'errors' stream unless
55 fputs(WARN_PREFIX, config->global->errors);
68 (void)fwrite(ptr, cut + 1, 1, config->global->errors);
69 fputs("\n", config->global->errors);
74 fputs(ptr, config->global->errors);
85 void helpf(FILE *errors, const char *fmt, ...) argument
90 fputs("curl: ", errors); /* prefix it */
91 vfprintf(errors, fmt, ap);
94 fprintf(errors, "curl: try 'curl --help' "
H A Dtool_dirhie.c51 static void show_dir_errno(FILE *errors, const char *name) argument
56 fprintf(errors, "You don't have permission to create %s.\n", name);
61 fprintf(errors, "The directory name %s is too long.\n", name);
66 fprintf(errors, "%s resides on a read-only file system.\n", name);
71 fprintf(errors, "No space left on the file system that will "
77 fprintf(errors, "Cannot create directory %s because you "
82 fprintf(errors, "Error creating directory %s.\n", name);
94 CURLcode create_dir_hierarchy(const char *outfile, FILE *errors) argument
133 show_dir_errno(errors, dirbuildup);
/macosx-10.10/libclosure-65/tests/
H A Ddriver.c36 int errors = 0; local
40 errors += parameters_example(verbose);
41 errors += result_value_example(verbose);
42 errors += imports_example(verbose);
43 //errors += imports_example2(verbose);
45 errors += import_byref(verbose);
46 errors += import_byref_interim(verbose);
47 errors += import_global(verbose);
50 errors += test_blocks(verbose);
53 errors
[all...]
H A Dobjc.m54 int errors = 0;
74 ++errors;
79 ++errors;
85 if (errors == 0 && verbose) printf("testVerbosely: objc import object test success\n");
87 return errors;
100 int errors = 0;
106 int errors = 0;
109 errors += [to testVerbosely:verbose];
111 return errors;
116 int errors
[all...]
H A Dblock_examples.c81 int errors = 0; local
83 errors += test1(verbose);
84 errors += test2(verbose);
85 errors += test3(verbose);
87 return errors;
/macosx-10.10/ksh-23/ksh/src/cmd/INIT/
H A Drt.sh81 integer tests errors signals lineno=0 skip=0
84 function results # tests errors signals
88 if [[ $style != unknown ]] && (( errors >= 0 ))
90 if (( !failed || errors ))
174 error|errors)
175 errors=$1
184 results $tests $errors
188 results $tests $errors
199 errors=0
206 results $tests $errors
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dantlrplugin.cpp64 const Result *parse(Source source, Result *(Parser::RequirementParser::*rule)(), std::string &errors) argument
71 errors = parser.errors;
72 if (errors.empty())
77 errors = ex.toString() + "\n";
87 const Requirement *fileRequirement(FILE *source, string &errors) argument
88 { return parse<StdioInputStream>(source, &Parser::RequirementParser::requirement, errors); }
91 const Requirement *stringRequirement(string source, string &errors) argument
92 { return parse<StringInputStream>(source, &Parser::RequirementParser::requirement, errors); }
95 const Requirements *fileRequirements(FILE *source, string &errors) argument
99 stringRequirements(string source, string &errors) argument
103 fileGeneric(FILE *source, string &errors) argument
107 stringGeneric(string source, string &errors) argument
[all...]
H A Dantlrplugin.h49 typedef const Requirement *FileRequirement(std::FILE *source, std::string &errors);
51 typedef const Requirements *FileRequirements(std::FILE *source, std::string &errors);
53 typedef const BlobCore *FileGeneric(std::FILE *source, std::string &errors);
55 typedef const Requirement *StringRequirement(std::string source, std::string &errors);
57 typedef const Requirements *StringRequirements(std::string source, std::string &errors);
59 typedef const BlobCore *StringGeneric(std::string source, std::string &errors);
H A Dcserror.cpp25 // cserror.h - extended-diagnostics Code Signing errors
72 OSStatus CSError::cfError(CFErrorRef *errors) const
74 if (errors) // errors argument was specified
75 *errors = CFErrorCreate(NULL, kCFErrorDomainOSStatus, this->osStatus(), this->infoDict());
79 OSStatus CSError::cfError(CFErrorRef *errors, OSStatus rc) argument
81 if (errors)
82 *errors = CFErrorCreate(NULL, kCFErrorDomainOSStatus, rc, NULL);
H A Dcs.h41 #include <security_utilities/errors.h>
100 catch (const CSError &err) { return err.cfError(errors); } \
103 case ENOEXEC: return CSError::cfError(errors, errSecCSBadObjectFormat); \
104 default: return CSError::cfError(errors, err.osStatus()); \
106 catch (const MacOSError &err) { return CSError::cfError(errors, err.osStatus()); } \
107 catch (const SQLite3::Error &err) { return CSError::cfError(errors, dbError(err)); } \
108 catch (const CommonError &err) { return CSError::cfError(errors, SecKeychainErrFromOSStatus(err.osStatus())); } \
109 catch (const std::bad_alloc &) { return CSError::cfError(errors, errSecAllocate); } \
110 catch (...) { return CSError::cfError(errors, errSecCSInternalError); } \
118 catch (const CSError &err) { err.cfError(errors); } \
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dantlrplugin.cpp64 const Result *parse(Source source, Result *(Parser::RequirementParser::*rule)(), std::string &errors) argument
71 errors = parser.errors;
72 if (errors.empty())
77 errors = ex.toString() + "\n";
87 const Requirement *fileRequirement(FILE *source, string &errors) argument
88 { return parse<StdioInputStream>(source, &Parser::RequirementParser::requirement, errors); }
91 const Requirement *stringRequirement(string source, string &errors) argument
92 { return parse<StringInputStream>(source, &Parser::RequirementParser::requirement, errors); }
95 const Requirements *fileRequirements(FILE *source, string &errors) argument
99 stringRequirements(string source, string &errors) argument
103 fileGeneric(FILE *source, string &errors) argument
107 stringGeneric(string source, string &errors) argument
[all...]
H A Dantlrplugin.h49 typedef const Requirement *FileRequirement(std::FILE *source, std::string &errors);
51 typedef const Requirements *FileRequirements(std::FILE *source, std::string &errors);
53 typedef const BlobCore *FileGeneric(std::FILE *source, std::string &errors);
55 typedef const Requirement *StringRequirement(std::string source, std::string &errors);
57 typedef const Requirements *StringRequirements(std::string source, std::string &errors);
59 typedef const BlobCore *StringGeneric(std::string source, std::string &errors);
H A Dcserror.cpp25 // cserror.h - extended-diagnostics Code Signing errors
72 OSStatus CSError::cfError(CFErrorRef *errors) const
74 if (errors) // errors argument was specified
75 *errors = CFErrorCreate(NULL, kCFErrorDomainOSStatus, this->osStatus(), this->infoDict());
79 OSStatus CSError::cfError(CFErrorRef *errors, OSStatus rc) argument
81 if (errors)
82 *errors = CFErrorCreate(NULL, kCFErrorDomainOSStatus, rc, NULL);
H A Dcs.h41 #include <security_utilities/errors.h>
100 catch (const CSError &err) { return err.cfError(errors); } \
103 case ENOEXEC: return CSError::cfError(errors, errSecCSBadObjectFormat); \
104 default: return CSError::cfError(errors, err.osStatus()); \
106 catch (const MacOSError &err) { return CSError::cfError(errors, err.osStatus()); } \
107 catch (const SQLite3::Error &err) { return CSError::cfError(errors, dbError(err)); } \
108 catch (const CommonError &err) { return CSError::cfError(errors, SecKeychainErrFromOSStatus(err.osStatus())); } \
109 catch (const std::bad_alloc &) { return CSError::cfError(errors, errSecAllocate); } \
110 catch (...) { return CSError::cfError(errors, errSecCSInternalError); } \
118 catch (const CSError &err) { err.cfError(errors); } \
[all...]
/macosx-10.10/cups-408/cups/systemv/
H A Dcupstestppd.c116 static int check_constraints(ppd_file_t *ppd, int errors, int verbose,
118 static int check_case(ppd_file_t *ppd, int errors, int verbose);
119 static int check_defaults(ppd_file_t *ppd, int errors, int verbose,
121 static int check_duplex(ppd_file_t *ppd, int errors, int verbose,
123 static int check_filters(ppd_file_t *ppd, const char *root, int errors,
125 static int check_profiles(ppd_file_t *ppd, const char *root, int errors,
127 static int check_sizes(ppd_file_t *ppd, int errors, int verbose, int warn);
128 static int check_translations(ppd_file_t *ppd, int errors, int verbose,
133 static int valid_path(const char *keyword, const char *path, int errors,
153 int warn; /* Which errors t
156 int errors; /* Number of conformance errors */ local
1761 check_constraints(ppd_file_t *ppd, int errors, int verbose, int warn) argument
2075 check_case(ppd_file_t *ppd, int errors, int verbose) argument
2184 check_defaults(ppd_file_t *ppd, int errors, int verbose, int warn) argument
2267 check_duplex(ppd_file_t *ppd, int errors, int verbose, int warn) argument
2337 check_filters(ppd_file_t *ppd, const char *root, int errors, int verbose, int warn) argument
2926 check_profiles(ppd_file_t *ppd, const char *root, int errors, int verbose, int warn) argument
3071 check_sizes(ppd_file_t *ppd, int errors, int verbose, int warn) argument
3368 check_translations(ppd_file_t *ppd, int errors, int verbose, int warn) argument
3840 valid_path(const char *keyword, const char *path, int errors, int verbose, int warn) argument
[all...]
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dclose_tcp.c87 int errors = 0; local
91 errors ++;
95 errors ++;
99 errors ++;
104 errors ++;
112 errors ++;
118 errors ++;
122 errors ++;
141 errors ++;
147 errors
162 int errors = 0; local
[all...]
/macosx-10.10/Heimdal-398.1.2/kadmin/
H A Dtest_util.c51 int i, errors = 0; local
60 errors++;
64 errors++;
68 return errors;
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A DvalidDTD.py10 self.errors = []
15 self.errors.append(msg)
36 if ret != 1 or e.errors:
44 if ret != 0 or not e.errors:
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A DvalidDTD.py10 self.errors = []
15 self.errors.append(msg)
36 if ret != 1 or e.errors:
44 if ret != 0 or not e.errors:
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dtest_hostname.c77 int i, errors = 0; local
89 errors += expand_hostname(context, tests[i].orig_hostname);
92 return errors;
117 int optidx = 0, errors = 0; local
141 errors += expand_hostname(context, *argv++);
142 return errors;
145 errors += test_expand_hostname(context);
149 return errors;
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dgai_strerror.c41 } errors[] = { variable in typeref:struct:gai_error
70 for (g = errors; g->str != NULL; ++g)
/macosx-10.10/cxxfilt-11/
H A Dmerge-lipo34 # Count of errors.
35 my $errors = 0;
44 $errors++;
71 system ("cp", "-p", $_, $destname) == 0 or $errors++;
96 or $errors++;
99 or $errors++;
103 exit ($errors ? 1 : 0);
/macosx-10.10/vim-55/runtime/tools/
H A Defm_perl.pl27 # -f write errors to <errorfile>
34 # Then run vim -q errorfile to edit the errors with Vim.
91 my $errors = 0;
100 $errors++;
111 if ($errors == 1) {
117 $msg = "There were $errors errors.\n";
123 unlink $opt_f unless $errors;
135 -f write errors to <errorfile>
143 Then run 'vim -q errorfile' to edit the errors wit
[all...]

Completed in 224 milliseconds

1234567891011>>