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

<<11121314151617181920>>

  /system/update_engine/common/
boot_control_stub.cc 57 base::Callback<void(bool)> callback) {
boot_control_stub.h 47 bool MarkBootSuccessfulAsync(base::Callback<void(bool)> callback) override;
  /frameworks/base/telecomm/java/android/telecom/
Call.java 291 * Whether the call is made while the device is in emergency callback mode.
763 * You can handle these callbacks by extending the {@link Callback} class and overriding the
764 * callbacks that your {@link InCallService} is interested in. The callback methods include the
765 * {@link Call} for which the callback applies, allowing reuse of a single instance of your
766 * {@link Callback} implementation, if desired.
768 * Use {@link Call#registerCallback(Callback)} to register your callback(s). Ensure
769 * {@link Call#unregisterCallback(Callback)} is called when you no longer require callbacks
771 * Note: Callbacks which occur before you call {@link Call#registerCallback(Callback)} will not
772 * reach your implementation of {@link Callback}, so it is important to register your callbac
1760 final Callback callback = record.getCallback(); local
1769 final Callback callback = record.getCallback(); local
1777 final Callback callback = record.getCallback(); local
1790 final Callback callback = record.getCallback(); local
1803 final Callback callback = record.getCallback(); local
1816 final Callback callback = record.getCallback(); local
1829 final Callback callback = record.getCallback(); local
1842 final Callback callback = record.getCallback(); local
1855 final Callback callback = record.getCallback(); local
1879 final Callback callback = record.getCallback(); local
1910 final Callback callback = record.getCallback(); local
1931 final Callback callback = record.getCallback(); local
1949 final Callback callback = record.getCallback(); local
1962 final Callback callback = record.getCallback(); local
    [all...]
  /art/runtime/
backtrace_helper.h 36 _Unwind_Backtrace(&Callback, this);
40 static _Unwind_Reason_Code Callback(_Unwind_Context* context, void* arg) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiConfig.h 46 of "CR has a bad signature" and Callback is returned.
49 specified by Callback, then the module will not compile.
54 @param Callback Pointer to the specified field within the data
60 #define ISCSI_FORM_CALLBACK_INFO_FROM_FORM_CALLBACK(Callback) \
62 Callback, \
153 device configuration entries, uninstall the form callback protocol and
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/
ReportStatusCodeRouterRuntimeDxe.h 58 Register the callback function for ReportStatusCode() notification.
61 ReportStatusCode() will be forwarded to the Callback function. During the bootservices,
62 this is the callback for which this service can be invoked. The report status code router
63 will create an event such that the callback function is only invoked at the TPL for which it was
64 registered. The entity that registers for the callback should also register for an event upon
66 If the handler does not have a TPL dependency, it should register for a callback at TPL high. The
70 2. not unregister at exit boot services so that the router will still have its callback address
74 @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is called when
76 @param[in] Tpl TPL at which callback can be safely invoked.
79 @retval EFI_INVALID_PARAMETER The callback function was NULL.
    [all...]
  /external/libbrillo/brillo/http/
http_transport.h 33 base::Callback<void(RequestID, std::unique_ptr<Response>)>;
34 using ErrorCallback = base::Callback<void(RequestID, const brillo::Error*)>;
59 // Runs |callback| on the task runner (message loop) associated with the
61 // loops (e.g. a fake transport), calls the callback immediately.
63 const base::Closure& callback) = 0;
  /external/libchrome/crypto/
nss_util_internal.h 10 #include "base/callback.h"
51 // loaded and |callback| is non-null, the |callback| will be run once the slot
54 const base::Callback<void(ScopedPK11Slot)>& callback) WARN_UNUSED_RESULT;
99 // loaded and |callback| is non-null, the |callback| will be run once the slot
103 const base::Callback<void(ScopedPK11Slot)>& callback) WARN_UNUSED_RESULT;
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 12 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.ml 13 let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 12 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.h 89 IOpenCallbackUI *Callback;
93 COpenCallbackImp(): Callback(NULL) {}
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
AsynchronousGet.java 18 import com.squareup.okhttp.Callback;
33 client.newCall(request).enqueue(new Callback() {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSurfaceView.java 17 @Override public void addCallback(Callback callback) {
20 @Override public void removeCallback(Callback callback) {
  /external/v8/src/heap/
array-buffer-tracker.h 78 // Processes buffers one by one. The CallbackResult of the callback decides
81 // Callback should be of type:
83 template <typename Callback>
84 void Process(Callback callback);
  /frameworks/base/core/java/android/hardware/camera2/legacy/
RequestHandlerThread.java 37 private Handler.Callback mCallback;
40 public RequestHandlerThread(String name, Handler.Callback callback) {
42 mCallback = callback;
  /frameworks/base/core/java/android/view/
ActionMode.java 199 * {@link ActionMode.Callback} will have its
200 * {@link Callback#onPrepareActionMode(ActionMode, Menu)} method called.
229 * Finish and close this action mode. The action mode's {@link ActionMode.Callback} will
230 * have its {@link Callback#onDestroyActionMode(ActionMode)} method called.
286 * Callback interface for action modes. Supplied to
287 * {@link View#startActionMode(Callback)}, a Callback
292 * <li>{@link Callback#onCreateActionMode(ActionMode, Menu)} once on initial
294 * <li>{@link Callback#onPrepareActionMode(ActionMode, Menu)} after creation
296 * <li>{@link Callback#onActionItemClicked(ActionMode, MenuItem)} any time
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
ExpandHelperTest.java 43 private ExpandHelper.Callback mCallback;
49 mCallback = mock(ExpandHelper.Callback.class);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
SurfaceView.java 78 public void addCallback(Callback callback) {
82 public void removeCallback(Callback callback) {
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
DecorContentParent.java 38 void setWindowCallback(Window.Callback cb);
54 void setMenu(Menu menu, MenuPresenter.Callback cb);
  /packages/apps/Bluetooth/src/com/android/bluetooth/
ObexRejectServer.java 25 import android.os.Handler.Callback;
38 public class ObexRejectServer extends ServerRequestHandler implements Callback {
  /packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
FanSpeedBarController.java 92 private HvacController.Callback mCallback = new HvacController.Callback() {
SeatWarmerController.java 42 private final HvacController.Callback mCallback = new HvacController.Callback() {
TemperatureController.java 43 private final HvacController.Callback mCallback = new HvacController.Callback() {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DisallowAddUserTask.java 39 Callback callback) {
40 this(UserManager.isSplitSystemUser(), context, params, callback);
47 Callback callback) {
48 super(context, params, callback);

Completed in 2492 milliseconds

<<11121314151617181920>>