/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.view.Window.Callback.html | 10 android.view.Window.Callback 74 Interface android.view.<A HREF="../../../../reference/android/view/Window.Callback.html" target="_top"><font size="+2"><code>Window.Callback</code></font></A> 86 <A NAME="android.view.Window.Callback.onAttachedToWindow_added()"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/view/Window.Callback.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr> 93 <A NAME="android.view.Window.Callback.onDetachedFromWindow_added()"></A> 94 <nobr><code>void</code> <A HREF="../../../../reference/android/view/Window.Callback.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr>
|
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
ActionBarImplICS.java | 33 final Callback mCallback; 39 public ActionBarImplICS(Activity activity, Callback callback) { 41 mCallback = callback; 99 public void setListNavigationCallbacks(SpinnerAdapter adapter, OnNavigationListener callback) { 101 callback != null ? new OnNavigationListenerWrapper(callback) : null);
|
ActionBarImplBase.java | 78 ActionMode.Callback mDeferredModeDestroyCallback; 104 private Callback mCallback; 106 public ActionBarImplBase(ActionBarActivity activity, Callback callback) { 109 mCallback = callback; 218 public void setListNavigationCallbacks(SpinnerAdapter adapter, OnNavigationListener callback) { 220 mActionView.setCallback(callback); 567 public ActionMode startActionMode(ActionMode.Callback callback) { 573 ActionModeImpl mode = new ActionModeImpl(callback); 921 final ActionBar.TabListener callback = tabi.getCallback(); local [all...] |
/system/core/fastboot/ |
usb_windows.c | 70 int recognized_device(usb_handle* handle, ifc_match_func callback); 272 int recognized_device(usb_handle* handle, ifc_match_func callback) { 316 if (callback(&info) == 0) { 323 static usb_handle *find_usb_device(ifc_match_func callback) { 353 if (recognized_device(handle, callback)) { 370 usb_handle *usb_open(ifc_match_func callback) 372 return find_usb_device(callback);
|
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 128 * run asynchronously. If a callback is provided then 133 * to the callback). This method waits for the operation to complete (if 137 * future from the method; no callback need be supplied. 478 * @param callback callback to invoke when the result is available. may be null. 479 * @param handler the handler on which to invoke the callback, or null for the main thread 485 AccountManagerCallback<String> callback, Handler handler) { 488 return new Future2Task<String>(handler, callback) { 519 * @param callback Callback to invoke when the request completes [all...] |
/external/webkit/Source/WebKit/chromium/src/js/ |
Tests.js | 638 * source frame is setup. Invokes the callback when the condition is satisfied. 640 * @param {function(WebInspector.SourceView,string)} callback 642 TestSuite.prototype.showMainPageScriptSource_ = function(scriptName, callback) 683 callback(view, scriptResource.url); 686 callback(view, scriptResource.url); 692 * the callback when the result message is received and added to the console. 694 * @param {function(string)} callback 696 TestSuite.prototype.evaluateInConsole_ = function(code, callback) 704 callback(commandResult.toMessageElement().textContent); 750 * Waits for script pause, checks expectations, and invokes the callback [all...] |
/frameworks/base/core/jni/ |
android_hardware_Camera.cpp | 99 * associated with the usage of the preview buffer callback. 103 bool mManualCameraCallbackSet; // Whether the callback has been set, used to 104 // reduce unnecessary calls to set the callback. 178 ALOGW("callback on dead camera object"); 203 ALOGV("Using callback buffer from queue of length %d", buffers->size()); 213 ALOGE("Callback buffer was too small! Expected %d bytes, but got %d bytes!", 245 ALOGV("Out of buffers, clearing callback!"); 254 ALOGV("Allocating callback buffer"); 284 ALOGW("callback on dead camera object"); 290 // return data based on callback typ [all...] |
/external/bluetooth/bluedroid/stack/avdt/ |
avdt_scb_act.c | 35 /* This table is used to lookup the callback event that matches a particular 53 /* This table is used to look up the callback event based on the signaling 192 ** Description This function calls the application callback function 485 /* check are buffer for assembling and related callback set */ 679 ** Description This function calls the application callback function 700 /* call application callback */ 712 ** Description This function calls the application callback function 737 /* call application callback */ 748 ** Description This function calls the application callback with a 765 /* call application callback */ [all...] |
/external/chromium/net/disk_cache/ |
backend_impl.h | 58 CompletionCallback* callback); 61 int Init(CompletionCallback* callback); 69 CompletionCallback* callback); 208 // Timer callback to calculate usage statistics. 231 int FlushQueueForTest(CompletionCallback* callback); 235 int RunTaskForTest(Task* task, CompletionCallback* callback); 252 CompletionCallback* callback); 254 CompletionCallback* callback); 255 virtual int DoomEntry(const std::string& key, CompletionCallback* callback); 256 virtual int DoomAllEntries(CompletionCallback* callback); [all...] |
/external/clang/include/clang/Lex/ |
PPCallbacks.h | 43 /// \brief Callback invoked whenever a source file is entered or exited. 52 /// \brief Callback invoked whenever a source file is skipped as the result 64 /// \brief Callback invoked whenever an inclusion directive results in a 81 /// \brief Callback invoked whenever an inclusion directive of 129 /// \brief Callback invoked whenever there was an explicit module-import 144 /// \brief Callback invoked when the end of the main file is reached. 150 /// \brief Callback invoked when a \#ident or \#sccs directive is read. 157 /// \brief Callback invoked when a \#pragma comment directive is read. 162 /// \brief Callback invoked when a \#pragma message directive is read. 168 /// \brief Callback invoked when a \#pragma gcc dianostic push directiv [all...] |
/external/openssl/crypto/bio/ |
bio_lib.c | 87 bio->callback=NULL; 129 if ((a->callback != NULL) && 130 ((i=(int)a->callback(a,BIO_CB_FREE,NULL,0,0L,1L)) <= 0)) 161 return b->callback; 166 b->callback = cb; 201 cb=b->callback; 230 cb=b->callback; 268 cb=b->callback; 301 cb=b->callback; 364 cb=b->callback; [all...] |
/frameworks/base/core/java/android/os/ |
Message.java | 91 /*package*/ Runnable callback; field in class:Message 136 m.callback = orig.callback; 154 * Same as {@link #obtain(Handler)}, but assigns a callback Runnable on 157 * @param callback Runnable that will execute when the message is handled. 160 public static Message obtain(Handler h, Runnable callback) { 163 m.callback = callback; 263 * target/callback of the original message. 304 * Retrieve callback object that will execute when this message is handled [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SampleMediaRouterActivity.java | 31 import android.support.v7.media.MediaRouter.Callback; 86 // This fragment automatically adds or removes a callback whenever the activity 193 MediaRouter.ControlRequestCallback callback = local 216 route.sendControlRequest(intent, callback); 228 MediaRouter.ControlRequestCallback callback = new MediaRouter.ControlRequestCallback() { local 255 route.sendControlRequest(intent, callback); 286 public Callback onCreateCallback() { 287 // Return a custom callback that will simply log all of the route events 289 return new MediaRouter.Callback() {
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/ |
JndiLoginModuleTest.java | 26 import javax.security.auth.callback.Callback; 27 import javax.security.auth.callback.CallbackHandler; 28 import javax.security.auth.callback.NameCallback; 29 import javax.security.auth.callback.PasswordCallback; 30 import javax.security.auth.callback.UnsupportedCallbackException; 122 * {@link org.apache.harmony.auth.module.JndiLoginModule#initialize(javax.security.auth.Subject, javax.security.auth.callback.CallbackHandler, java.util.Map, java.util.Map)}. 293 public void handle(Callback[] callbacks) throws IOException, 311 public void handle(Callback[] callbacks) throws IOException,
|
LdapLoginModuleTest.java | 26 import javax.security.auth.callback.Callback; 27 import javax.security.auth.callback.CallbackHandler; 28 import javax.security.auth.callback.NameCallback; 29 import javax.security.auth.callback.PasswordCallback; 30 import javax.security.auth.callback.UnsupportedCallbackException; 121 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#initialize(javax.security.auth.Subject, javax.security.auth.callback.CallbackHandler, java.util.Map, java.util.Map)}. 299 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { 319 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
|
/external/bluetooth/bluedroid/stack/rfcomm/ |
rfc_l2cap_if.c | 37 ** Define Callback functions to be called by L2CAP 82 ** Description This is a callback function called by L2CAP when 136 ** Description This is a callback function called by L2CAP when 208 ** Description This is a callback function called by L2CAP when 231 ** Description This is a callback function called by L2CAP when 254 ** Description This is a callback function called by L2CAP when 267 ** Description This is a callback function called by L2CAP when 294 ** Description This is a callback function called by L2CAP when 382 ** Description This is a callback function called by L2CAP when
|
/external/chromium/chrome/common/extensions/docs/static/ |
tut_oauth.html | 92 Once you have your background page set up, call the <code>authorize()</code> function to begin the OAuth dance and redirect the user to the OAuth provider. The client library abstracts most of this process, so all you need to do is pass a callback to the <code>authorize()</code> function, and a new tab will open and redirect the user. 102 You don't need to provide any additional logic for storing the token and secret, as this library already stores these values in the browser?s <code>localStorage</code>. If the library already has an access token stored for the current scope, then no tab will be opened. In either case, the callback will be called. 108 Once your specified callback is executed, call the <code>sendSignedRequest()</code> function to send signed requests to your API endpoint(s). <code>sendSignedRequest()</code> takes three arguments: a URI, a callback function, and an optional parameter object. The callback is passed two arguments: the response text and the <code>XMLHttpRequest</code> object that was used to make the request. 114 function callback(resp, xhr) { 126 oauth.sendSignedRequest(url, callback, request); 150 oauth.sendSignedRequest(url, callback, request); 177 callback(xhr, data);
|
/external/chromium/third_party/libevent/ |
evbuffer.c | 72 * This callback is executed when the size of the input buffer changes. 146 /* Now schedule a callback for us when the buffer changes */ 150 /* Invoke the user callback - must always be called last */ 204 * Invoke the user callback if our buffer is drained or below the 225 * The read callback is invoked whenever we read new data. 226 * The write callback is invoked whenever the output buffer is drained. 227 * The error callback is invoked on a write/read error or on EOF. 229 * Both read and write callbacks maybe NULL. The error callback is not 260 * trigger a callback. Reading needs to be explicitly enabled
|
/external/kernel-headers/original/linux/ |
sync.h | 176 * @callback: function pointer to call when fence signals 177 * @callback_data: pointer to pass to @callback 182 sync_callback_t callback; member in struct:sync_fence_waiter 186 sync_callback_t callback) 188 waiter->callback = callback; 303 * @waiter: waiter callback struck 307 * Registers a callback to be called when @fence signals or has an error. 316 * @waiter: waiter callback struck
|
/external/libnfc-nxp/src/ |
phLibNfc_ndef_raw.c | 69 /* Response callback for Check Ndef */ 73 /* Response callback for Ndef Write */ 77 /* Response callback for Ndef Read*/ 81 /* Response callback forNdef Format*/ 93 /* Response callback for Search Ndef Content */ 97 /* Response callback for Ndef Record Type Discovery */ 101 /* Response callback for Check Ndef timer callback */ 104 /*Callback for Presence check call from Chk Ndef*/ 156 /*Previous callback is pending* [all...] |
/external/mdnsresponder/mDNSPosix/ |
ProxyResponder.c | 106 case mStatus_NoError: debugf("Callback: %##s Name Registered", sr->RR_SRV.resrec.name->c); break; 107 case mStatus_NameConflict: debugf("Callback: %##s Name Conflict", sr->RR_SRV.resrec.name->c); break; 108 case mStatus_MemFree: debugf("Callback: %##s Memory Free", sr->RR_SRV.resrec.name->c); break; 109 default: debugf("Callback: %##s Unknown Result %ld", sr->RR_SRV.resrec.name->c, result); break; 161 ServiceCallback, mDNSNULL, 0); // Callback, context, flags 180 case mStatus_NoError: debugf("Callback: %##s Name Registered", rr->resrec.name->c); break; 181 case mStatus_NameConflict: debugf("Callback: %##s Name Conflict", rr->resrec.name->c); break; 182 case mStatus_MemFree: debugf("Callback: %##s Memory Free", rr->resrec.name->c); break; 183 default: debugf("Callback: %##s Unknown Result %ld", rr->resrec.name->c, result); break;
|
/external/neven/Embedded/common/src/b_BasicEm/ |
Context.h | 35 /** callback handler function pointer */ 62 #define bbs_ERR_CALLBACK_ERROR 6 /* a defined error originiating from a callback function */ 108 /** callback function handler */ 169 /****** CALLBACK HANDLING ******/ 171 /** call the callback handler, push error if return value is != bbs_ERR_OK */ 174 /** sets callback handler; returns pointer to previous callback handler 175 * Pointer to callback handler can be NULL (->no handler call) 176 * The callback handler is called by function doCallback
|
/external/qemu/android/ |
async-socket.h | 47 /* Defines client's callback set to monitor socket connection. 59 /* Defines client's callback set to monitor I/O progress. 140 * connect_cb - Client callback to monitor connection state (must not be NULL). 172 * Note that connection result will be reported via callback passed to the 190 * Note that connection result will be reported via callback passed to the 202 * reader_cb - Callback to monitor I/O progress (must not be NULL). 216 * reader_cb - Callback to monitor I/O progress (must not be NULL). 230 * writer_cb - Callback to monitor I/O progress (must not be NULL). 244 * writer_cb - Callback to monitor I/O progress (must not be NULL)
|
/external/qemu/docs/ |
DISPLAY-STATE.TXT | 42 will call the 'dpy_update' callback of all listeners for the display 141 the listener's 'dpy_refresh' callback periodically. The point of this 142 callback is to perform the following: 149 is being displayed, call the 'update' callback that was passed to 190 - the GUI timer kicks in, and calls the 'dpy_refresh()' callback of 193 - the listener callback polls for user events, and calls vga_hw_update() 199 - it then calls the graphics console's 'update' callback 201 - the callback, implemented by the framebuffer hw emulation, checks for 211 - The listener's 'dpy_update' callback is called and receives a pointer
|
/external/v8/src/ |
splay-tree-inl.h | 286 template <typename Config, class Allocator> template <class Callback> 287 void SplayTree<Config, Allocator>::ForEach(Callback* callback) { 288 NodeToPairAdaptor<Callback> callback_adaptor(callback); 293 template <typename Config, class Allocator> template <class Callback> 294 void SplayTree<Config, Allocator>::ForEachNode(Callback* callback) { 303 callback->Call(node);
|