Searched defs:postMessage (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DWebMessagePort.java85 public abstract void postMessage(WebMessage message); method in class:WebMessagePort
/frameworks/support/webkit/src/main/java/androidx/webkit/
H A DWebMessagePortCompat.java88 public abstract void postMessage(@NonNull WebMessageCompat message); method in class:WebMessagePortCompat
/frameworks/support/webkit/src/main/java/androidx/webkit/internal/
H A DWebMessagePortImpl.java44 public void postMessage(WebMessageCompat message) { method in class:WebMessagePortImpl
46 mFrameworksImpl.postMessage(compatToFrameworkMessage(message));
/frameworks/support/browser/src/androidTest/java/androidx/browser/customtabs/
H A DTestCustomTabsService.java70 protected int postMessage(CustomTabsSessionToken sessionToken, String message, Bundle extras) { method in class:TestCustomTabsService
/frameworks/support/browser/src/main/java/androidx/browser/customtabs/
H A DPostMessageServiceConnection.java44 * After this, this {@link PostMessageServiceConnection} can be used for sending postMessage
77 * Notifies the client that the postMessage channel requested with
100 * {@link CustomTabsSession} has sent a postMessage. If postMessage() is called from a single
105 * @return Whether the postMessage was sent to the remote successfully.
107 public final boolean postMessage(String message, Bundle extras) { method in class:PostMessageServiceConnection
H A DCustomTabsService.java66 * Indicates that the postMessage request was accepted.
70 * Indicates that the postMessage request was not allowed due to a bad argument or requesting
75 * Indicates that the postMessage request has failed due to a {@link RemoteException} .
79 * Indicates that the postMessage request has failed due to an internal error on the browser
156 public int postMessage(ICustomTabsCallback callback, String message, Bundle extras) {
157 return CustomTabsService.this.postMessage(
269 * Sends a request to create a two way postMessage channel between the client and the browser
274 * during the postMessage communication.
283 * Sends a postMessage request using the origin communicated via
292 * @return An integer constant about the postMessage reques
296 protected abstract int postMessage( method in class:CustomTabsService
[all...]
H A DCustomTabsSession.java166 * Sends a request to create a two way postMessage channel between the client and the browser.
169 * during the postMessage communication.
184 * Sends a postMessage request using the origin communicated via
192 * @return An integer constant about the postMessage request result. Will return
196 public int postMessage(String message, Bundle extras) { method in class:CustomTabsSession
199 return mService.postMessage(mCallback, message, extras);
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp126 status_t MessageQueue::postMessage(const sp<MessageBase>& messageHandler, nsecs_t relTime) { function in class:android::impl::MessageQueue
/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
H A DSoundTriggerTestService.java247 postMessage("Loading model: " + modelInfo.name);
268 postMessage("Unloading model: " + modelInfo.name);
293 postMessage("Reloading model: " + modelInfo.name);
319 postMessage("Creating SoundTriggerDetector for " + modelInfo.name);
324 postMessage("Starting recognition for " + modelInfo.name + ", UUID=" + modelInfo.modelUuid);
348 postMessage("Triggering stop recognition for " +
366 postMessage("Playing trigger audio for " + modelInfo.name);
369 postMessage("No trigger audio for " + modelInfo.name);
380 postMessage("Playing captured audio for " + modelInfo.name);
385 postMessage("N
711 private void postMessage(String msg) { method in class:SoundTriggerTestService
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaController.java567 private final void postMessage(int what, Object obj, Bundle data) { method in class:MediaController
1071 controller.postMessage(MSG_DESTROYED, null, null);
1079 controller.postMessage(MSG_EVENT, event, extras);
1087 controller.postMessage(MSG_UPDATE_PLAYBACK_STATE, state, null);
1095 controller.postMessage(MSG_UPDATE_METADATA, metadata, null);
1105 controller.postMessage(MSG_UPDATE_QUEUE, queue, null);
1113 controller.postMessage(MSG_UPDATE_QUEUE_TITLE, title, null);
1121 controller.postMessage(MSG_UPDATE_EXTRAS, extras, null);
1131 controller.postMessage(MSG_UPDATE_VOLUME, info, null);

Completed in 229 milliseconds