HomeSort by relevance Sort by last modified time
    Searched defs:callback (Results 276 - 300 of 1863) sorted by null

<<11121314151617181920>>

  /hardware/interfaces/broadcastradio/1.0/default/
Tuner.cpp 79 void Tuner::callback(radio_hal_event_t *halEvent, void *cookie) function in class:android::hardware::broadcastradio::V1_0::implementation::Tuner
87 Tuner::Tuner(const sp<ITunerCallback>& callback, const wp<BroadcastRadio>& parentDevice)
88 : mHalTuner(NULL), mCallback(callback), mParentDevice(parentDevice)
  /hardware/libhardware/modules/radio/
radio_hal_tool.c 67 void callback(radio_hal_event_t *event, void *cookie) { function
98 callback, &cookie, &hal_tuner);
  /hardware/qcom/display/msm8909/hdmi_cec/
qhdmi_cec.h 57 cec_callback_t callback; // Struct storing callback object member in struct:qhdmicec::cec_context_t
  /hardware/qcom/display/msm8909w_3100/hdmi_cec/
qhdmi_cec.h 57 cec_callback_t callback; // Struct storing callback object member in struct:qhdmicec::cec_context_t
  /hardware/qcom/display/msm8996/hdmi_cec/
qhdmi_cec.h 54 cec_callback_t callback; // Struct storing callback object member in struct:qhdmicec::cec_context_t
  /hardware/qcom/display/msm8998/hdmi_cec/
