Searched refs:code (Results 26 - 50 of 3126) sorted by relevance

1234567891011>>

/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_error.c19 int code; member in struct:__anon563
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code) argument
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dcname.h4 char code; member in struct:cname
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Dregcname.h2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
41 char code; member in struct:cname
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dkeybound.c42 keybound(int code, int count) argument
46 T((T_CALLED("keybound(%d,%d)"), code, count));
47 if (SP != 0 && code >= 0) {
48 result = _nc_expand_try(SP->_keytry, (unsigned) code, &count, 0);
/macosx-10.10.1/smb-759.0/lib/librpc/
H A Dsrvsvc.acf35 [code] NetrShareGetInfo([comm_status, fault_status] status);
36 [code] NetrShareEnum([comm_status, fault_status] status);
/macosx-10.10.1/swig-12/Lib/octave/
H A Dexception.i5 %define_as(SWIG_exception(code, msg), %block(%error(code, msg); SWIG_fail; ))
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dexception.i4 %define_as(SWIG_exception(code, msg), %block(%error(code, msg); SWIG_fail; ))
/macosx-10.10.1/swig-12/Lib/python/
H A Dexception.i5 %define_as(SWIG_exception(code, msg), %block(%error(code, msg); SWIG_fail; ))
/macosx-10.10.1/swig-12/Lib/ruby/
H A Dexception.i4 %define_as(SWIG_exception(code, msg), %block(%error(code, msg);))
/macosx-10.10.1/swig-12/Lib/tcl/
H A Dexception.i5 %define_as(SWIG_exception(code, msg), %block(%error(code, msg); return TCL_ERROR;))
/macosx-10.10.1/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DMCcommandBreak.tcl7 set code 0
11 set code 3
13 return -code $code
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib512.c26 /* Test case code based on source in a bug report filed by James Bursa on
31 CURLcode code; local
36 code = curl_global_init(CURL_GLOBAL_ALL);
37 if(code == CURLE_OK) {
48 code = curl_easy_setopt(curl2, CURLOPT_URL, URL);
49 if(code == CURLE_OK) {
51 code = curl_easy_perform(curl2);
52 if(code == CURLE_OK)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/regex/
H A Dregerror.c59 regerror(int code, const regex_t* p, char* buf, size_t size) argument
64 if (code++ == REG_VERSIONID)
66 else if (code >= 0 && code < elementsof(reg_error))
67 s = reg_error[code];
85 fatal(regdisc_t* disc, int code, const char* pattern) argument
90 (*disc->re_errorf)(NiL, disc, disc->re_errorlevel, "regular expression: %s: %s", pattern, reg_error[code+1]);
92 (*disc->re_errorf)(NiL, disc, disc->re_errorlevel, "regular expression: %s", reg_error[code+1]);
94 return code;
H A Dregfatal.c33 regfatalpat(regex_t* p, int level, int code, const char* pat) argument
37 regerror(code, p, buf, sizeof(buf));
46 regfatal(regex_t* p, int level, int code) argument
48 regfatalpat(p, level, code, NiL);
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregerror.c2 * regerror - error-code expansion
35 static char unk[] = "*** unknown regex error code 0x%x ***";
37 /* struct to map among codes, code names, and explanations */
39 int code; member in struct:rerr
45 { -1, "", "oops" }, /* explanation special-cased in code */
53 regerror(code, preg, errbuf, errbuf_size)
54 int code; /* error code, or REG_ATOI or REG_ITOA */
65 switch (code) {
67 for (r = rerrs; r->code >
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/library/
H A Dglobrecur.tcl57 set code 0
62 set code [catch {uplevel $depth $cmd} result]
63 if {$code != 0 && $code != 4} break
65 if {$code != 0 && $code != 4} break
67 if {$code != 0 && $code != 4} {
68 if {$code == 3} {
71 if {$code
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregerror.c2 * regerror - error-code expansion
38 static char unk[] = "*** unknown regex error code 0x%x ***";
41 * Struct to map among codes, code names, and explanations.
45 int code; member in struct:rerr
51 { -1, "", "oops" }, /* explanation special-cased in code */
61 int code, /* Error code, or REG_ATOI or REG_ITOA */
72 switch (code) {
74 for (r = rerrs; r->code >= 0; r++) {
79 sprintf(convbuf, "%d", r->code); /*
59 regerror( int code, const regex_t *preg, char *errbuf, size_t errbuf_size) argument
[all...]
H A DtclGet.c48 int code;
55 code = Tcl_GetIntFromObj(interp, &obj, intPtr);
59 return code;
94 int code;
101 code = Tcl_GetLongFromObj(interp, &obj, longPtr);
105 return code;
138 int code;
145 code = Tcl_GetDoubleFromObj(interp, &obj, doublePtr);
149 return code;
182 int code;
47 int code; local
92 int code; local
135 int code; local
178 int code; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/ftp/ftp/
H A Dkauth.c10 * 1. Redistributions of source code must retain the above copyright
45 code = -1;
52 code = (ret == COMPLETE);
/macosx-10.10.1/bc-21/patches/
H A Dpatch-bc__load.c3 @@ -156,7 +156,7 @@ load_code (code)
11 str = code;
/macosx-10.10.1/dtrace-147/libdwarf/
H A Dmalloc_check.h52 void dwarf_malloc_check_alloc_data(void * addr,unsigned char code);
53 void dwarf_malloc_check_dealloc_data(void * addr,unsigned char code);
/macosx-10.10.1/libarchive-30/libarchive/libarchive_fe/
H A Derr.h8 * 1. Redistributions of source code must retain the above copyright
38 void lafe_warnc(int code, const char *fmt, ...);
39 void lafe_errc(int eval, int code, const char *fmt, ...) __LA_DEAD;
/macosx-10.10.1/xnu-2782.1.97/osfmk/kdp/
H A Dkdp.h38 unsigned int code,
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/sdx/
H A Dsdx.tcl22 if { $error } { set code error } { set code ok }
24 return -code $code $return
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A DSecStaticCodePriv.h48 @param code A Code or StaticCode object whose validation should be monitored.
53 Pass NULL to disable callbacks for this code object. The block must be available to
54 be invoked, possibly repeatedly, for as long as the code object exists or it is superseded
59 OSStatus SecStaticCodeSetCallback(SecStaticCodeRef code, SecCSFlags flag, SecCodeCallback *olds, SecCodeCallback callback);
68 @param code A Code or StaticCode object whose validation should be modified.
71 OSStatus SecStaticCodeSetValidationConditions(SecStaticCodeRef code, CFDictionaryRef conditions);
76 Ask for an ongoing static validation using this (static) code object to be cancelled as soon as feasible.
82 @param code A Code or StaticCode object whose validation should be modified.
85 OSStatus SecStaticCodeCancelValidation(SecStaticCodeRef code, SecCSFlags flags);

Completed in 317 milliseconds

1234567891011>>