Home
last modified time | relevance | path

Searched refs:sender (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DDefaultPhoneNotifier.java58 public void notifyPhoneState(Phone sender) { in notifyPhoneState() argument
59 Call ringingCall = sender.getRingingCall(); in notifyPhoneState()
60 int subId = sender.getSubId(); in notifyPhoneState()
68 convertCallState(sender.getState()), incomingNumber); in notifyPhoneState()
76 public void notifyServiceState(Phone sender) { in notifyServiceState() argument
77 ServiceState ss = sender.getServiceState(); in notifyServiceState()
78 int phoneId = sender.getPhoneId(); in notifyServiceState()
79 int subId = sender.getSubId(); in notifyServiceState()
82 + " sender=" + sender + " phondId=" + phoneId + " subId=" + subId); in notifyServiceState()
97 public void notifySignalStrength(Phone sender) { in notifySignalStrength() argument
[all …]
DPhoneNotifier.java30 public void notifyPhoneState(Phone sender); in notifyPhoneState() argument
32 public void notifyServiceState(Phone sender); in notifyServiceState() argument
34 public void notifyCellLocation(Phone sender); in notifyCellLocation() argument
36 public void notifySignalStrength(Phone sender); in notifySignalStrength() argument
38 public void notifyMessageWaitingChanged(Phone sender); in notifyMessageWaitingChanged() argument
40 public void notifyCallForwardingChanged(Phone sender); in notifyCallForwardingChanged() argument
43 public void notifyDataConnection(Phone sender, String reason, String apnType, in notifyDataConnection() argument
46 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType); in notifyDataConnectionFailed() argument
48 public void notifyDataActivity(Phone sender); in notifyDataActivity() argument
50 public void notifyOtaspChanged(Phone sender, int otaspMode); in notifyOtaspChanged() argument
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTestPhoneNotifier.java33 public void notifyPhoneState(Phone sender) { in notifyPhoneState() argument
36 public void notifyServiceState(Phone sender) { in notifyServiceState() argument
39 public void notifyCellLocation(Phone sender) { in notifyCellLocation() argument
42 public void notifySignalStrength(Phone sender) { in notifySignalStrength() argument
45 public void notifyMessageWaitingChanged(Phone sender) { in notifyMessageWaitingChanged() argument
48 public void notifyCallForwardingChanged(Phone sender) { in notifyCallForwardingChanged() argument
51 public void notifyDataConnection(Phone sender, String reason, String apnType) { in notifyDataConnection() argument
54 public void notifyDataConnection(Phone sender, String reason, String apnType, in notifyDataConnection() argument
58 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType) { in notifyDataConnectionFailed() argument
61 public void notifyDataActivity(Phone sender) { in notifyDataActivity() argument
[all …]
/frameworks/base/core/jni/
Dandroid_view_InputEventSender.cpp248 sp<NativeInputEventSender> sender = new NativeInputEventSender(env, in nativeInit() local
250 status_t status = sender->initialize(); in nativeInit()
258 sender->incStrong(gInputEventSenderClassInfo.clazz); // retain a reference for the object in nativeInit()
259 return reinterpret_cast<jlong>(sender.get()); in nativeInit()
263 sp<NativeInputEventSender> sender = in nativeDispose() local
265 sender->dispose(); in nativeDispose()
266 sender->decStrong(gInputEventSenderClassInfo.clazz); // drop reference held by the object in nativeDispose()
271 sp<NativeInputEventSender> sender = in nativeSendKeyEvent() local
275 status_t status = sender->sendKeyEvent(seq, &event); in nativeSendKeyEvent()
281 sp<NativeInputEventSender> sender = in nativeSendMotionEvent() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaServiceCategoryProgramHandler.java138 String sender = extras.getString("sender");
139 if (sender == null) {
163 PhoneNumberUtils.cdmaCheckAndProcessPlusCodeForSms(sender));
/frameworks/base/core/java/android/content/
DIntentSender.java339 public static void writeIntentSenderOrNullToParcel(IntentSender sender, in writeIntentSenderOrNullToParcel() argument
341 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder() in writeIntentSenderOrNullToParcel()
/frameworks/base/core/java/android/app/
DIActivityManager.java206 public void cancelIntentSender(IIntentSender sender) throws RemoteException; in cancelIntentSender() argument
209 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException; in getPackageForIntentSender() argument
210 public int getUidForIntentSender(IIntentSender sender) throws RemoteException; in getUidForIntentSender() argument
263 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg) in noteWakeupAlarm() argument
384 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException; in isIntentSenderTargetedToPackage() argument
386 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException; in isIntentSenderAnActivity() argument
388 public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException; in getIntentForIntentSender() argument
390 public String getTagForIntentSender(IIntentSender sender, String prefix) throws RemoteException; in getTagForIntentSender() argument
DPendingIntent.java967 public static void writePendingIntentOrNullToParcel(@Nullable PendingIntent sender, in writePendingIntentOrNullToParcel() argument
969 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder() in writePendingIntentOrNullToParcel()
DActivityManagerNative.java3784 public void cancelIntentSender(IIntentSender sender) throws RemoteException { in cancelIntentSender() argument
3788 data.writeStrongBinder(sender.asBinder()); in cancelIntentSender()
3794 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException { in getPackageForIntentSender() argument
3798 data.writeStrongBinder(sender.asBinder()); in getPackageForIntentSender()
3806 public int getUidForIntentSender(IIntentSender sender) throws RemoteException { in getUidForIntentSender() argument
3810 data.writeStrongBinder(sender.asBinder()); in getUidForIntentSender()
4115 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg) in noteWakeupAlarm() argument
4119 data.writeStrongBinder(sender.asBinder()); in noteWakeupAlarm()
4880 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException { in isIntentSenderTargetedToPackage() argument
4884 data.writeStrongBinder(sender.asBinder()); in isIntentSenderTargetedToPackage()
[all …]
/frameworks/base/core/java/android/view/
DInputEventSender.java43 private static native long nativeInit(WeakReference<InputEventSender> sender, in nativeInit() argument
/frameworks/base/docs/html/training/activity-testing/
Dactivity-functional-testing.jd48 UI control is pushed in the sender {@link android.app.Activity}.</li>
50 correct data based on the user's input in the sender
/frameworks/base/docs/html/google/gcm/
Dserver.jd85 should be unique per sender ID.</li>
127 wait for a response. This mechanism is synchronous and blocks the sender from sending
314 Or the sender itself might request
360 <p>To make this possible, all you need to do is have each sender generate its own
361 project number. Then include those IDs in the sender field, separated by commas,
Dhelper.jd120 <p>The intent service must also define its sender ID(s). It does this as follows:</p>
172 Sender sender = new Sender(myApiKey);
174 MulticastResult result = sender.send(message, devices, 5);</pre>
Dgs.jd48 <a href="{@docRoot}google/gcm/gcm.html#senderid">GCM sender ID</a>.</li>
Dccs.jd93 messages destined for its GCM sender ID, regardless of which environment (gcm or
95 {@code gcm-preprod.googleapis.com:5236} should use a different GCM sender ID to
105 {@code &lt;your_GCM_Sender_Id&gt;&#64;gcm.googleapis.com} (GCM sender ID)
106 and the API key as the password, where the sender ID and API key are the same
161 sender ID), but always present.</li>
793 final long senderId = 1234567890L; // your GCM sender id
Dgcm.jd71 <a href="gs.html#create-proj">Getting Started</a>. The sender
168 <li>Parses the message header to verify client app sender information.
Dserver-ref.jd295 <td>There was an error authenticating the sender account.
659 … <td>The sender account used to send a message couldn't be authenticated. Possible causes are:<br>
676 of those sender IDs when sending messages to the client app. If you switch to a different
677 sender, the existing registration IDs won't work.</td>
Dclient.jd274 * Substitute you own sender ID here. This is the project number you got
662 <li>Follow the instructions in <a href="gs.html">Getting Started</a> to get your sender ID and
669 your sender ID and API key.
Dhttp.jd195 message but it has another canonical registration ID for that device, so sender
284 If you switch to a different sender, the existing registration IDs won't work.
325 <dd>The sender account that you're trying to use to send a message couldn't be
/frameworks/base/docs/html/google/play-services/
Dcast.jd52 is known as the sender app and can perform a variety of actions using the Google Cast APIs
/frameworks/base/docs/html/training/auto/messaging/
Dindex.jd250 portion of a conversation from a particular sender. It contains a list of messages from the
251 sender.
266 // from a particular sender.
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java707 PendingIntent sender = PendingIntent.getBroadcast(mContext, in doKeyguardLaterLocked() local
709 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, when, sender); in doKeyguardLaterLocked()
/frameworks/base/docs/html/training/cloudsync/
Dgcm.jd62 MulticastResult result = sender.send(message, regIds, 5);
65 MulticastResult result = sender.sendNoRetry(message, regIds);
/frameworks/base/docs/html/tv/adt-1/
Dindex.jd204 <strong>Will my Google Cast sender apps work on ADT-1 just like Chromecast?</strong>
209 <strong>Note:</strong> Your iOS sender app requires the Google Cast iOS API version 2.2.1
/frameworks/base/docs/html/design/patterns/
Dnotifications_k.jd30 <li>the sending application's notification icon or the sender's photo</li>
33 <li>a secondary icon to identify the sending application when the sender's

12