Searched defs:send (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/media/java/android/media/midi/
H A DMidiReceiver.java90 * Called to send MIDI data to the receiver without a timestamp.
96 * communication, reset all controllers and send all notes off.
103 public void send(byte[] msg, int offset, int count) throws IOException { method in class:MidiReceiver
105 send(msg, offset, count, 0L);
109 * Called to send MIDI data to the receiver with a specified timestamp.
115 * communication, reset all controllers and send all notes off.
123 public void send(byte[] msg, int offset, int count, long timestamp) method in class:MidiReceiver
/frameworks/base/tests/AmSlam/src/test/amslam/
H A DPongReceiver.java29 void onPingPongResponse(long send, long bounce, long recv, String remote); argument
H A DMainActivity.java118 public void onPingPongResponse(long send, long bounce, long recv, String remote) { argument
119 if (send < mBatchStartTime || mPendingResponses == 0) {
121 Log.e(TAG, "send " + send + ", bounce " + bounce + ", recv " + recv
127 mTotalTime += (recv - send);
128 mTotalPingTime += (bounce - send);
/frameworks/native/libs/binder/
H A DIResultReceiver.cpp39 virtual void send(int32_t resultCode) { function in class:android::BpResultReceiver
58 send(resultCode);
H A DBinder.cpp69 Parcel send; local
71 send.writeFileDescriptor(in);
72 send.writeFileDescriptor(out);
73 send.writeFileDescriptor(err);
75 send.writeInt32(numArgs);
77 send.writeString16(args[i]);
79 send.writeStrongBinder(callback != NULL ? IInterface::asBinder(callback) : NULL);
80 send.writeStrongBinder(resultReceiver != NULL ? IInterface::asBinder(resultReceiver) : NULL);
81 return target->transact(SHELL_COMMAND_TRANSACTION, send, &reply);
250 resultReceiver->send(INVALID_OPERATIO
[all...]
H A DBpBinder.cpp159 Parcel send, reply; local
162 INTERFACE_TRANSACTION, send, &reply);
187 Parcel send; local
189 status_t err = transact(PING_TRANSACTION, send, &reply);
197 Parcel send; local
199 send.writeFileDescriptor(fd);
201 send.writeInt32(numArgs);
203 send.writeString16(args[i]);
205 status_t err = transact(DUMP_TRANSACTION, send, &reply);
/frameworks/base/core/java/android/os/
H A DMessenger.java20 * Reference to a Handler, which others can use to send messages to it.
50 * @param message The Message to send. Usually retrieved through
56 public void send(Message message) throws RemoteException { method in class:Messenger
57 mTarget.send(message);
H A DResultReceiver.java24 * then pass to others and send through IPC, and receive results they
25 * supply with {@link #send}.
55 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
81 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
93 mReceiver.send(resultCode, resultData);
H A DHandler.java27 * A Handler allows you to send and process {@link Message} and Runnable
853 public void send(Message msg) { method in class:Handler.MessengerImpl
H A DHwParcel.java527 public native final void send(); method in class:HwParcel
/frameworks/support/compat/src/main/java/android/support/v4/os/
H A DResultReceiver.java32 * then pass to others and send through IPC, and receive results they
33 * supply with {@link #send}.
67 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
93 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
105 mReceiver.send(resultCode, resultData);
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h220 const bool send = (send_buffer && send_length); local
224 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
H A DApduSender.java90 public void send( method in class:ApduSender
128 // Just close the channel if we don't have commands to send or an error
140 * Sends the current command and then continue to send the next one. If this is the last
/frameworks/native/cmds/cmd/
H A Dcmd.cpp150 virtual void send(int32_t resultCode) { function in class:MyResultReceiver
/frameworks/native/libs/vr/libpdx/
H A Dclient_tests.cpp484 iovec send[3] = {}; local
495 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 2, send, 3, recv, 4))
497 EXPECT_TRUE(transaction_.SendVector<void>(2, send, 3, recv, 4));
499 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 3, send, 3, nullptr, 0))
501 EXPECT_TRUE(transaction_.SendVector<void>(3, send, nullptr));
507 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 5, send, 3, recv, 4))
509 EXPECT_TRUE(transaction_.SendVector<void>(5, send, recv));
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.cpp305 send(buffer, true /* isRTCP */);
311 void ARTPWriter::send(const sp<ABuffer> &buffer, bool isRTCP) { function in class:android::ARTPWriter
567 send(buffer, true /* isRTCP */);
604 send(buffer, false /* isRTCP */);
651 send(buffer, false /* isRTCP */);
717 send(buffer, false /* isRTCP */);
825 send(buffer, false /* isRTCP */);
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java237 public void send(int code, Intent intent, String resolvedType, IBinder whitelistToken, method in class:PendingIntentRecord
358 Slog.w(TAG, "Unable to send startActivity intent", e);
380 Slog.w(TAG, "Unable to send startActivity intent", e);
390 Slog.w(TAG, "Unable to send startService intent", e);
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DMagnificationGestureHandlerTest.java216 send(downEvent());
248 send(downEvent());
249 send(pointerEvent(ACTION_POINTER_DOWN, DEFAULT_X * 2, DEFAULT_Y));
413 send(downEvent());
418 send(downEvent());
427 send(downEvent());
428 send(pointerEvent(ACTION_POINTER_DOWN, DEFAULT_X * 2, DEFAULT_Y));
432 send(pointerEvent(ACTION_MOVE, DEFAULT_X * 2, DEFAULT_Y * 3));
433 send(pointerEvent(ACTION_MOVE, DEFAULT_X * 2, DEFAULT_Y * 4));
468 send(upEven
532 private void send(MotionEvent event) { method in class:MagnificationGestureHandlerTest
[all...]
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationManagerCompat.java306 * Helper class to manage a queue of pending tasks to send to notification side channel
539 task.send(record.service);
564 /** Queue of pending tasks to send to this listener service */
587 void send(INotificationSideChannel service) throws RemoteException; method in interface:NotificationManagerCompat.Task
604 public void send(INotificationSideChannel service) throws RemoteException { method in class:NotificationManagerCompat.NotifyTask
640 public void send(INotificationSideChannel service) throws RemoteException { method in class:NotificationManagerCompat.CancelTask
/frameworks/base/core/java/android/app/
H A DPendingIntent.java128 * {@link #send()} is called on it, it will be automatically
129 * canceled for you and any future attempt to send through it will fail.
164 * This means that the additional intent argument passed to the send
171 * Exception thrown when trying to send through a PendingIntent that
188 * Callback interface for discovering when a send operation has
197 * Called when a send operation as completed.
201 * @param resultCode The final result code determined by the send.
301 * of the intent that can be supplied when the actual send happens.
332 * of the intent that can be supplied when the actual send happens.
406 * {@link #send(Contex
687 public void send() throws CanceledException { method in class:PendingIntent
701 public void send(int code) throws CanceledException { method in class:PendingIntent
721 public void send(Context context, int code, @Nullable Intent intent) method in class:PendingIntent
742 public void send(int code, @Nullable OnFinished onFinished, @Nullable Handler handler) method in class:PendingIntent
780 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
823 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
870 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_HwParcel.cpp211 void JHwParcel::send() { function in class:android::JHwParcel
411 JHwParcel::GetNativeContext(env, thiz)->send();
957 { "send", "()V", (void *)JHwParcel_native_send },
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java119 * on the main application thread. Publishers can send() events to synchronously call subscribers
182 * so it may be unsafe to edit, change, or re-send the event again.
200 * <li>sendForResult&lt;ReturnType&gt;(Event) to send and get a result, but who will send the
557 public void send(Event event) { method in class:EventBus
561 throw new RuntimeException("Can not send() a message from a non-main thread.");
565 logWithPid("send(" + event.getClass().getSimpleName() + ")");
598 send(event);
608 /** Prevent send()ing an InterprocessEvent */
610 public void send(InterprocessEven method in class:EventBus
[all...]
/frameworks/base/services/core/java/com/android/server/power/batterysaver/
H A DBatterySavingStats.java193 public void setSendTronLog(boolean send) { argument
195 mSendTronLog = send;
/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java644 private void send(int what, int arg1, int arg2, Object obj) { method in class:PhoneStateListener.IPhoneStateListenerStub
652 send(LISTEN_SERVICE_STATE, 0, 0, serviceState);
656 send(LISTEN_SIGNAL_STRENGTH, asu, 0, null);
660 send(LISTEN_MESSAGE_WAITING_INDICATOR, mwi ? 1 : 0, 0, null);
664 send(LISTEN_CALL_FORWARDING_INDICATOR, cfi ? 1 : 0, 0, null);
669 send(LISTEN_CELL_LOCATION, 0, 0, location);
673 send(LISTEN_CALL_STATE, state, 0, incomingNumber);
677 send(LISTEN_DATA_CONNECTION_STATE, state, networkType, null);
681 send(LISTEN_DATA_ACTIVITY, direction, 0, null);
685 send(LISTEN_SIGNAL_STRENGTH
[all...]
/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp82 template <typename T> void send(const T& v) { function in class:Pipe
240 p.send(results);

Completed in 194 milliseconds

12