/packages/apps/Camera2/src/com/android/camera/async/ |
ExecutorCallback.java | 19 import com.android.camera.util.Callback; 27 * Wraps a not-necessarily-thread-safe callback into a thread-safe callback 33 private final Callback<T> mCallback; 37 * @param callback The callback to wrap. 38 * @param executor The executor on which to invoke the callback. 40 public ExecutorCallback(Callback<T> callback, Executor executor) { 41 mCallback = callback; [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
ReachableCode.h | 48 class Callback { 51 virtual ~Callback() {} 65 Callback &CB);
|
/system/media/brillo/audio/audioservice/ |
audio_service_callback.h | 16 // Callback object to be passed to brilloaudioservice. 23 #include <base/callback.h> 38 // |callback| is an object of type BAudioCallback. 40 AudioServiceCallback(const BAudioCallback* callback, void* user_data); 42 // Callback function triggered when a device is connected. 47 // Callback function triggered when a device is disconnected. 52 // Callback function triggered when volume is changed. 61 // |callback| is a ref counted pointer to a AudioServiceCallback object to be 64 // Returns true if |callback| equals this. 65 bool Equals(const android::sp<AudioServiceCallback>& callback); [all...] |
/external/javasqlite/src/main/java/SQLite/ |
Vm.java | 23 * The result row is passed to the given callback interface.<BR><BR> 42 * @param cb the object implementing the callback methods. 47 public native boolean step(Callback cb) throws SQLite.Exception;
|
/external/libchrome/base/ |
callback.h | 11 // NOTE: Header files that do not require the full definition of Callback or 18 // The templated Callback class is a generalized function object. Together 28 // A callback with no unbound input parameters (base::Callback<void()>) 35 // The Callback objects themselves should be passed by const-reference, and 50 // base::Callback<int()> func_cb = base::Bind(&Return5); 64 // base::Callback<void()> ref_cb = base::Bind(&Ref::Foo, ref); 72 // RUNNING A CALLBACK 75 // signature as the template argument to the callback. 77 // void DoSomething(const base::Callback<void(int, std::string)>& callback) [all...] |
task_runner_util.h | 20 void ReturnAsParamAdapter(const Callback<ReturnType(void)>& func, 27 void ReplyAdapter(const Callback<void(ReplyArgType)>& callback, 33 if (!callback.is_null()) 34 callback.Run(std::move(*result)); 42 // void Callback(const R& result); 45 // result of DoWorkAndReturn is passed to the Callback, you can use 52 // Bind(&Callback)); 57 const Callback<TaskReturnType(void)>& task, 58 const Callback<void(ReplyArgType)>& reply) [all...] |
/external/libchrome/base/files/ |
file_path_watcher.h | 11 #include "base/callback.h" 20 // The callback will get called whenever the file or directory referenced by the 30 // Callback type for Watch(). |path| points to the file that was updated, 32 // that case, the callback won't be invoked again. 33 typedef base::Callback<void(const FilePath& path, bool error)> Callback; 43 const Callback& callback) WARN_UNUSED_RESULT = 0; 86 // A callback that always cleans up the PlatformDelegate, either when executed 94 // Invokes |callback| whenever updates to |path| are detected. This should b [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Callback.java | 20 public interface Callback { 31 * server. The callback may proceed to read the response body with {@link 33 * closed with {@code response.body().close()}. The recipient of the callback
|
/external/webrtc/webrtc/modules/desktop_capture/ |
desktop_and_cursor_composer.h | 23 public DesktopCapturer::Callback, 24 public MouseCursorMonitor::Callback { 35 void Start(DesktopCapturer::Callback* callback) override; 40 // DesktopCapturer::Callback interface. 44 // MouseCursorMonitor::Callback interface. 52 DesktopCapturer::Callback* callback_;
|
screen_capturer_mock_objects.h | 24 MOCK_METHOD1(Start, void(Callback* callback)); 33 class MockScreenCapturerCallback : public ScreenCapturer::Callback {
|
/packages/apps/Settings/tests/robotests/src/com/android/internal/app/ |
NightDisplayController.java | 40 public interface Callback {
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRemoteCallbackList.java | 15 private HashMap<IBinder, Callback> callbacks = new HashMap<IBinder, Callback>(); 20 private final class Callback implements IBinder.DeathRecipient { 21 final E callback; field in class:ShadowRemoteCallbackList.Callback 24 Callback(E callback, Object cookie) { 25 this.callback = callback; 31 callbacks.remove(callback.asBinder()); 33 onCallbackDied(callback, cookie) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_stoptheworld_testlib.cc | 34 void Callback(const SuspendedThreadsList &suspended_threads_list, 42 StopTheWorld(Callback, NULL);
|
/external/conscrypt/testing/src/main/java/tests/util/ |
ForEachRunner.java | 18 * Runner which executes the provided code under test (via a callback) for each provided input 23 * Callback parameterized with a value. 25 public interface Callback<T> { 27 * Invokes the callback for the provided value. 33 * Invokes the provided callback for each of the provided named values. 39 public static <T> void runNamed(Callback<T> callback, Iterable<Pair<String, T>> namesAndValues) 43 callback.run(nameAndValue.getSecond());
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/ |
FakeHotspotController.java | 20 import com.android.systemui.statusbar.policy.HotspotController.Callback; 22 public class FakeHotspotController extends BaseLeakChecker<Callback> implements HotspotController {
|
FakeManagedProfileController.java | 20 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback; 22 public class FakeManagedProfileController extends BaseLeakChecker<Callback> implements
|
/frameworks/opt/bitmap/src/com/android/bitmap/ |
RequestKey.java | 26 * {@link #createFileDescriptorFactoryAsync(RequestKey, Callback)} or {@link #createInputStream()}. 28 * {@link #createFileDescriptorFactoryAsync(RequestKey, Callback)} before falling back to 70 * the given callback. This method will be called in favor of {@link #createInputStream()}}, 72 * or {@link Callback#fileDescriptorFactoryCreated(RequestKey, FileDescriptorFactory)} is called 81 * callback so it can check whether the key has changed. 82 * @param callback The callback to notify once the FileDescriptorFactory is created or has failed 84 * Do not invoke the callback directly from this method. Instead, create a handler 89 * return null. The callback must be notified if and only if the client returns a Cancelable 92 public Cancelable createFileDescriptorFactoryAsync(RequestKey key, Callback callback) [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
tmpCallbackHandler.java | 27 import javax.security.auth.callback.Callback; 28 import javax.security.auth.callback.CallbackHandler; 29 import javax.security.auth.callback.UnsupportedCallbackException; 37 public void handle(Callback[] callback) throws IOException, 39 if (callback == null) { 40 throw new UnsupportedCallbackException(null, "callback is null"); 42 if (callback.length == 0) { 43 throw new UnsupportedCallbackException(null, "callback is empty") [all...] |