/external/webkit/Source/WebKit/chromium/public/ |
WebFileSystemCallbacks.h | 45 // Callback for WebFileSystem's various operations that don't require 49 // Callback for WebFileSystem::readMetadata. Called with the file metadata 53 // Callback for WebFileSystem::readDirectory. Called with a vector of 54 // file entries in the requested directory. This callback might be called 59 // Callback for WebFrameClient::openFileSystem. Called with a name and
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothHealthCallback.java | 30 * Callback to inform change in registration state of the health 32 * <p> This callback is called on the binder thread (not on the UI thread) 48 * Callback to inform change in channel state. 49 * <p> Its the responsibility of the implementor of this callback to close the 50 * parcel file descriptor when done. This callback is called on the Binder
|
BluetoothGattCallback.java | 25 * Callback indicating when GATT client has connected/disconnected to/from a remote 40 * Callback invoked when the list of remote services, characteristics and descriptors 51 * Callback reporting the result of a characteristic read operation. 64 * Callback indicating the result of a characteristic write operation. 66 * <p>If this callback is invoked while a reliable write transaction is 83 * Callback triggered as a result of a remote characteristic notification. 94 * Callback reporting the result of a descriptor read operation. 107 * Callback indicating the result of a descriptor write operation. 120 * Callback invoked when a reliable write transaction has been completed. 130 * Callback reporting the RSSI for a remote device connection [all...] |
/frameworks/wilhelm/src/android/ |
CallbackProtector.h | 29 * Indicates whether the CallbackProtector is non-NULL and it's safe to enter the callback. 34 * Indicates whether it's safe to enter the callback. It would typically return false 41 * only it returned that it is safe enter the callback; 46 * Called to signal the associated object is about to be destroyed, so whenever a callback is 47 * entered (see enterCb) it will be notified it is pointless to process the callback. This will
|
/packages/apps/Email/src/com/android/email/activity/ |
MessageOrderManager.java | 26 import com.android.email.activity.MessageOrderManager.Callback; 42 * either {@link Callback#onMessagesChanged} or {@link Callback#onMessageNotFound} is called. 47 * If the message list changes (e.g. message removed, new message arrived, etc), {@link Callback} 62 private final Callback mCallback; 76 public interface Callback { 90 * Wrapper for {@link Callback}, which uses {@link DelayedOperations#post(Runnable)} to 96 private class PostingCallback implements Callback { 97 private final Callback mOriginal; 99 private PostingCallback(Callback original) [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
WindowTest.java | 91 * _2. test invocation of Window.Callback#onWindowAttributesChanged. 111 MockWindowCallback callback = new MockWindowCallback(); local 112 mWindow.setCallback(callback); 113 assertFalse(callback.isOnWindowAttributesChangedCalled()); 119 // Test if the callback method is called by system 120 assertTrue(callback.isOnWindowAttributesChangedCalled()); 138 * setCallback: Set the Callback interface for this window. In Window.java, 140 * getCallback: Return the current Callback interface for this window. 157 MockWindowCallback callback = new MockWindowCallback(); local 158 mWindow.setCallback(callback); 511 MockWindowCallback callback; local 543 MockWindowCallback callback = new MockWindowCallback(); local 563 MockWindowCallback callback = new MockWindowCallback(); local 582 MockWindowCallback callback = new MockWindowCallback(); local 619 MockWindowCallback callback = new MockWindowCallback(); local [all...] |
/external/chromium/chrome/browser/chromeos/cros/ |
login_library.h | 35 virtual void RequestRetrievePolicy(RetrievePolicyCallback callback, 39 // When fetching is done/failed, |callback| is called to pass back the fetch 40 // results. If fetching is successful, |callback| will be called with 44 RetrievePropertyCallback callback, 48 StorePolicyCallback callback, 55 // callback->Run() will be called when the operation is complete. 59 Delegate* callback) = 0; 65 // callback->Run() will be called when the operation is complete. 68 Delegate* callback) = 0; 75 // callback->Run() will be called when the operation is complete [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_quarantine.h | 36 // The callback interface is: 37 // void Callback::Recycle(Node *ptr); 40 template<typename Callback, typename Node> 43 typedef QuarantineCache<Callback> Cache; 55 void Put(Cache *c, Callback cb, Node *ptr, uptr size) { 61 void NOINLINE Drain(Cache *c, Callback cb) { 82 void NOINLINE Recycle(Callback cb) { 95 void NOINLINE DoRecycle(Cache *c, Callback cb) { 110 template<typename Callback> 125 void Enqueue(Callback cb, void *ptr, uptr size) [all...] |
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_timer.h | 54 /** Function prototype for the timer callback function */ 58 * Set a callback to run after the specified number of milliseconds has 59 * elapsed. The callback function is passed the current timer interval 62 * new alarm is scheduled. If the callback returns 0, the periodic alarm 67 * The timer callback function may run in a different thread than your 71 * you request a 16 ms timer, your callback will run approximately 20 ms 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 95 * Function prototype for the new timer callback function. 96 * The callback function is passed the current timer interval and returns 99 * scheduled. If the callback returns 0, the periodic alarm is cancelled [all...] |
/external/v8/src/ |
splay-tree.h | 151 template <class Callback> 152 void ForEach(Callback* callback); 169 template<class Callback> 172 explicit NodeToPairAdaptor(Callback* callback) 173 : callback_(callback) { } 179 Callback* callback_; 193 template <class Callback> 194 void ForEachNode(Callback* callback) [all...] |
/frameworks/av/include/media/ |
Visualizer.h | 43 * In addition to the polling capture mode, a callback mode is also available by installing a 44 * callback function by use of the setCaptureCallBack() method. The rate at which the callback 59 CAPTURE_WAVEFORM = 0x00000001, // capture callback returns a PCM wave form 60 CAPTURE_FFT = 0x00000002, // apture callback returns a frequency representation 61 CAPTURE_CALL_JAVA = 0x00000004 // the callback thread can call java 84 // callback used to return periodic PCM or FFT captures to the application. Either one or both 86 // callback. When a type of data is not present, the corresponding size (waveformSize or 95 // install a callback to receive periodic captures. The capture rate is specified in milliHertz 105 // returns the capture rate indicated when installing the callback [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
PduLoaderManager.java | 47 * from that loaded pdu. Then it will call the passed in callback with the result. This class 75 final ItemLoadedCallback<PduLoaded> callback) { 93 final boolean callbackRequired = (callback != null); 98 callback.onItemLoaded(pduLoaded, null); 104 addCallback(uri, callback); 116 cancelCallback(callback); 200 // Make a copy so that the callback can unregister itself 201 for (final ItemLoadedCallback<PduLoaded> callback : asList(callbacks)) { 203 Log.d(TAG, "Invoking pdu callback " + callback); [all...] |
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_timer.h | 54 /** Function prototype for the timer callback function */ 58 * Set a callback to run after the specified number of milliseconds has 59 * elapsed. The callback function is passed the current timer interval 62 * new alarm is scheduled. If the callback returns 0, the periodic alarm 67 * The timer callback function may run in a different thread than your 71 * you request a 16 ms timer, your callback will run approximately 20 ms 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 95 * Function prototype for the new timer callback function. 96 * The callback function is passed the current timer interval and returns 99 * scheduled. If the callback returns 0, the periodic alarm is cancelled [all...] |
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_timer.h | 54 /** Function prototype for the timer callback function */ 58 * Set a callback to run after the specified number of milliseconds has 59 * elapsed. The callback function is passed the current timer interval 62 * new alarm is scheduled. If the callback returns 0, the periodic alarm 67 * The timer callback function may run in a different thread than your 71 * you request a 16 ms timer, your callback will run approximately 20 ms 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 95 * Function prototype for the new timer callback function. 96 * The callback function is passed the current timer interval and returns 99 * scheduled. If the callback returns 0, the periodic alarm is cancelled [all...] |
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_timer.h | 54 /** Function prototype for the timer callback function */ 58 * Set a callback to run after the specified number of milliseconds has 59 * elapsed. The callback function is passed the current timer interval 62 * new alarm is scheduled. If the callback returns 0, the periodic alarm 67 * The timer callback function may run in a different thread than your 71 * you request a 16 ms timer, your callback will run approximately 20 ms 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 95 * Function prototype for the new timer callback function. 96 * The callback function is passed the current timer interval and returns 99 * scheduled. If the callback returns 0, the periodic alarm is cancelled [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ListenerTest.java | 25 * The utility class for callback function. 57 * Check the callback with the expected argument is invoked successfully within 60 * @param arg the expected callback argument. 62 * @return if true, the appropriate callback is invoked successfully. 75 * @param argList the expected callback argument list. 92 // the invalid callback is invoked before. 130 * This function must be called from sub class on the callback invocation.
|
/external/chromium/chrome/browser/chromeos/ |
version_loader.h | 11 #include "base/callback.h" 21 // ChromeOSVersionLoader callback to a method of your choice with the version 27 // . Define the callback method, something like: 30 // . When you want the version invoke: loader.GetVersion(&consumer, callback); 33 // loader.GetFirmware(&consumer, callback); 55 GetVersionCallback* callback, 59 GetFirmwareCallback* callback);
|
/external/chromium/chrome/browser/ |
favicon_service.h | 24 // This service is thread safe. Each request callback is invoked in the 31 // Callback for GetFavicon. If we have previously inquired about the favicon 52 FaviconDataCallback* callback); 55 // the given |callback|. If the favicon has previously been set via 63 FaviconDataCallback* callback); 71 // page that has been browsed in the past. |expired| in the callback is 76 FaviconDataCallback* callback);
|
/external/chromium/chrome/browser/hang_monitor/ |
hung_window_detector.h | 24 // a single callback but it can be extended later to support multiple 26 class HungWindowDetector : public WorkerThreadTicker::Callback { 30 // This is the notification callback interface that is used to notify 40 // This callback method is invoked when a hung window is detected. 66 // Implementation of the WorkerThreadTicker::Callback interface 74 static BOOL CALLBACK ChildWndEnumProc(HWND child_window, LPARAM param); 76 // Pointer to the HungWindowNotification callback interface. This class does
|
/external/chromium/chrome/browser/ui/webui/ |
most_visited_handler.h | 45 // Callback for the "getMostVisited" message. 48 // Callback for the "blacklistURLFromMostVisited" message. 51 // Callback for the "removeURLsFromMostVisitedBlacklist" message. 54 // Callback for the "clearMostVisitedURLsBlacklist" message. 57 // Callback for the "addPinnedURL" message. 60 // Callback for the "removePinnedURL" message. 87 // Callback for TopSites.
|
/external/chromium/net/base/ |
network_delegate.h | 20 // submodule. Also, since the lower levels in net/ may callback into higher 39 CompletionCallback* callback, 42 CompletionCallback* callback, 62 // being fetched by modifying |new_url|. The callback can be called at any 67 CompletionCallback* callback, 71 // read/write |headers| before they get sent out. The callback can be called 75 CompletionCallback* callback,
|
/external/chromium/net/disk_cache/ |
mem_backend_impl.h | 68 CompletionCallback* callback); 70 CompletionCallback* callback); 71 virtual int DoomEntry(const std::string& key, CompletionCallback* callback); 72 virtual int DoomAllEntries(CompletionCallback* callback); 75 CompletionCallback* callback); 77 CompletionCallback* callback); 79 CompletionCallback* callback);
|
/external/chromium/net/proxy/ |
init_proxy_resolver_unittest.cc | 99 CompletionCallback* callback) { 124 CompletionCallback* /*callback*/, 141 CompletionCallback* callback) { 183 TestCompletionCallback callback; local 186 EXPECT_EQ(OK, init.Init(config, base::TimeDelta(), NULL, &callback)); 219 TestCompletionCallback callback; local 223 init.Init(config, base::TimeDelta(), NULL, &callback)); 252 TestCompletionCallback callback; local 255 init.Init(config, base::TimeDelta(), NULL, &callback)); 267 TestCompletionCallback callback; local 285 TestCompletionCallback callback; local 304 TestCompletionCallback callback; local 324 TestCompletionCallback callback; local 384 TestCompletionCallback callback; local 404 TestCompletionCallback callback; local 426 TestCompletionCallback callback; local 445 TestCompletionCallback callback; local 487 TestCompletionCallback callback; local [all...] |
/external/qemu/android/ |
multitouch-screen.h | 65 /* A callback set to monitor OpenGLES framebuffer updates. 66 * This callback is called by the renderer just before each new frame is 68 * The callback will be called from one of the renderer's threads, so it may 70 * may be overwritten as soon as the callback returns. 71 * The pixels buffer is intentionally not const: the callback may modify the data 75 * context The pointer optionally provided when the callback was 77 * information it wants to the callback.
|
/external/speex/libspeex/ |
speex_callbacks.c | 3 Callback handling and in-band signalling 46 SpeexCallback *callback; local 49 callback = callback_list+id; 51 if (callback->func) 53 return callback->func(bits, state, callback->data); 55 /*If callback is not registered, skip the right number of bits*/
|