qhdmi_cec.h 54 cec_callback_t callback; // Struct storing callback object member in struct:qhdmicec::cec_context_t
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
TestLoaderManager.java 135 public <D> Loader<D> initLoader(final int id, Bundle args, final LoaderCallbacks<D> callback) {
139 return callback.onCreateLoader(id, args);
144 callback.onLoadFinished(loader, data);
152 callback.onLoaderReset(loader);
158 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderCallbacks<D> callback) {
159 return mDelegate.restartLoader(id, args, callback);
  /packages/apps/Dialer/java/com/android/dialer/voicemailstatus/
VisualVoicemailEnabledChecker.java 39 * Callback.onVisualVoicemailEnabledStatusChanged() will be called with the new value.
49 private Callback callback; field in class:VisualVoicemailEnabledChecker
51 public VisualVoicemailEnabledChecker(Context context, @Nullable Callback callback) {
53 this.callback = callback;
68 * has changed, Callback.onVisualVoicemailEnabledStatusChanged() will be called.
85 if (callback != null) {
86 callback.onVisualVoicemailEnabledStatusChanged(this.hasActiveVoicemailProvider)
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/telecomeventui/
InternationalCallOnWifiDialogFragment.java 66 public interface Callback {
77 * callback.
82 @NonNull String callId, @NonNull Callback callback) {
84 fragment.setCallback(callback);
103 * Callback which will receive information about user interactions with this dialog.
106 * have a callback reattached. Ideally, the InCallActivity would implement the callback and we
107 * would use FragmentUtils.getParentUnsafe instead of holding onto the callback here, but that's
110 @Nullable private Callback callback field in class:InternationalCallOnWifiDialogFragment
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupTypeFragment.java 35 public interface Callback extends AccountSetupFragment.Callback {
92 final Callback callback = (Callback) getActivity(); local
93 callback.onChooseProtocol(protocol);
  /packages/apps/Gallery/src/com/android/camera/
ImageGetter.java 32 * into memory and post a callback to display the resulting bitmap.
44 * a callback to the UI thread to actually show the bitmap.
80 // The callback to invoke for each image.
86 // The handler to do callback.
102 private Runnable callback(final int position, final int offset, method in class:ImageGetter.ImageGetterRunnable
180 Runnable cb = callback(mCurrentPosition, offset,
216 Runnable cb = callback(mCurrentPosition, offset,
298 public void postGetterCallback(Runnable callback) {
299 postDelayedGetterCallback(callback, 0);
302 public void postDelayedGetterCallback(Runnable callback, long delay)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
EOLConvertingInputStream.java 49 private Callback callback; field in class:EOLConvertingInputStream
51 public interface Callback {
73 * @param _callback a callback reporting when each 10% of stream's size is reached
75 public EOLConvertingInputStream(InputStream _in, int _size, Callback _callback) {
80 callback = _callback;
95 if (callback != null && pos++ == nextTenPctPos) {
97 if (callback != null) {
98 callback.report(pos);
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_as_parameter.py 63 def callback(v): function in function:BasicWrapTestCase.test_shorts
67 CallBack = CFUNCTYPE(c_int, c_int)
69 cb = CallBack(callback)
82 def callback(value): function in function:BasicWrapTestCase.test_callbacks
86 cb = MyCallback(callback)
93 cb = MyCallback(callback)
105 cb = AnotherCallback(callback)
110 # for the callback function.
119 def callback(value) function in function:BasicWrapTestCase.test_callbacks_2
137 def callback(value): function in function:BasicWrapTestCase.test_longlong_callbacks
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_as_parameter.py 63 def callback(v): function in function:BasicWrapTestCase.test_shorts
67 CallBack = CFUNCTYPE(c_int, c_int)
69 cb = CallBack(callback)
82 def callback(value): function in function:BasicWrapTestCase.test_callbacks
86 cb = MyCallback(callback)
93 cb = MyCallback(callback)
105 cb = AnotherCallback(callback)
110 # for the callback function.
119 def callback(value) function in function:BasicWrapTestCase.test_callbacks_2
137 def callback(value): function in function:BasicWrapTestCase.test_longlong_callbacks
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 63 def callback(v): function in function:BasicWrapTestCase.test_shorts
67 CallBack = CFUNCTYPE(c_int, c_int)
69 cb = CallBack(callback)
82 def callback(value): function in function:BasicWrapTestCase.test_callbacks
86 cb = MyCallback(callback)
93 cb = MyCallback(callback)
105 cb = AnotherCallback(callback)
110 # for the callback function.
119 def callback(value) function in function:BasicWrapTestCase.test_callbacks_2
137 def callback(value): function in function:BasicWrapTestCase.test_longlong_callbacks
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 63 def callback(v): function in function:BasicWrapTestCase.test_shorts
67 CallBack = CFUNCTYPE(c_int, c_int)
69 cb = CallBack(callback)
82 def callback(value): function in function:BasicWrapTestCase.test_callbacks
86 cb = MyCallback(callback)
93 cb = MyCallback(callback)
105 cb = AnotherCallback(callback)
110 # for the callback function.
119 def callback(value) function in function:BasicWrapTestCase.test_callbacks_2
137 def callback(value): function in function:BasicWrapTestCase.test_longlong_callbacks
    [all...]
  /system/bt/service/
gatt_server.h 122 // Callback type used to report the status of an asynchronous GATT server
129 // returns false if a service hasn't been started. Otherwise, |callback| will
137 bool AddService(const Service&, const ResultCallback& callback);
155 // the operation in |callback|.
157 // If |confirm| is true, then |callback| will be run when the remote device
163 const GattCallback& callback);
183 explicit PendingIndication(const GattCallback& callback)
184 : has_success(false), callback(callback) {}
187 GattCallback callback; member in struct:bluetooth::GattServer::PendingIndication
    [all...]
  /system/bt/service/ipc/binder/
bluetooth_le_advertiser_binder_server.cc 43 const android::sp<IBluetoothLeAdvertiserCallback>& callback,
49 *_aidl_return = RegisterInstanceBase(callback, adv_factory);
80 // Create a weak pointer and pass that to the callback to prevent a potential
84 auto callback = [=](bluetooth::BLEStatus status) { local
95 VLOG(1) << "Advertiser was removed before callback: " << advertiser_id;
103 callback)) {
125 // Create a weak pointer and pass that to the callback to prevent a potential
129 auto callback = [=](bluetooth::BLEStatus status) { local
148 if (!advertiser->StopAdvertising(callback)) {
172 bluetooth::BLEStatus status, android::sp<IInterface> callback,
    [all...]
  /system/bt/stack/hid/
hidd_int.h 51 tHID_DEV_HOST_CALLBACK* callback; member in struct:dev_ctb
hidh_int.h 50 tHID_HOST_DEV_CALLBACK* callback; /* Application callbacks */ member in struct:host_ctb
  /system/chre/core/
timer_pool.cc 193 auto callback = [](uint16_t /* eventType */, void *eventData) { local
196 LOGE("Timer callback invoked with no outstanding timers");
201 SystemCallbackType::TimerPoolTick, timerPoolPtr, callback);
  /system/core/libcutils/
properties.cpp 128 void (*callback)(const char* name, const char* value, void* cookie); member in struct:callback_data
134 data->callback(name, value, data->cookie);
  /system/extras/simpleperf/
IOEventLoop.cpp 27 std::function<bool()> callback; member in struct:IOEvent
30 IOEvent(IOEventLoop* loop, const std::function<bool()>& callback)
31 : loop(loop), e(nullptr), callback(callback), enabled(false) {}
77 if (!e->callback()) {
93 const std::function<bool()>& callback) {
97 return AddEvent(fd, EV_READ | EV_PERSIST, nullptr, callback);
101 const std::function<bool()>& callback) {
105 return AddEvent(fd, EV_WRITE | EV_PERSIST, nullptr, callback);
109 const std::function<bool()>& callback) {
    [all...]
  /system/netd/server/
NetlinkCommands.cpp 77 const NetlinkDumpCallback *callback) {
104 } else if ((flags & NLM_F_DUMP) && callback != nullptr) {
105 ret = processNetlinkDump(sock, *callback);
117 int processNetlinkDump(int sock, const NetlinkDumpCallback& callback) {
140 callback(nlh);
161 NetlinkDumpCallback callback = [writeSock, deleteAction, shouldDelete, what] (nlmsghdr *nlh) { local
193 if ((ret = sendNetlinkRequest(getAction, flags, iov, ARRAY_SIZE(iov), &callback)) != 0) {
  /system/tpm/tpm_manager/server/
binder_service.cc 65 const base::Callback<
67 const base::Callback<void(const ResponseProtobufType&)>&)>& method,
68 const base::Callback<void(ResponseProtobufType*)>& get_error_response,
71 base::Callback<void(const ResponseProtobufType&)> callback = local
79 callback.Run(response_proto);
82 method.Run(request_proto, callback);

Completed in 440 milliseconds

<<11121314151617181920>>