Searched refs:message (Results 226 - 250 of 3133) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/Shared/linux/SeccompFilters/
H A DSeccompBroker.cpp75 struct msghdr message; local
76 memset(&message, 0, sizeof(message));
83 message.msg_iov = &iov;
84 message.msg_iovlen = 1;
88 message.msg_control = control;
89 message.msg_controllen = sizeof(control);
90 memset(message.msg_control, 0, message.msg_controllen);
92 struct cmsghdr* cmsg = CMSG_FIRSTHDR(&message);
105 struct msghdr message; local
[all...]
/macosx-10.9.5/mail_cmds-29/mail/
H A Dcmd1.c67 struct message *mp;
75 mp = &message[screen * size];
76 if (mp >= &message[msgCount])
77 mp = &message[msgCount - size];
78 if (mp < &message[0])
79 mp = &message[0];
81 mesg = mp - &message[0];
82 if (dot != &message[n-1])
84 for (; mp < &message[msgCount]; mp++) {
153 * Print out the headlines for each message
[all...]
H A Dlist.c55 * Convert the user string of message numbers and
66 struct message *mp;
75 for (mp = &message[0]; mp < &message[msgCount]; mp++)
77 *ip++ = mp - &message[0] + 1;
84 * line in the message structure. Return 0 on success, -1
126 struct message *mp;
130 valdot = dot - &message[0] + 1;
156 if (f == MDELETED || (message[i - 1].m_flag & MDELETED) == 0)
184 } while ((message[
[all...]
/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCACM/DataDriver/Headers/
H A DAppleUSBCDCACMDataUser.h54 UInt16 message; member in struct:__anon25
/macosx-10.9.5/CPANInternal-140/JSON-RPC-1.03/t/JSON/RPC/Test/Handler/
H A DSum.pm22 message => "short description of the error",
/macosx-10.9.5/Heimdal-323.92.1/lib/kadm5/
H A Dkadm5-pwcheck.h58 char *message,
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcapitst.h32 static void doAssert(int condition, const char *message);
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFireWireMagicMatchingNub.h38 virtual IOReturn message( UInt32 type, IOService * provider, void * argument );
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DErrorConstructor.cpp52 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
54 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
65 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
67 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
H A DNativeErrorConstructor.cpp54 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
57 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
68 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); local
70 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/SecureObjectSync/
H A DSOSUserKeygen.h17 void debugDumpUserParameters(CFStringRef message, CFDataRef parameters);
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Ddebugging.c121 const char *file, int line, CFStringRef message){
122 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ %s %@\n"), scope ? scope : CFSTR(""), function, message);
173 CFStringRef message = CFStringCreateWithFormatAndArguments(kCFAllocatorDefault, NULL, format, args); local
175 CFStringPerformWithCString(message, ^(const char *utf8Str) {
178 CFReleaseSafe(message);
201 CFStringRef message = CFStringCreateWithFormatAndArguments(kCFAllocatorDefault, NULL, format, args); local
203 CFStringPerformWithCString(message, ^(const char *utf8Str) {
206 CFReleaseSafe(message);
219 const char *file, int line, CFStringRef message)
225 handler(level, scope, function, file, line, message);
218 __security_log_msg(const char *level, CFStringRef scope, const char *function, const char *file, int line, CFStringRef message) argument
243 CFStringRef message = CFStringCreateWithFormatAndArguments( local
257 CFStringRef message = CFStringCreateWithFormatAndArguments( local
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Ddebugging.c121 const char *file, int line, CFStringRef message){
122 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ %s %@\n"), scope ? scope : CFSTR(""), function, message);
173 CFStringRef message = CFStringCreateWithFormatAndArguments(kCFAllocatorDefault, NULL, format, args); local
175 CFStringPerformWithCString(message, ^(const char *utf8Str) {
178 CFReleaseSafe(message);
201 CFStringRef message = CFStringCreateWithFormatAndArguments(kCFAllocatorDefault, NULL, format, args); local
203 CFStringPerformWithCString(message, ^(const char *utf8Str) {
206 CFReleaseSafe(message);
219 const char *file, int line, CFStringRef message)
225 handler(level, scope, function, file, line, message);
218 __security_log_msg(const char *level, CFStringRef scope, const char *function, const char *file, int line, CFStringRef message) argument
243 CFStringRef message = CFStringCreateWithFormatAndArguments( local
257 CFStringRef message = CFStringCreateWithFormatAndArguments( local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/encryptedmedia/
H A DMediaKeyMessageEvent.cpp47 , m_message(initializer.message)
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseBase.h40 void logErrorMessage(const String& message);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/ObjC/
H A DDOMTestActiveDOMObject.h38 - (void)postMessage:(NSString *)message;
/macosx-10.9.5/WebCore-7537.78.1/dom/default/
H A DPlatformMessagePortChannel.h44 // PlatformMessagePortChannel is a platform-dependent interface to the remote side of a message channel.
54 PassRefPtr<SerializedScriptValue> message() { return m_message; } function in class:WebCore::PlatformMessagePortChannel::EventData
58 EventData(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray>);
73 bool appendAndCheckEmpty(PassOwnPtr<PlatformMessagePortChannel::EventData> message) argument
75 return m_queue.appendAndCheckEmpty(message);
105 // Reference to the message queue for the (local) entangled port.
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DValidationMessageClient.h39 // Show validation message for the specified anchor element. An
40 // implementation of this function may hide the message automatically after
42 virtual void showValidationMessage(const Element& anchor, const String& message) = 0;
44 // Hide validation message for the specified anchor if the message for the
48 // Returns true if the validation message for the specified anchor element
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DGStreamerUtilities.cpp39 ASSERT_WITH_MESSAGE(gstInitialized, "GStreamer initialization failed: %s", error ? error->message : "unknown error occurred");
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/soup/
H A DDownloadSoupErrors.h35 WebCore::ResourceError platformDownloadDestinationError(const WebCore::ResourceResponse&, const String& message);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dmsgcat.h36 *\li It's very important that message catalogs work, even if only the
73 * Open a message catalog.
79 * the default_text will be returned, ensuring that some message text
92 * Close a message catalog.
102 *\li *msgcatp is a valid message catalog or is NULL.
106 *\li All resources associated with the message catalog are released.
112 isc_msgcat_get(isc_msgcat_t *msgcat, int set, int message,
115 * Get message 'message' from message se
[all...]
/macosx-10.9.5/eap8021x-180/eapolclient.tproj/
H A DAlert.h45 char * title, char * message);
/macosx-10.9.5/groff-38/groff/src/preproc/eqn/
H A Deqn.h42 void lex_error(const char *message,
/macosx-10.9.5/launchd-842.92.1/SystemStarter/
H A DSystemStarter.h48 void CF_syslog(int level, CFStringRef message, ...);
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dmsgcat.h36 *\li It's very important that message catalogs work, even if only the
73 * Open a message catalog.
79 * the default_text will be returned, ensuring that some message text
92 * Close a message catalog.
102 *\li *msgcatp is a valid message catalog or is NULL.
106 *\li All resources associated with the message catalog are released.
112 isc_msgcat_get(isc_msgcat_t *msgcat, int set, int message,
115 * Get message 'message' from message se
[all...]

Completed in 147 milliseconds

1234567891011>>