Searched refs:callback (Results 176 - 200 of 899) sorted by relevance

1234567891011>>

/macosx-10.10.1/IOKitUser-1050.1.21/hid.subproj/
H A DIOHIDManager.h250 @abstract Registers a callback to be used a device is enumerated.
253 @param callback Pointer to a callback method of type
255 @param context Pointer to data to be passed to the callback.
260 IOHIDDeviceCallback callback,
265 @abstract Registers a callback to be used when any enumerated device is
269 @param callback Pointer to a callback method of type
271 @param context Pointer to data to be passed to the callback.
276 IOHIDDeviceCallback callback,
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/Keychain/
H A DKDSecCircle.h42 -(void)addChangeCallback:(dispatch_block_t)callback;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_context.cpp97 m_callbackForMessageFromInjectedBundle.callback = nullptr;
368 void EwkContext::setMessageFromInjectedBundleCallback(Ewk_Context_Message_From_Injected_Bundle_Cb callback, void* userData) argument
372 if (m_callbackForMessageFromInjectedBundle.callback == callback)
375 if (!m_callbackForMessageFromInjectedBundle.callback) {
385 } else if (!callback)
388 m_callbackForMessageFromInjectedBundle.callback = callback;
393 if (!m_callbackForMessageFromInjectedBundle.callback)
403 m_callbackForMessageFromInjectedBundle.callback(nam
444 ewk_context_url_scheme_register(Ewk_Context* ewkContext, const char* scheme, Ewk_Url_Scheme_Request_Cb callback, void* userData) argument
450 impl->requestManager()->registerURLSchemeHandler(String::fromUTF8(scheme), callback, userData); local
519 ewk_context_message_from_injected_bundle_callback_set(Ewk_Context* ewkContext, Ewk_Context_Message_From_Injected_Bundle_Cb callback, void* userData) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DRequestManagerClientEfl.h42 void registerURLSchemeHandler(const String& scheme, Ewk_Url_Scheme_Request_Cb callback, void* userData);
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A DDHCPv6Client.h81 DHCPv6ClientNotificationCallBack callback,
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A DEAPOLClient.h35 EAPOLClientAttach(const char * interface_name, EAPOLClientCallBack callback,
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDOperand.h61 /// @arg callback - A function to call to obtain register values
62 /// @arg arg - An opaque argument to pass to callback
64 EDRegisterReaderCallback callback,
83 /// evaluate - Like evaluate for a callback, but uses a block instead
/macosx-10.10.1/sudo-73/src/
H A Dmkdefaults45 $records[$count++] = [$var, $type, $desc, $values, $callback] if defined($var);
51 $callback = undef;
73 $callback = $_;
86 $records[$count++] = [$var, $type, $desc, $values, $callback] if defined($var);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/sasl/
H A Dsaslclient.tcl34 # information from the client application. The callback can be specified
112 -callback [list [namespace origin SASLCallback] "client blob" $chan]]
176 # and calls the specified callback when it has recieved a complete line.
178 proc Read {chan callback} {
182 eval $callback [list $chan 1 {}]
186 eval $callback [list $chan 0 $line]
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A Ddyld_shared_cache_util.cpp506 segment_callback_t callback; local
510 callback = print_list<x86>;
513 callback = print_map<x86>;
516 callback = print_dependencies<x86>;
519 callback = process_linkedit<x86>;
522 callback = collect_size<x86>;
534 callback = print_list<x86_64>;
537 callback = print_map<x86_64>;
540 callback = print_dependencies<x86_64>;
543 callback
[all...]
/macosx-10.10.1/DiskArbitration-268/diskarbitrationd/
H A DDARequest.h59 DACallbackRef callback );
75 extern void DARequestSetCallback( DARequestRef request, DACallbackRef callback );
/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DLEInsertionList.cpp85 le_bool LEInsertionList::applyInsertions(LEInsertionCallback *callback) argument
88 if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dconvtest.h79 ToUnicodeCase(ConversionCase &cc, UConverterToUCallback callback, const char *option);
82 FromUnicodeCase(ConversionCase &cc, UConverterFromUCallback callback, const char *option);
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWPHYPacketListener.cpp143 void IOFWPHYPacketListener::setCallback( FWPHYPacketCallback callback )
145 fCallback = callback;
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibPHYPacketListener.h67 IOFireWireLibPHYPacketCallback callback );
70 IOFireWireLibPHYPacketSkippedCallback callback );
/macosx-10.10.1/IOKitUser-1050.1.21/
H A DIOMIGMachPort.h57 void IOMIGMachPortRegisterTerminationCallback(IOMIGMachPortRef client, IOMIGMachPortTerminationCallback callback, void *refcon);
60 void IOMIGMachPortRegisterDemuxCallback(IOMIGMachPortRef client, IOMIGMachPortDemuxCallback callback, void *refcon);
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSWeakObjectMapRefPrivate.cpp45 JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef context, void* privateData, JSWeakMapDestroyedCallback callback) argument
49 RefPtr<OpaqueJSWeakObjectMap> map = OpaqueJSWeakObjectMap::create(privateData, callback);
H A DObjcRuntimeExtras.h44 inline void forEachProtocolImplementingProtocol(Class cls, Protocol *target, void (^callback)(Protocol *))
66 // If it implements the protocol, make the callback.
68 callback(protocol);
77 inline void forEachMethodInClass(Class cls, void (^callback)(Method)) argument
82 callback(methods[i]);
86 inline void forEachMethodInProtocol(Protocol *protocol, BOOL isRequiredMethod, BOOL isInstanceMethod, void (^callback)(SEL, const char*)) argument
91 callback(methods[i].name, methods[i].types);
95 inline void forEachPropertyInProtocol(Protocol *protocol, void (^callback)(objc_property_t)) argument
100 callback(properties[i]);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dmodule.h33 #include <security_cdsa_utilities/callback.h>
58 bool unload(const ModuleCallback &callback);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCSSStyleSheet.js130 requestContentFromBackend: function(callback)
138 CSSAgent.getStyleSheetText(this._id, callback);
H A DCallFrame.js83 collectScopeChainVariableNames: function(callback)
97 callback(result);
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapeContainerCheckContextInfo.mm49 - (void (*)(NPP npp, uint32_t, NPBool, void*))callback
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/ResourceCache/cf/
H A DWebResourceCacheManagerCFNet.cpp64 void WebResourceCacheManager::cfURLCacheHostNamesWithCallback(CacheCallback callback) argument
73 callback(WTF::move(hostNames));
/macosx-10.10.1/bootp-298/BSDPClient/
H A DBSDPClient.h174 * The prototype for the List operation callback function.
205 * The prototype for the Select operation callback.
263 * callback.
266 * error occurs, the callback is called with the appropriate status.
270 * callback The function to call when image information is
272 * info The caller-supplied argument to pass to the callback.
279 BSDPClientList(BSDPClientRef client, BSDPClientListCallBack callback,
292 * callback function.
295 * callback The function to call when status is available.
296 * info The caller-supplied argument to pass to the callback
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Durl-proxy.el68 (defun url-proxy (url callback &optional cbargs)
75 (url-http url callback cbargs))

Completed in 492 milliseconds

1234567891011>>