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

<<11121314151617181920>>

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
SlowDriveStepFragment.java 31 public interface Callback {
57 ((Callback) getActivity()).onSlowDriveWarningComplete();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
AdbDialog.java 34 public interface Callback {
60 ((Callback) getTargetFragment()).onEnableAdbConfirm();
EnableDevelopmentDialog.java 34 public interface Callback {
60 ((Callback) getTargetFragment()).onEnableDevelopmentConfirm();
OemUnlockDialog.java 34 public interface Callback {
62 ((Callback) getTargetFragment()).onOemUnlockConfirm();
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 33 Callback(0),
57 return Callback->SetTotal(size);
64 return Callback->SetCompleted(completeValue);
71 return Callback->SetRatioInfo(inSize, outSize);
99 RINOK(Callback->CheckBreak());
425 RINOK(Callback->CheckBreak());
426 RINOK(Callback->Finilize());
437 RINOK(Callback->GetStream(name, true));
452 RINOK(Callback->GetStream(DirItems->GetLogPath(up.DirIndex), false));
477 return Callback->OpenFileError(path, ::GetLastError());
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BluetoothConfig.h 127 /// This callback is called when Bluetooth receive Disconnection_Complete event. Input buffer is Event
132 /// This callback is called when Bluetooth receive Connection_Complete event. Input buffer is Event
137 /// This callback is called when Bluetooth receive Authentication_Complete event. Input buffer is Event
142 /// This callback is called when Bluetooth receive Encryption_Change event. Input buffer is Event
166 Callback function, it is called if a Bluetooth device is found during scan process.
172 @retval EFI_SUCCESS The callback function complete successfully.
191 @param Callback The callback function. This function is called if a Bluetooth device is found during scan
193 @param Context Data passed into Callback function. This is optional parameter and may be NULL.
205 IN EFI_BLUETOOTH_CONFIG_SCAN_CALLBACK_FUNCTION Callback,
    [all...]
BluetoothHc.h 90 Callback function, it is called when asynchronous transfer is completed.
94 @param Context Data passed into Callback function. This is optional parameter and may be NULL.
96 @retval EFI_SUCCESS The callback function complete successfully.
114 @param Callback The callback function. This function is called if the asynchronous transfer is
116 @param Context Data passed into Callback function. This is optional parameter and may be NULL.
131 IN EFI_BLUETOOTH_HC_ASYNC_FUNC_CALLBACK Callback,
202 @param Callback The callback function. This function is called if the asynchronous transfer is
204 @param Context Data passed into Callback function. This is optional parameter and may be NULL.
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 37 final Callback mCallback;
38 final KeyEvent.Callback mKeyEventCallback;
45 public interface Callback {
67 public SoftInputWindow(Context context, String name, int theme, Callback callback,
68 KeyEvent.Callback keyEventCallback, KeyEvent.DispatcherState dispatcherState,
72 mCallback = callback;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HotspotControllerImpl.java 39 private final ArrayList<Callback> mCallbacks = new ArrayList<Callback>();
82 public void addCallback(Callback callback) {
84 if (callback == null || mCallbacks.contains(callback)) return;
85 if (DEBUG) Log.d(TAG, "addCallback " + callback);
86 mCallbacks.add(callback);
92 public void removeCallback(Callback callback) {
114 OnStartTetheringCallback callback = new OnStartTetheringCallback(); local
    [all...]
BluetoothControllerImpl.java 44 CachedBluetoothDevice.Callback {
127 public void addCallback(Callback cb) {
133 public void removeCallback(Callback cb) {
305 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
326 mCallbacks.add((BluetoothController.Callback) msg.obj);
329 mCallbacks.remove((BluetoothController.Callback) msg.obj);
335 for (BluetoothController.Callback cb : mCallbacks) {
341 for (BluetoothController.Callback cb : mCallbacks) {
346 private void fireStateChange(BluetoothController.Callback cb) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
SegmentedButtons.java 41 private Callback mCallback;
52 public void setCallback(Callback callback) {
53 mCallback = callback;
94 Interaction.register(b, new Interaction.Callback() {
126 public interface Callback extends Interaction.Callback {
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
WindowCallbackWrapper.java 38 * A simple decorator stub for Window.Callback that passes through any calls
40 * the wrapped callback for any subclasses.
45 public class WindowCallbackWrapper implements Window.Callback {
47 final Window.Callback mWrapped;
49 public WindowCallbackWrapper(Window.Callback wrapped) {
51 throw new IllegalArgumentException("Window callback may not be null");
153 public ActionMode onWindowStartingActionMode(ActionMode.Callback callback) {
154 return mWrapped.onWindowStartingActionMode(callback);
159 public ActionMode onWindowStartingActionMode(ActionMode.Callback callback, int type)
    [all...]
  /frameworks/support/v7/mediarouter/jellybean-mr1/android/support/v7/media/
MediaRouterJellybeanMr1.java 35 public static Object createCallback(Callback callback) {
36 return new CallbackProxy<Callback>(callback);
56 public static interface Callback extends MediaRouterJellybean.Callback {
173 static class CallbackProxy<T extends Callback>
175 public CallbackProxy(T callback) {
176 super(callback);
  /packages/apps/Settings/src/com/android/settings/utils/
ZenServiceListing.java 42 private final List<Callback> mZenCallbacks = new ArrayList<>();
60 public void addZenCallback(Callback callback) {
61 mZenCallbacks.add(callback);
64 public void removeZenCallback(Callback callback) {
65 mZenCallbacks.remove(callback);
88 for (Callback callback : mZenCallbacks) {
89 callback.onServicesReloaded(mApprovedServices)
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
RemoteConferenceTest.java 210 RemoteConference.Callback callback; local
212 callback = new RemoteConference.Callback() {
219 mRemoteConferenceObject.registerCallback(callback, handler);
225 mRemoteConferenceObject.unregisterCallback(callback);
236 RemoteConference.Callback callback; local
238 callback = new RemoteConference.Callback() {
263 RemoteConference.Callback callback; local
294 RemoteConference.Callback callback; local
326 RemoteConference.Callback callback; local
354 RemoteConference.Callback callback; local
383 RemoteConference.Callback callback; local
418 RemoteConference.Callback callback; local
443 RemoteConference.Callback callback; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/
ReportStatusCodeRouterRuntimeDxe.c 38 Event callback function to invoke status code handler in list.
81 Register the callback function for ReportStatusCode() notification.
84 ReportStatusCode() will be forwarded to the Callback function. During the bootservices,
85 this is the callback for which this service can be invoked. The report status code router
86 will create an event such that the callback function is only invoked at the TPL for which it was
87 registered. The entity that registers for the callback should also register for an event upon
89 If the handler does not have a TPL dependency, it should register for a callback at TPL high. The
93 2. not unregister at exit boot services so that the router will still have its callback address
97 @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is called when
99 @param[in] Tpl TPL at which callback can be safely invoked.
    [all...]
  /frameworks/base/core/java/android/speech/
RecognitionService.java 63 * The current callback of an application that invoked the
64 * {@link RecognitionService#onStartListening(Intent, Callback)} method
66 private Callback mCurrentCallback = null;
112 mCurrentCallback = new Callback(listener, callingUid);
198 protected abstract void onStartListening(Intent recognizerIntent, Callback listener);
203 protected abstract void onCancel(Callback listener);
210 protected abstract void onStopListening(Callback listener);
229 * {@link RecognitionService#onStartListening(Intent, Callback)} method. Recognizers may call
232 public class Callback {
236 private Callback(IRecognitionListener listener, int callingUid)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplBase.java 88 final Window.Callback mOriginalWindowCallback;
89 final Window.Callback mAppCompatWindowCallback;
112 AppCompatDelegateImplBase(Context context, Window window, AppCompatCallback callback) {
115 mAppCompatCallback = callback;
123 // Now install the new callback
137 Window.Callback wrapWindowCallback(Window.Callback callback) {
138 return new AppCompatWindowCallbackBase(callback);
240 abstract ActionMode startSupportActionModeFromWindow(ActionMode.Callback callback)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java 44 final Callback mCallback;
55 public interface Callback {
60 public SnepServer(Callback callback) {
61 mCallback = callback;
69 public SnepServer(String serviceName, int serviceSap, Callback callback) {
70 mCallback = callback;
78 public SnepServer(Callback callback, int miu, int rwSize)
    [all...]
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.java 35 private final Callback mCallback;
44 ImageView icon, TextView errorTextView, Callback callback) {
48 mCallback = callback;
139 public interface Callback {
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintUiHelper.java 35 private final Callback mCallback;
44 ImageView icon, TextView errorTextView, Callback callback) {
48 mCallback = callback;
139 public interface Callback {
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
FingerprintUiHelper.java 35 private final Callback mCallback;
44 ImageView icon, TextView errorTextView, Callback callback) {
48 mCallback = callback;
139 public interface Callback {
  /external/libchrome/dbus/
exported_object.h 15 #include "base/callback.h"
45 typedef base::Callback<void(std::unique_ptr<Response> response)>
49 // message. |sender| is the callback that's used to send a response.
53 typedef base::Callback<void (MethodCall* method_call, ResponseSender sender)>
58 typedef base::Callback<void (const std::string& interface_name,
146 // Callback invoked by service provider to send a response to a method call.
  /external/libmojo/mojo/public/cpp/bindings/lib/
control_message_proxy.cc 23 using RunCallback = base::Callback<void(QueryVersionResultPtr)>;
27 RunResponseForwardToCallback(const RunCallback& callback)
28 : callback_(callback) {}
50 const RunCallback& callback,
63 MessageReceiver* responder = new RunResponseForwardToCallback(callback);
87 void RunVersionCallback(const base::Callback<void(uint32_t)>& callback,
89 callback.Run(query_version_result->version);
99 const base::Callback<void(uint32_t)>& callback) {
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
OkHttpAsync.java 18 import com.squareup.okhttp.Callback;
42 private Callback callback; field in class:OkHttpAsync
67 callback = new Callback() {
88 client.newCall(new Request.Builder().tag(System.nanoTime()).url(url).build()).enqueue(callback);

Completed in 1299 milliseconds

<<11121314151617181920>>