/external/bluetooth/bluedroid/stack/include/ |
btm_api.h | 91 /* Structure returned with Vendor Specific Command complete callback */ 101 ** Device Control and General Callback Functions 103 /* Callback function for when device status changes. Appl must poll for 121 /* Callback function for when a vendor specific event occurs. The length and 128 /* General callback function for notifying an application that a synchronous 133 /* VSC callback function for notifying an application that a synchronous 138 /* Callback for apps to check connection and inquiry filters. 586 ** is returned in the results callback if registered. 633 /* Structure returned with inquiry complete callback */ 660 ** Device Discovery Callback Function [all...] |
port_api.h | 96 ** Define the callback function prototypes. Parameters are specific 109 ** Define events that registered application can receive in the callback 205 ** p_mgmt_cb - pointer to callback function to receive 252 ** Description Set event callback the specified connection. 255 ** p_callback - address of the callback function which should 278 ** Description Set event data callback the specified connection. 281 ** p_callback - address of the callback function which should 417 ** application will call this function after a callback 422 ** callback. 537 ** callback [all...] |
/external/skia/legacy/src/animator/ |
SkScriptTokenizer.cpp | 464 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) { 465 if ((*callBack)->getType() != SkScriptCallBack::kUnbox) 467 return (*callBack)->getReturnType(0, &scriptValue); 814 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) { 815 if ((*callBack)->getType() != SkScriptCallBack::kFunction) 818 success = (*callBack)->getReference(functionName, functionNameLen, &callbackResult) [all...] |
/external/skia/src/animator/ |
SkScriptTokenizer.cpp | 464 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) { 465 if ((*callBack)->getType() != SkScriptCallBack::kUnbox) 467 return (*callBack)->getReturnType(0, &scriptValue); 814 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) { 815 if ((*callBack)->getType() != SkScriptCallBack::kFunction) 818 success = (*callBack)->getReference(functionName, functionNameLen, &callbackResult) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/ |
NativeCryptoTest.java | 636 SSLHandshakeCallbacks callback) 643 NativeCrypto.SSL_shutdown(ssl, fd, callback); 753 SSLHandshakeCallbacks callback) 762 super.afterHandshake(session, ssl, context, socket, fd, callback); 786 TestSSLHandshakeCallbacks callback 799 session = NativeCrypto.SSL_do_handshake(s, fd, callback, timeout, client, 808 hooks.afterHandshake(session, s, c, socket, fd, callback); 810 return callback; [all...] |
/external/chromium/net/spdy/ |
spdy_proxy_client_socket.cc | 85 int SpdyProxyClientSocket::Connect(CompletionCallback* callback 101 read_callback_ = callback; 151 CompletionCallback* callback) { 170 DCHECK(callback); 171 read_callback_ = callback; 200 CompletionCallback* callback) { 212 write_callback_ = callback; 232 write_callback_ = callback; 369 // we are notified by a callback when the SYN_REPLY frame arrives 503 // we invoke the connect callback [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
CheckerDocumentation.cpp | 31 /// This checker documents the callback functions checkers can use to implement 64 /// callback can be specialized to be called with any subclass of Stmt. 66 /// See checkBranchCondition() callback for performing custom processing of 77 /// callback can be specialized to be called with any subclass of Stmt. 104 /// beginning of your callback function. 142 /// This callback should be used by the checkers to aggressively clean 165 /// This callback should be used in cases when a checker needs to have a 187 /// state. This callback allows a checker to provide domain specific knowledge 202 /// condition at a branch. The callback allows checkers track the assumptions 244 /// Note that this callback will not be invoked unles [all...] |
/external/libselinux/include/selinux/ |
avc.h | 182 * If @msgprefix is NULL, use "uavc". If any callback 184 * for those callbacks (see the definition of the callback 344 * security event callback facility 358 * avc_add_callback - Register a callback for security events. 359 * @callback: callback function 366 * Register a callback function for events in the set @events 370 * -%1 if insufficient memory exists to add the callback. 372 int avc_add_callback(int (*callback) 417 * callback is used to print the message [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineCodeEmitter.h | 68 /// startFunction - This callback is invoked when the specified function is 74 /// finishFunction - This callback is invoked when the specified function has 81 /// emitByte - This callback is invoked when a byte needs to be written to the 89 /// emitWordLE - This callback is invoked when a 32-bit word needs to be 100 /// emitWordLEInto - This callback is invoked when a 32-bit word needs to be 111 /// emitWordBE - This callback is invoked when a 32-bit word needs to be 125 /// emitDWordLE - This callback is invoked when a 64-bit word needs to be 143 /// emitDWordBE - This callback is invoked when a 64-bit word needs to be 177 /// emitULEB128Bytes - This callback is invoked when a ULEB128 needs to be 188 /// emitSLEB128Bytes - This callback is invoked when a SLEB128 needs to b [all...] |
/frameworks/base/docs/html/training/basics/activity-lifecycle/ |
starting.jd | 41 callback methods that correspond to specific stages of its 42 lifecycle. There is a sequence of callback methods that start up an activity and a sequence of 43 callback methods that tear down an activity.</p> 46 handle the first lifecycle callback that creates a new instance of your activity.</p> 55 each callback method moves the activity state one step toward the top. The top of the pyramid is the 67 lifecycle, expressed as a step pyramid. This shows how, for every callback used to take 68 the activity a step toward the Resumed state at the top, there's a callback method 89 <p class="table-caption"><strong>Table 1.</strong> Activity lifecycle state pairs and callback 134 the next state by calling the next lifecycle callback method. That is, after the system calls 259 <p>While the activity's first lifecycle callback is {@link android.app.Activity#onCreat [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
MessageViewFragment.java | 50 implements MoveMessageToDialog.Callback, OnMenuItemClickListener { 93 public interface Callback extends MessageViewFragmentBase.Callback { 125 implements Callback { 127 public static final Callback INSTANCE = new EmptyCallback(); 138 private Callback mCallback = EmptyCallback.INSTANCE; 274 public void setCallback(Callback callback) { 275 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback; [all...] |
/packages/apps/Nfc/nxp/jni/ |
com_android_nfc_NativeNfcSecureElement.cpp | 88 /* Set Secure Element mode callback*/ 247 /* Wait for callback response */ 319 /* Wait for callback response */ 333 /* Wait for callback response */ 361 /* Wait for callback response */ 391 /* Wait for callback response */ 433 /* Wait for callback response */ 515 /* Wait for callback response */ 544 /* Wait for callback response */ 586 /* Wait for callback response * [all...] |
/external/bluetooth/bluedroid/stack/gatt/ |
gatt_main.c | 373 ** Description This callback function is called by L2CAP to indicate that 404 /* BR/EDR lik, ignore this callback */ 416 /* send callback */ 422 else /* there was an exisiting link, ignore the callback */ 428 /* this is incoming connection or background connection callback */ 554 ** Description This is the L2CAP connect confirm callback function. 606 ** Description This is the L2CAP config confirm callback function. 647 /* send callback */ 665 ** Description This is the L2CAP config indication callback function. 712 /* send callback */ [all...] |
/external/chromium/chrome/browser/sessions/ |
session_service.h | 13 #include "base/callback.h" 146 // Callback from GetSavedSession of GetLastSession. 148 // The contents of the supplied vector are deleted after the callback is 155 // Fetches the contents of the last session, notifying the callback when 156 // done. If the callback is supplied an empty vector of SessionWindows 159 // The created request does NOT directly invoke the callback, rather the 160 // callback invokes OnGotSessionCommands from which we map the 161 // SessionCommands to browser state, then notify the callback. 163 SessionCallback* callback); 165 // Fetches the contents of the current session, notifying the callback whe [all...] |
/external/libnfc-nxp/src/ |
phFriNfc_NdefReg.h | 71 * \name NDEF Registration And Listening callback and node definitions 76 * be present in a single callback function. 80 #define PH_FRINFC_NDEFREG_MAX_RTD 8 /**< Maximum number of RTDs per callback function. */ 84 * \brief NDEF Callback 93 * The underlying type of the callback parameter (void pointer) is \ref phFriNfc_NdefReg_CbParam_t . 95 * \note On systems, requiring non-blocking operation, the user-defined callback function must not block, 113 * \brief Callback Parameter. This parameter is provided to the CB function that serves 117 * All information required to perform the \ref pphFriNfc_Cr_t "callback" operation is contained 131 * The records that matched with the registred RTDs for this callback. 150 itself is written in C and therefore it requires a pure "C" callback that can be provided b [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
ActionBarImpl.java | 94 ActionMode.Callback mDeferredModeDestroyCallback; 441 public ActionMode startActionMode(ActionMode.Callback callback) { 447 ActionModeImpl mode = new ActionModeImpl(callback); 470 final ActionBar.TabListener callback = tabi.getCallback(); local 472 if (callback == null) { 473 throw new IllegalStateException("Action Bar Tab must have a Callback"); 838 public class ActionModeImpl extends ActionMode implements MenuBuilder.Callback { 839 private ActionMode.Callback mCallback; 843 public ActionModeImpl(ActionMode.Callback callback) [all...] |
/frameworks/base/docs/html/distribute/promote/ |
device-art.jd | 507 * Loads an image from a data URI. The callback will be called with the <img> once 510 function loadImageFromUri(uri, callback) { 511 callback = callback || function(){}; 516 callback(img); 519 callback(null); 524 * Loads a set of images (organized by ID). Once all images are loaded, the callback 527 function loadImageResources(images, callback) { 535 (callback || function(){})(imageResources); 536 callback = null [all...] |
/frameworks/wilhelm/tests/examples/ |
slesTestDecodeToBuffQueue.cpp | 109 /* Structure for passing information to callback function */ 126 /* Callback for "prefetch" events, here used to detect audio resource opening errors */ 145 /* Callback for "playback" events, i.e. event happening during decoding */ 171 /* Callback for decoding buffer queue events */ 204 // buffer queue callback return to proceed with the decoding. 217 /* Example: display duration in callback where we use the callback context for the SLPlayItf*/ 222 fprintf(stdout, "Content duration is unknown (in dec callback)\n"); 224 fprintf(stdout, "Content duration is %ums (in dec callback)\n", 230 /* Example: display position in callback where we use the callback context for the SLPlayItf* [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
introspect.h | 53 * of these at once, the callback will be called multiple times, once for 54 * each object. When the list has been exhausted, the callback will be called 61 * If an error occurs, the callback will be called without and information 65 * duration of the callback. If they are required after the callback is 93 * All three method use the same callback and will provide a pa_sink_info or 226 /** Callback prototype for pa_context_get_sink_info_by_name() and friends */ 255 /** Callback prototype for pa_context_get_source_info_by_name() and friends */ 279 /** Callback prototype for pa_context_get_server_info() */ 294 /** Callback prototype for pa_context_get_module_info() and firends* [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 53 * of these at once, the callback will be called multiple times, once for 54 * each object. When the list has been exhausted, the callback will be called 61 * If an error occurs, the callback will be called without and information 65 * duration of the callback. If they are required after the callback is 93 * All three method use the same callback and will provide a pa_sink_info or 226 /** Callback prototype for pa_context_get_sink_info_by_name() and friends */ 255 /** Callback prototype for pa_context_get_source_info_by_name() and friends */ 279 /** Callback prototype for pa_context_get_server_info() */ 294 /** Callback prototype for pa_context_get_module_info() and firends* [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 53 * of these at once, the callback will be called multiple times, once for 54 * each object. When the list has been exhausted, the callback will be called 61 * If an error occurs, the callback will be called without and information 65 * duration of the callback. If they are required after the callback is 93 * All three method use the same callback and will provide a pa_sink_info or 226 /** Callback prototype for pa_context_get_sink_info_by_name() and friends */ 255 /** Callback prototype for pa_context_get_source_info_by_name() and friends */ 279 /** Callback prototype for pa_context_get_server_info() */ 294 /** Callback prototype for pa_context_get_module_info() and firends* [all...] |
/external/chromium/net/socket/ |
socket_test_util.h | 15 #include "base/callback.h" 331 void SetCompletionCallback(CompletionCallback* callback) { 332 callback_ = callback; 406 // called which will cause the write callback to be invoked, and will then 408 // causes the read callback to be invoked, and will then stop. Then current 451 // callback will not be invoked until its sequence number is reached. 571 net::CompletionCallback* callback) = 0; 573 net::CompletionCallback* callback) = 0; 578 virtual int Connect(net::CompletionCallback* callback) = 0; 596 void RunCallbackAsync(net::CompletionCallback* callback, int result) [all...] |
/frameworks/base/core/java/android/app/ |
LoaderManager.java | 60 * Callback interface for a client to interact with the manager. 129 * <p>In either case, the given callback is associated with the loader, and 133 * callback {@link LoaderCallbacks#onLoadFinished} will 142 * @param callback Interface the LoaderManager will call to report about 146 LoaderManager.LoaderCallbacks<D> callback); 154 * its work. The callback will be delivered before the old loader 160 * @param callback Interface the LoaderManager will call to report about 164 LoaderManager.LoaderCallbacks<D> callback); 311 // our data, and the owner has a new callback... so 544 LoaderManager.LoaderCallbacks<Object> callback) { [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothGatt.java | 183 * Callback reporting an LE scan result. 598 * Register an application callback to start using GATT. 600 * <p>This is an asynchronous call. The callback {@link BluetoothGattCallback#onAppRegistered} 605 * @param callback GATT callback handler that will receive asynchronous callbacks. 606 * @return If true, the callback will be called to notify success or failure, 609 private boolean registerApp(BluetoothGattCallback callback) { 613 mCallback = callback; 648 * {@link BluetoothGattCallback#onConnectionStateChange} callback will be 666 /*package*/ boolean connect(Boolean autoConnect, BluetoothGattCallback callback) { [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
LoaderManager.java | 41 * Callback interface for a client to interact with the manager. 110 * <p>In either case, the given callback is associated with the loader, and 114 * callback {@link LoaderCallbacks#onLoadFinished} will 123 * @param callback Interface the LoaderManager will call to report about 127 LoaderManager.LoaderCallbacks<D> callback); 135 * its work. The callback will be delivered before the old loader 141 * @param callback Interface the LoaderManager will call to report about 145 LoaderManager.LoaderCallbacks<D> callback); 296 // our data, and the owner has a new callback... so 488 LoaderManager.LoaderCallbacks<Object> callback) { [all...] |