HomeSort by relevance Sort by last modified time
    Searched full:callbacks (Results 426 - 450 of 3607) sorted by null

<<11121314151617181920>>

  /packages/apps/Mms/src/com/android/mms/util/
PduLoaderManager.java 38 * thread). Callbacks will be invoked on the thread where the PduLoaderManager
198 final Set<ItemLoadedCallback> callbacks = mCallbacks.get(mUri);
199 if (callbacks != null) {
201 for (final ItemLoadedCallback<PduLoaded> callback : asList(callbacks)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewControllerCallbacks.java 33 * Callbacks for fragments that use the {@link SecureConversationViewController}.
ConversationPositionTracker.java 37 public interface Callbacks {
47 private final Callbacks mCallbacks;
52 public ConversationPositionTracker(Callbacks callbacks) {
53 mCallbacks = callbacks;
  /packages/services/Telephony/src/com/android/phone/
INetworkQueryServiceCallback.aidl 22 * Service interface to handle callbacks into the activity from the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_capi.py 41 #run our callbacks. Note that callbacks are only run on the
51 "timeout waiting for %i callbacks, got %i"%(n, len(l)))
57 n = 32 #total callbacks
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_capi.py 41 #run our callbacks. Note that callbacks are only run on the
51 "timeout waiting for %i callbacks, got %i"%(n, len(l)))
57 n = 32 #total callbacks
  /external/chromium/chrome/browser/download/
download_request_limiter.cc 40 // We should only be destroyed after the callbacks have been notified.
144 std::vector<DownloadRequestLimiter::Callback*> callbacks; local
157 callbacks.swap(callbacks_);
162 callbacks.assign(start, end);
167 for (size_t i = 0; i < callbacks.size(); ++i)
168 host_->ScheduleNotification(callbacks[i], allow);
181 // removes from state_map_. As such, there should be no pending callbacks.
  /frameworks/support/v4/java/android/support/v4/media/
TransportMediator.java 151 public TransportMediator(Activity activity, TransportPerformer callbacks) {
152 this(activity, null, callbacks);
155 public TransportMediator(View view, TransportPerformer callbacks) {
156 this(null, view, callbacks);
159 private TransportMediator(Activity activity, View view, TransportPerformer callbacks) {
161 mCallbacks = callbacks;
184 * {@link android.media.RemoteControlClient.OnPlaybackPositionUpdateListener} callbacks;
  /device/generic/goldfish/camera/
CallbackNotifier.h 21 * Contains declaration of a class CallbackNotifier that manages callbacks set
31 /* Manages callbacks set via set_callbacks, enable_msg_type, and disable_msg_type
35 * relevant camera API callbacks.
36 * Locking considerations. Apparently, it's not allowed to call callbacks
205 * Callbacks, registered in set_callbacks.
  /external/chromium_org/components/policy/core/common/
policy_service_impl.cc 262 // Invoke all the callbacks if a refresh has just fully completed.
264 std::vector<base::Closure> callbacks; local
265 callbacks.swap(refresh_callbacks_);
267 for (it = callbacks.begin(); it != callbacks.end(); ++it)
  /external/chromium_org/media/filters/
ffmpeg_demuxer.h 18 // When stopped, FFmpegDemuxer and FFmpegDemuxerStream release all callbacks
167 // FFmpeg callbacks during initialization.
171 // FFmpeg callbacks during seeking.
174 // FFmpeg callbacks during reading + helper method to initiate reads.
178 // DataSource callbacks during stopping.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSegmentedFontFace.cpp 77 Vector<RefPtr<LoadFontCallback> > callbacks; local
78 m_callbacks.swap(callbacks);
79 for (size_t index = 0; index < callbacks.size(); ++index) {
81 callbacks[index]->notifyLoaded(this);
83 callbacks[index]->notifyError(this);
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.h 129 * registrations/unregistrations, enabled callbacks will be called in an
132 * Condition notifications are sent to callbacks only while conditions exist.
137 * point during the delivery of condition notifications to callbacks, no
142 * function), though allocation is discouraged, since recursive callbacks are
201 * value, the RESERVE_CND_LOW condition notification is sent to the callbacks.
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.h 129 * registrations/unregistrations, enabled callbacks will be called in an
132 * Condition notifications are sent to callbacks only while conditions exist.
137 * point during the delivery of condition notifications to callbacks, no
142 * function), though allocation is discouraged, since recursive callbacks are
201 * value, the RESERVE_CND_LOW condition notification is sent to the callbacks.
  /external/libvorbis/doc/vorbisfile/
ov_open_callbacks.html 40 See also <a href="callbacks.html">Callbacks and Non-stdio I/O</a> for
48 int ov_open_callbacks(void *datasource, <a href="OggVorbis_File.html">OggVorbis_File</a> *vf, char *initial, long ibytes, <a href="ov_callbacks.html">ov_callbacks</a> callbacks);
57 <dd>Pointer to a data structure allocated by the calling application, containing any state needed by the callbacks provided.</dd>
70 <dt><i>callbacks</i></dt>
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 57 const OMX_CALLBACKTYPE *callbacks,
62 352 /* width */, 288 /* height */, callbacks, appData, component),
360 const char *name, const OMX_CALLBACKTYPE *callbacks,
367 callbacks, appData, component);
372 callbacks, appData, component);
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 254 * Sets the display magnification callbacks. These callbacks notify
257 * @param callbacks The magnification callbacks.
259 void setMagnificationCallbacks(IMagnificationCallbacks callbacks);
  /frameworks/base/services/java/com/android/server/
AppOpsService.java 402 HashMap<Callback, ArrayList<Pair<String, Integer>>> callbacks,
405 return callbacks;
407 if (callbacks == null) {
408 callbacks = new HashMap<Callback, ArrayList<Pair<String, Integer>>>();
412 ArrayList<Pair<String, Integer>> reports = callbacks.get(cb);
415 callbacks.put(cb, reports);
419 return callbacks;
426 HashMap<Callback, ArrayList<Pair<String, Integer>>> callbacks = null; local
442 callbacks = addCallbacks(callbacks, packageName, curOp.op
1005 ArrayList<Callback> callbacks = mOpModeWatchers.valueAt(i); local
1018 ArrayList<Callback> callbacks = mPackageModeWatchers.valueAt(i); local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.cc 70 // DatabaseDispatcherHost, since CloseAll() can invoke callbacks which need to
244 scoped_refptr<IndexedDBCallbacks> callbacks = local
257 callbacks,
510 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
518 callbacks);
530 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
552 callbacks,
615 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
625 callbacks);
637 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
BrowserStartupControllerTest.java 115 // Wait for callbacks to complete.
165 // Wait for callbacks to complete.
210 // Wait for callbacks to complete.
239 // Wait for callbacks to complete.
275 // Wait for callbacks to complete.
312 // Wait for callbacks to complete.
341 // Wait for callbacks to complete.
448 // Wait for callbacks to complete.
478 // Wait for callbacks to complete.
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
CameraWidgetFrame.java 46 interface Callbacks {
54 private final Callbacks mCallbacks;
141 private CameraWidgetFrame(Context context, Callbacks callbacks,
145 mCallbacks = callbacks;
164 public static CameraWidgetFrame create(Context context, Callbacks callbacks,
166 if (context == null || callbacks == null || launcher == null)
176 return new CameraWidgetFrame(context, callbacks, launcher, widgetInfo, previewWidget);
  /hardware/qcom/media/mm-video-legacy/vidc/venc/inc/
omx_video_base.h 295 OMX_CALLBACKTYPE *callbacks,
375 //Event Callbacks from the venc component thread context
377 //Buffer Done callbacks from the venc component thread context
379 //Frame Done callbacks from the venc component thread context
381 //Buffer Done callbacks from the venc component thread context
383 //Frame Done callbacks from the venc component thread context
389 // Empty Buffer Done callbacks
391 //Flush Event Callbacks from the venc component thread context
528 // Application callbacks
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/
omx_video_base.h 310 OMX_CALLBACKTYPE *callbacks,
390 //Event Callbacks from the venc component thread context
392 //Buffer Done callbacks from the venc component thread context
394 //Frame Done callbacks from the venc component thread context
396 //Buffer Done callbacks from the venc component thread context
398 //Frame Done callbacks from the venc component thread context
404 // Empty Buffer Done callbacks
406 //Flush Event Callbacks from the venc component thread context
553 // Application callbacks
  /system/core/include/utils/
Looper.h 99 * Implementations should return 1 to continue receiving callbacks, or 0
124 * using callbacks. The implementation uses epoll() internally.
137 * registered without associated callbacks. This assumes that the caller of
144 * using identifiers instead of callbacks.
150 * Invokes callbacks for all file descriptors on which an event occurred.
156 * the timeout expired and no callbacks were invoked and no other file
159 * Returns ALOOPER_POLL_CALLBACK if one or more callbacks were invoked.
171 * This method does not return until it has finished invoking the appropriate callbacks
180 * Like pollOnce(), but performs all pending callbacks until all
  /development/ndk/platforms/android-9/include/android/
native_activity.h 44 * You can set the functions here to your own callbacks. The callbacks
48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity
104 * These are the callbacks the framework makes into a native application.
105 * All of these callbacks happen on the main thread of the application.
106 * By default, all callbacks are NULL; set to a pointer to your own function

Completed in 2061 milliseconds

<<11121314151617181920>>