Searched defs:msg (Results 101 - 125 of 571) sorted by relevance

1234567891011>>

/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp162 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
163 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
166 void HDCP::observe(int msg, int ext1, int ext2) { argument
170 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp51 const sp<AMessage> &msg, sp<AMessage> *response) {
52 status_t err = msg->postAndAwaitResponse(response);
66 sp<AMessage> msg = new AMessage(kWhatConfigure, this); local
67 msg->setMessage("format", format);
68 msg->post();
76 sp<AMessage> msg = new AMessage(kWhatSetParameters, this); local
77 msg->setMessage("params", params);
78 msg->post();
82 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this); local
83 msg
50 PostAndAwaitResponse( const sp<AMessage> &msg, sp<AMessage> *response) argument
88 sp<AMessage> msg = new AMessage(kWhatPause, this); local
95 sp<AMessage> msg = new AMessage(kWhatGetInputBuffers, this); local
107 sp<AMessage> msg = new AMessage(kWhatResume, this); local
125 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this); local
130 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.cpp212 sp<AMessage> msg = mNotifyMsg->dup(); local
213 msg->setBuffer("access-unit", accessUnit);
214 msg->post();
228 sp<AMessage> msg = mNotifyMsg->dup(); local
229 msg->setInt32("eos", true);
230 msg->post();
H A DAAVCAssembler.cpp354 sp<AMessage> msg = mNotifyMsg->dup(); local
355 msg->setBuffer("access-unit", accessUnit);
356 msg->post();
378 sp<AMessage> msg = mNotifyMsg->dup(); local
379 msg->setInt32("eos", true);
380 msg->post();
H A DARTPSession.cpp126 void ARTPSession::onMessageReceived(const sp<AMessage> &msg) { argument
127 switch (msg->what()) {
131 if (msg->findInt32("first-rtcp", &firstRTCP)) {
139 CHECK(msg->findSize("track-index", &trackIndex));
142 if (msg->findInt32("eos", &eos) && eos) {
149 CHECK(msg->findBuffer("access-unit", &accessUnit));
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp179 void RepeaterSource::onMessageReceived(const sp<AMessage> &msg) { argument
180 switch (msg->what()) {
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegCompressor.cpp169 bool JpegCompressor::checkError(const char *msg) { argument
175 __FUNCTION__, msg, errBuffer);
/frameworks/base/core/java/android/app/job/
H A DJobService.java138 public void handleMessage(Message msg) { argument
139 final JobParameters params = (JobParameters) msg.obj;
140 switch (msg.what) {
160 final boolean needsReschedule = (msg.arg2 == 1);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothMasInstance.java100 public boolean msgSupported(int msg) { argument
101 return (mMsgTypes & msg) != 0;
H A DBluetoothPbap.java319 private static void log(String msg) { argument
320 Log.d(TAG, msg);
H A DBluetoothPbapClient.java307 private static void log(String msg) { argument
308 Log.d(TAG, msg);
H A DBluetoothSap.java410 private static void log(String msg) { argument
411 Log.d(TAG, msg);
H A DSdpMasRecord.java91 public boolean msgSupported(int msg) { argument
92 return (mSupportedMessageTypes & msg) != 0;
131 ret += "Supported msg types: " + mSupportedMessageTypes + "\n";
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java66 public void handleMessage(Message msg) { argument
70 WorkerArgs args = (WorkerArgs) msg.obj;
72 int token = msg.what;
73 int event = msg.arg1;
113 reply.arg1 = msg.arg1;
116 Log.d(TAG, "WorkerHandler.handleMsg: msg.arg1=" + msg.arg1
168 Message msg = mWorkerThreadHandler.obtainMessage(token);
169 msg.arg1 = EVENT_ARG_QUERY;
179 msg
330 handleMessage(Message msg) argument
[all...]
/frameworks/base/core/java/android/nfc/cardemulation/
H A DHostApduService.java247 public void handleMessage(Message msg) { argument
248 switch (msg.what) {
250 Bundle dataBundle = msg.getData();
254 if (mNfcService == null) mNfcService = msg.replyTo;
286 msg.replyTo = mMessenger;
287 mNfcService.send(msg);
295 onDeactivated(msg.arg1);
303 msg.replyTo = mMessenger;
304 mNfcService.send(msg);
310 super.handleMessage(msg);
[all...]
/frameworks/base/core/java/android/service/notification/
H A DConditionProviderService.java194 public void handleMessage(Message msg) { argument
197 switch(msg.what) {
204 onSubscribe((Uri)msg.obj);
208 onUnsubscribe((Uri)msg.obj);
/frameworks/base/core/java/android/view/
H A DWindowId.java82 public void handleMessage(Message msg) { argument
83 switch (msg.what) {
85 onFocusGained((WindowId)msg.obj);
88 onFocusLost((WindowId)msg.obj);
91 super.handleMessage(msg);
/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java66 public JsDialogHelper(JsPromptResult result, Message msg) { argument
68 mDefaultValue = msg.getData().getString("default");
69 mMessage = msg.getData().getString("message");
70 mType = msg.getData().getInt("type");
71 mUrl = msg.getData().getString("url");
/frameworks/base/core/java/android/widget/
H A DFilter.java225 * @param msg the filtering request
227 public void handleMessage(Message msg) { argument
228 int what = msg.what;
232 RequestArguments args = (RequestArguments) msg.obj;
276 * @param msg the filtering results
279 public void handleMessage(Message msg) { argument
280 RequestArguments args = (RequestArguments) msg.obj;
/frameworks/base/core/java/com/android/internal/midi/
H A DMidiConstants.java83 * @param msg
88 public static boolean isAllActiveSensing(byte[] msg, int offset, argument
93 byte b = msg[offset + i];
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp82 * public static native int println_native(int buffer, int priority, String tag, String msg)
88 const char* msg = NULL; local
102 msg = env->GetStringUTFChars(msgObj, NULL);
104 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
108 env->ReleaseStringUTFChars(msgObj, msg);
/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutDirectionsTest.java237 private void expectDirections(String msg, Directions expected, Directions result) { argument
/frameworks/base/media/java/android/media/midi/
H A DMidiInputPort.java76 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { argument
77 if (offset < 0 || count < 0 || offset + count > msg.length) {
88 int length = MidiPortImpl.packData(msg, offset, count, timestamp, mBuffer);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMessageArea.java94 public void setMessage(CharSequence msg, boolean important) { argument
95 if (!TextUtils.isEmpty(msg) && important) {
96 securityMessageChanged(msg);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceManager.java170 private void log(String msg) { argument
172 Log.d(TAG, msg);

Completed in 912 milliseconds

1234567891011>>