HomeSort by relevance Sort by last modified time
    Searched refs:Callback (Results 76 - 100 of 1790) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/unittests/Analysis/
CFGTest.cpp 45 } Callback;
48 Finder.addMatcher(ast_matchers::functionDecl().bind("func"), &Callback);
53 EXPECT_TRUE(Callback.SawFunctionBody);
  /external/libmojo/mojo/edk/test/
multiprocess_test_helper.h 10 #include "base/callback.h"
28 using HandlerCallback = base::Callback<void(ScopedMessagePipeHandle)>;
46 void set_process_error_callback(const ProcessErrorCallback& callback) {
47 process_error_callback_ = callback;
68 static int RunClientMain(const base::Callback<int(MojoHandle)>& main);
69 static int RunClientTestMain(const base::Callback<void(MojoHandle)>& main);
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DrawingCanvas.java 14 private Callback callback; field in class:DrawingCanvas
33 public void setCallback(Callback callback) {
34 this.callback = callback;
44 if (callback != null) callback.onUpdate((int) delta);
48 public interface Callback {
  /external/webrtc/webrtc/modules/desktop_capture/
cropping_window_capturer.h 25 public DesktopCapturer::Callback {
31 void Start(DesktopCapturer::Callback* callback) override;
40 // DesktopCapturer::Callback implementation, passed to |screen_capturer_| to
64 DesktopCapturer::Callback* callback_;
window_capturer_null.cc 32 void Start(Callback* callback) override;
36 Callback* callback_;
63 void WindowCapturerNull::Start(Callback* callback) {
65 assert(callback);
67 callback_ = callback;
  /frameworks/base/media/java/android/media/
VolumeProvider.java 64 private Callback mCallback;
147 * Sets a callback to receive volume changes.
150 public void setCallback(Callback callback) {
151 mCallback = callback;
158 public static abstract class Callback {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 21 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
25 public interface BluetoothController extends CallbackController<Callback>, Dumpable {
43 public interface Callback {
ZenModeController.java 25 import com.android.systemui.statusbar.policy.ZenModeController.Callback;
27 public interface ZenModeController extends CallbackController<Callback> {
39 public static interface Callback {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DozeHostFake.java 26 Callback callback; field in class:DozeHostFake
32 public void addCallback(@NonNull Callback callback) {
33 this.callback = callback;
37 public void removeCallback(@NonNull Callback callback) {
38 this.callback = null;
47 public void pulseWhileDozing(@NonNull PulseCallback callback, int reason)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplN.java 30 AppCompatDelegateImplN(Context context, Window window, AppCompatCallback callback) {
31 super(context, window, callback);
35 Window.Callback wrapWindowCallback(Window.Callback callback) {
36 return new AppCompatWindowCallbackN(callback);
40 AppCompatWindowCallbackN(Window.Callback callback) {
41 super(callback);
  /packages/apps/Settings/src/com/android/settings/notification/
AlarmVolumePreferenceController.java 24 import com.android.settings.notification.VolumeSeekBarPreference.Callback;
32 public AlarmVolumePreferenceController(Context context, Callback callback,
34 this(context, callback, lifecycle, new AudioHelper(context));
38 AlarmVolumePreferenceController(Context context, Callback callback, Lifecycle lifecycle,
40 super(context, callback, lifecycle);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ObjectCache.java 30 public interface Callback<T> {
37 private final Callback<T> mCallback;
42 * @param callbacks Callback object that that will return a new instance of the object, and
45 public ObjectCache(Callback<T> callbacks, int maxSize) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
FindFiles.c 55 FIND_FILE_CALLBACK Callback
63 FIND_FILE_CALLBACK Callback
74 Callback - function to call for each file found
110 return ProcessDirectory (FullPath, FileMask, Callback);
118 FIND_FILE_CALLBACK Callback
129 Callback - function to call for each file found
155 if (Callback (TempName) != 0) {
191 if (ProcessDirectory (TempName, FileMask, Callback) != 0) {
  /frameworks/base/telecomm/java/android/telecom/
RemoteConference.java 38 * {@link RemoteConnection.Callback}.
45 * Callback base class for {@link RemoteConference}.
47 public abstract static class Callback {
137 private final Set<CallbackRecord<Callback>> mCallbackRecords = new CopyOnWriteArraySet<>();
167 for (CallbackRecord<Callback> record : mCallbackRecords) {
169 final Callback callback = record.getCallback(); local
173 callback.onDestroyed(conference);
192 for (CallbackRecord<Callback> record : mCallbackRecords) {
194 final Callback callback = record.getCallback() local
212 final Callback callback = record.getCallback(); local
230 final Callback callback = record.getCallback(); local
247 final Callback callback = record.getCallback(); local
265 final Callback callback = record.getCallback(); local
283 final Callback callback = record.getCallback(); local
301 final Callback callback = record.getCallback(); local
340 final Callback callback = record.getCallback(); local
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentClipper.java 30 import com.android.documentsui.services.FileOperations.Callback;
61 Callback callback) {
65 public void copyFromClipboard(DocumentStack docStack, Callback callback) {
70 Callback callback) {
76 ClipData clipData, Callback callback) {
80 public void copyFromClipData(DocumentStack docStack, ClipData clipData, Callback callback)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
ReportStatusCodeHandler.h 35 Register the callback function for ReportStatusCode() notification.
38 ReportStatusCode() will be forwarded to the Callback function. During the bootservices,
39 this is the callback for which this service can be invoked. The report status code router
40 will create an event such that the callback function is only invoked at the TPL for which it was
41 registered. The entity that registers for the callback should also register for an event upon
43 If the handler does not have a TPL dependency, it should register for a callback at TPL high. The
47 2. not unregister at exit boot services so that the router will still have its callback address
51 @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is called when
53 @param[in] Tpl TPL at which callback can be safely invoked.
56 @retval EFI_INVALID_PARAMETER The callback function was NULL.
    [all...]
SmmReportStatusCodeHandler.h 34 Register the callback function for ReportStatusCode() notification.
37 ReportStatusCode() will be forwarded to the Callback function.
39 @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is called when
43 @retval EFI_INVALID_PARAMETER The callback function was NULL.
51 IN EFI_SMM_RSC_HANDLER_CALLBACK Callback
55 Remove a previously registered callback function from the notification list.
57 A callback function must be unregistered before it is deallocated. It is important that any registered
60 @param[in] Callback A pointer to a function of type EFI_SMM_RSC_HANDLER_CALLBACK that is to be
64 @retval EFI_INVALID_PARAMETER The callback function was NULL.
65 @retval EFI_NOT_FOUND The callback function was not found to be unregistered.
    [all...]
  /external/libchrome/base/
bind.h 14 // See base/callback.h for documentation.
28 inline base::Callback<MakeUnboundRunType<Functor, Args...>> Bind(
35 using CallbackType = Callback<UnboundRunType>;
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 21 if (!Callback)
23 return Callback->Open_SetTotal(files, bytes);
32 if (!Callback)
34 return Callback->Open_SetCompleted(files, bytes);
82 if (Callback)
84 RINOK(Callback->Open_CheckBreak());
120 if (!Callback)
122 return Callback->Open_CryptoGetTextPassword(password);
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
ActivityStarter.java 23 * An interface to start activities. This is used as a callback from the views to
34 void startActivity(Intent intent, boolean dismissShade, Callback callback);
39 interface Callback {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
Interaction.java 26 public static void register(View v, final Callback callback) {
30 callback.onInteraction();
37 callback.onInteraction();
43 public interface Callback {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeCastController.java 20 import com.android.systemui.statusbar.policy.CastController.Callback;
24 public class FakeCastController extends BaseLeakChecker<Callback> implements CastController {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/callback/
CallbackHandlerTest.java 18 package org.apache.harmony.tests.javax.security.auth.callback;
22 import javax.security.auth.callback.Callback;
23 import javax.security.auth.callback.CallbackHandler;
32 * javax.security.auth.callback.CallbackHandler#handle(Callback[] callbacks)
43 public void handle(Callback[] callbacks) {
  /libcore/luni/src/test/java/tests/support/
MockCallback.java 19 import SQLite.Callback;
22 public class MockCallback implements Callback {
  /packages/apps/Camera2/src/com/android/camera/one/v2/errorhandling/
RecoverySuccessCallback.java 20 import com.android.camera.util.Callback;
27 final class RecoverySuccessCallback implements Callback<String> {

Completed in 806 milliseconds

1 2 34 5 6 7 8 91011>>