Searched refs:msg (Results 151 - 175 of 3411) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tclae/tclae/tests/
H A DtclAEBuild.test80 set err [catch {tclAE::build} msg]
81 list $err $msg
85 catch {tclAE::build "obj \{"} msg
86 regsub {(OSErr )(12345|-1740)} $msg {\1(12345|-1740)} msg
87 list $msg
115 set err [catch {tclAE::send} msg]
116 list $err $msg
136 catch {tclAE::send -q 'ALFA' ownn getd} msg
137 list $msg
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dchroot.test35 list [catch {chroot} msg] $msg
39 list [catch {chroot a b} msg] $msg
43 list [catch {chroot a} msg] $msg
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/tests/visualtests/
H A DtestFull.tcl70 set msg "Image $count: $fname Format: $fmt $sep (Options: $opt)"
71 P $msg
81 set msg "Image $count.1: $fname Format: $fmt $sep (Read from file 1)"
82 ui_addphoto $ph $msg
88 set msg "Image $count.2: $fname Format: $fmt $sep (Read from file 2)"
89 ui_addphoto $ph $msg
96 set msg "Image $count.3: $fname Format: $fmt $sep (Read as binary 1)"
97 ui_addphoto $ph $msg
103 set msg "Image $count.4: $fname Format: $fmt $sep (Read as binary 2)"
104 ui_addphoto $ph $msg
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dmnkytst.cpp49 UnicodeString msg; local
51 msg += s;
52 msg += " and ";
53 msg += t;
54 msg += " round trip comparison failed";
55 msg += (UnicodeString) " (result " + result + ", reverse Result " + revResult + ")";
57 errln(msg);
113 UnicodeString msg; local
122 msg += "CollationKey(";
123 msg
179 UnicodeString msg; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/scr031/
H A Dchk.xa5 msg()
76 msg "CLEANING UP FROM THE LAST RUN."
80 msg "BUILDING THE CONFIGURATION FILE."
99 msg "BUILDING CLIENT"
108 msg "BUILDING SERVER #1"
118 msg "BUILDING SERVER #2"
128 msg "BUILDING THE RESOURCE MANAGER."
131 msg "BUILDING THE LOG DEVICE."
158 msg "BOOTING TUXEDO."
164 msg "RU
[all...]
/macosx-10.10/OpenPAM-20/openpam/lib/
H A Dopenpam_ttyconv.c64 prompt(const char *msg) argument
83 fputs(msg, stdout);
135 prompt_echo_off(const char *msg) argument
153 ret = prompt(msg);
169 const struct pam_message **msg,
185 switch (msg[i]->msg_style) {
187 aresp[i].resp = prompt_echo_off(msg[i]->msg);
192 aresp[i].resp = prompt(msg[i]->msg);
168 openpam_ttyconv(int n, const struct pam_message **msg, struct pam_response **resp, void *data) argument
[all...]
/macosx-10.10/swig-12/Lib/php/
H A Ddirector.swg149 DirectorException(int code, const char *hdr, const char* msg)
152 if (strlen(msg)) {
154 swig_msg += msg;
160 static void raise(int code, const char *hdr, const char* msg)
162 throw DirectorException(code, hdr, msg);
170 DirectorPureVirtualException(const char* msg)
171 : DirectorException(E_ERROR, "Swig director pure virtual method called", msg)
175 static void raise(const char *msg)
177 throw DirectorPureVirtualException(msg);
184 DirectorMethodException(const char* msg
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/setkey/
H A Dsetkey.c385 struct sadb_msg msg; local
387 msg.sadb_msg_version = PF_KEY_V2;
388 msg.sadb_msg_type = type;
389 msg.sadb_msg_errno = 0;
390 msg.sadb_msg_satype = SADB_SATYPE_UNSPEC;
391 msg.sadb_msg_len = PFKEY_UNIT64(sizeof(msg));
392 msg.sadb_msg_reserved = 0;
393 msg.sadb_msg_seq = 0;
394 msg
404 struct sadb_msg msg; local
480 struct sadb_msg *msg; local
704 struct sadb_msg *msg; local
[all...]
/macosx-10.10/syslog-267/syslogd.tproj/
H A Ddaemon.c113 kern_quota_check(time_t now, asl_msg_t *msg, uint32_t level) argument
117 if (msg == NULL) return VERIFY_STATUS_INVALID_MESSAGE;
139 asl_msg_set_key_val(msg, ASL_KEY_MSG, str);
143 asl_msg_set_key_val(msg, ASL_KEY_LEVEL, lstr);
220 aslmsg_verify(asl_msg_t *msg, uint32_t source, int32_t *kern_post_level, uid_t *uid_out) argument
232 if (msg == NULL) return VERIFY_STATUS_INVALID_MESSAGE;
243 val = asl_msg_get_val_for_key(msg, ASL_KEY_PID);
244 if (val == NULL) asl_msg_set_key_val(msg, ASL_KEY_PID, "0");
250 val = asl_msg_get_val_for_key(msg, ASL_KEY_REF_PID);
255 val = asl_msg_get_val_for_key(msg, ASL_KEY_LEVE
469 list_append_msg(asl_msg_list_t *list, asl_msg_t *msg) argument
724 control_message(asl_msg_t *msg) argument
752 process_message(asl_msg_t *msg, uint32_t source) argument
837 asl_msg_t *msg; local
915 asl_msg_t *msg; local
1137 asl_msg_t *msg; local
1177 launchd_callback(struct timeval *when, pid_t from_pid, pid_t about_pid, uid_t sender_uid, gid_t sender_gid, int priority, const char *from_name, const char *about_name, const char *session_name, const char *msg) argument
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/dlclose-unmap/
H A Dmain.c40 const char* msg = dlerror(); local
41 FAIL("dlopen(\"%s\" RTLD_LAZY) failed but it should have worked: %s", path, msg);
46 const char* msg = dlerror(); local
47 FAIL("dlsym(handle, \"foo\") failed but it should have worked: %s", msg);
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/dlopen-local-and-global/
H A Dmain.c37 const char* msg = dlerror(); local
38 if ( ((mode & RTLD_LOCAL) != 0) && (strstr(msg, "RTLD_LOCAL") != NULL) )
39 XFAIL("dlopen(\"%s\") failed: %s", path, msg);
41 FAIL("dlopen(\"%s\") failed: %s", path, msg);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcintltst.h117 U_CFUNC UBool assertSuccess(const char* msg, UErrorCode* ec);
123 U_CFUNC UBool assertSuccessCheck(const char* msg, UErrorCode* ec, UBool possibleDataError);
132 U_CFUNC UBool assertTrue(const char* msg, int condition);
138 U_CFUNC UBool assertEquals(const char* msg, const char* expectedString,
/macosx-10.10/Libinfo-459/rpc.subproj/
H A Dsvc_auth.c77 * flavorx_auth(rqst, msg)
79 * register struct rpc_msg *msg;
98 * The call rpc message, msg has been obtained from the wire. The msg contains
100 * if the msg is successfully authenticated. If AUTH_OK then the routine also
108 * The caller still owns and is responsible for msg->u.cmb.cred and
109 * msg->u.cmb.verf. The authentication system retains ownership of
116 _authenticate(rqst, msg)
118 struct rpc_msg *msg;
122 rqst->rq_cred = msg
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPSearchResult.cpp17 LDAPMessage *msg) : LDAPMsg(msg){
20 entry = new LDAPEntry(req->getConnection(), msg);
24 msg,&srvctrls);
16 LDAPSearchResult(const LDAPRequest *req, LDAPMessage *msg) argument
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestshm.h21 char msg[1024]; member in struct:mbox
H A Dtestshmproducer.c32 static void msgput(int boxnum, char *msg) argument
34 apr_cpystrn(boxes[boxnum].msg, msg, strlen(msg) + 1);
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib1500.c37 CURLMsg *msg; local
72 msg = curl_multi_info_read(multi, &still_running);
73 if(msg)
76 i = msg->data.result;
/macosx-10.10/eap8021x-198/EAPOLController.bproj/
H A Dserver.h37 server_handle_request(CFMachPortRef port, void *msg, CFIndex size, void *info);
/macosx-10.10/postfix-255/postfix/src/global/
H A Dtimed_ipc.c37 #include <msg.h>
/macosx-10.10/postfix-255/postfix/src/util/
H A Ddummy_read.c50 #include <msg.h>
H A Ddummy_write.c50 #include <msg.h>
/macosx-10.10/rsync-45/rsync/support/
H A Dlogfilter22 my($pid,$msg) = /^(?:$syslog_prefix|$rsyncd_prefix)\[(\d+)\]:? (.*)/o;
24 my($mod_spec) = $msg =~ /^rsync (?:on|to) (\S+) from /;
/macosx-10.10/swig-12/Lib/typemaps/
H A Dexception.swg27 #define %error(code,msg...) SWIG_Error(code, msg)
28 #define %type_error(msg...) SWIG_Error(SWIG_TypeError, msg)
34 %define_as(SWIG_exception_fail(code, msg), %block(%error(code, msg); SWIG_fail))
36 %define_as(SWIG_contract_assert(expr, msg), if (!(expr)) { %error(SWIG_RuntimeError, msg); SWIG_fail; } else)
/macosx-10.10/syslog-267/libsystem_asl.tproj/include/
H A Dasl_msg.h105 asl_msg_t *asl_msg_retain(asl_msg_t *msg) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
106 void asl_msg_release(asl_msg_t *msg) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
108 int asl_msg_set_key_val(asl_msg_t *msg, const char *key, const char *val) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
109 int asl_msg_set_key_val_op(asl_msg_t *msg, const char *key, const char *val, uint32_t op) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
110 void asl_msg_unset(asl_msg_t *msg, const char *key) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
111 void asl_msg_unset_index(asl_msg_t *msg, uint32_t n) __OSX_AVAILABLE_STARTING(__MAC_10_10, __IPHONE_7_0);
113 asl_msg_t *asl_msg_copy(asl_msg_t *msg) __OSX_AVAILABLE_STARTING(__MAC_10_8, __IPHONE_5_1);
114 asl_msg_t *asl_msg_merge(asl_msg_t *target, asl_msg_t *msg) __OSX_AVAILABLE_STARTING(__MAC_10_8, __IPHONE_5_1);
116 int asl_msg_lookup(asl_msg_t *msg, const char *key, const char **valout, uint16_t *opout) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
117 uint32_t asl_msg_fetch(asl_msg_t *msg, uint32_
[all...]
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/tea.tests/
H A Dall.tcl49 if {[catch {source $file} msg]} {
50 puts $chan $msg

Completed in 443 milliseconds

1234567891011>>