Searched refs:msg (Results 151 - 175 of 1035) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/usage/
H A DCacheQuotaService.java81 Message msg = mHandler.obtainMessage(ServiceHandler.MSG_SEND_LIST, pair);
82 mHandler.sendMessage(msg);
94 public void handleMessage(Message msg) { argument
95 final int action = msg.what;
99 (Pair<RemoteCallback, List<CacheQuotaHint>>) msg.obj;
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java126 public void executeMessage(Message msg) { argument
129 if (inputMethod == null && msg.what != DO_DUMP) {
130 Log.w(TAG, "Input method reference was null, ignoring message: " + msg.what);
134 switch (msg.what) {
140 SomeArgs args = (SomeArgs)msg.obj;
155 inputMethod.attachToken((IBinder)msg.obj);
159 inputMethod.bindInput((InputBinding)msg.obj);
166 final SomeArgs args = (SomeArgs) msg.obj;
167 final int missingMethods = msg.arg1;
168 final boolean restarting = msg
[all...]
H A DIInputMethodSessionWrapper.java77 public void executeMessage(Message msg) { argument
81 switch (msg.what) {
84 SomeArgs args = (SomeArgs)msg.obj;
91 switch (msg.what) {
96 mInputMethodSession.displayCompletions((CompletionInfo[])msg.obj);
99 mInputMethodSession.updateExtractedText(msg.arg1,
100 (ExtractedText)msg.obj);
103 SomeArgs args = (SomeArgs)msg.obj;
110 mInputMethodSession.updateCursor((Rect)msg.obj);
114 mInputMethodSession.updateCursorAnchorInfo((CursorAnchorInfo)msg
[all...]
/frameworks/base/core/java/android/view/
H A DInputFilter.java219 public void handleMessage(Message msg) { argument
220 switch (msg.what) {
222 mHost = (IInputFilterHost) msg.obj;
241 final InputEvent event = (InputEvent)msg.obj;
246 onInputEvent(event, msg.arg1);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareRttStateManager.java121 public void handleMessage(Message msg) { argument
122 if (VDBG) Log.v(TAG, "handleMessage(): " + msg.what);
125 switch (msg.what) {
127 if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
144 WifiAwareClientState client = getAndRemovePendingOperationClient(msg.arg2);
146 Log.e(TAG, "handleMessage(): RTT message (" + msg.what
148 + msg.arg2);
152 switch (msg.what) {
154 int rangingId = msg.arg2;
156 msg
[all...]
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustAgentWrapper.java120 public void handleMessage(Message msg) {
121 switch (msg.what) {
129 mMessage = (CharSequence) msg.obj;
130 int flags = msg.arg1;
131 long durationMs = msg.getData().getLong(DATA_DURATION);
167 if (msg.what == MSG_REVOKE_TRUST) {
179 IBinder token = (IBinder) msg.obj;
180 boolean result = msg.arg1 != 0;
195 mManagingTrust = msg.arg1 != 0;
204 byte[] eToken = msg
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp61 virtual void onMessageReceived(const sp<AMessage> &msg);
95 status_t postSynchronouslyAndReturnError(const sp<AMessage> &msg);
149 const sp<AMessage> &msg) {
151 status_t err = msg->postAndAwaitResponse(&response);
173 sp<AMessage> msg = new AMessage(kWhatStart, this); local
174 msg->setObject("meta", meta);
175 return postSynchronouslyAndReturnError(msg);
201 sp<AMessage> msg = new AMessage(kWhatStop, this); local
202 (void)postSynchronouslyAndReturnError(msg);
221 sp<AMessage> msg local
148 postSynchronouslyAndReturnError( const sp<AMessage> &msg) argument
226 onMessageReceived(const sp<AMessage> &msg) argument
339 sp<AMessage> msg = new AMessage(kWhatSetInputBufferTimeOffset, mReflector); local
345 sp<AMessage> msg = new AMessage(kWhatGetFirstSampleSystemTimeUs, mReflector); local
356 sp<AMessage> msg = new AMessage(kWhatStart, mReflector); local
362 sp<AMessage> msg = new AMessage(kWhatStop, mReflector); local
371 sp<AMessage> msg = new AMessage(kWhatSetStopTimeOffset, mReflector); local
377 sp<AMessage> msg = new AMessage(kWhatPause, mReflector); local
584 postSynchronouslyAndReturnError( const sp<AMessage> &msg) argument
806 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp162 sp<AMessage> msg = new AMessage(kWhatQueueBuffer, this); local
163 msg->setInt32("queueGeneration", getQueueGeneration(audio));
164 msg->setInt32("audio", static_cast<int32_t>(audio));
165 msg->setObject("buffer", buffer);
166 msg->setMessage("notifyConsumed", notifyConsumed);
167 msg->post();
173 sp<AMessage> msg = new AMessage(kWhatQueueEOS, this); local
174 msg->setInt32("queueGeneration", getQueueGeneration(audio));
175 msg->setInt32("audio", static_cast<int32_t>(audio));
176 msg
181 sp<AMessage> msg = new AMessage(kWhatConfigPlayback, this); local
216 sp<AMessage> msg = new AMessage(kWhatGetPlaybackSettings, this); local
249 sp<AMessage> msg = new AMessage(kWhatConfigSync, this); local
268 sp<AMessage> msg = new AMessage(kWhatGetSyncSettings, this); local
306 sp<AMessage> msg = new AMessage(kWhatFlush, this); local
331 sp<AMessage> msg = new AMessage(kWhatSetVideoFrameRate, this); local
402 sp<AMessage> msg = new AMessage(kWhatOpenAudioSink, this); local
424 sp<AMessage> msg = new AMessage(kWhatCloseAudioSink, this); local
444 sp<AMessage> msg = new AMessage(kWhatChangeAudioFormat, this); local
451 onMessageReceived(const sp<AMessage> &msg) argument
775 sp<AMessage> msg = new AMessage(kWhatDrainAudioQueue, this); local
1227 sp<AMessage> msg = new AMessage(kWhatDrainVideoQueue, this); local
1412 sp<AMessage> msg = new AMessage(kWhatEOS, this); local
1426 sp<AMessage> msg = new AMessage(kWhatAudioTearDown, this); local
1431 onQueueBuffer(const sp<AMessage> &msg) argument
1530 onQueueEOS(const sp<AMessage> &msg) argument
1562 onFlush(const sp<AMessage> &msg) argument
1675 dropBufferIfStale( bool audio, const sp<AMessage> &msg) argument
1832 sp<AMessage> msg = new AMessage(kWhatAudioOffloadPauseTimeout, this); local
[all...]
H A DNuPlayer.cpp140 explicit PostMessageAction(const sp<AMessage> &msg) argument
141 : mMessage(msg) {
223 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this); local
227 msg->setObject("source", new StreamingSource(notify, source));
228 msg->post();
254 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this); local
294 msg->setObject("source", source);
295 msg->post();
299 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this); local
316 msg
322 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this); local
340 sp<AMessage> msg = new AMessage(kWhatGetDefaultBufferingSettings, this); local
353 sp<AMessage> msg = new AMessage(kWhatSetBufferingSettings, this); local
371 sp<AMessage> msg = new AMessage(kWhatSetVideoSurface, this); local
383 sp<AMessage> msg = new AMessage(kWhatSetAudioSink, this); local
401 sp<AMessage> msg = new AMessage(kWhatConfigPlayback, this); local
412 sp<AMessage> msg = new AMessage(kWhatGetPlaybackSettings, this); local
425 sp<AMessage> msg = new AMessage(kWhatConfigSync, this); local
437 sp<AMessage> msg = new AMessage(kWhatGetSyncSettings, this); local
474 sp<AMessage> msg = new AMessage(kWhatSeek, this); local
533 onMessageReceived(const sp<AMessage> &msg) argument
1645 sp<AMessage> msg = new AMessage(kWhatScanSources, this); local
1958 notifyListener(int msg, int ext1, int ext2, const Parcel *in) argument
2042 sp<AMessage> msg = new AMessage(kWhatGetTrackInfo, this); local
2051 sp<AMessage> msg = new AMessage(kWhatGetSelectedTrack, this); local
2064 sp<AMessage> msg = new AMessage(kWhatSelectTrack, this); local
2131 sp<AMessage> msg = new AMessage(kWhatPollDuration, this); local
2318 onSourceNotify(const sp<AMessage> &msg) argument
2567 onClosedCaptionNotify(const sp<AMessage> &msg) argument
2696 sp<AMessage> msg = new AMessage(kWhatPrepareDrm, this); local
2721 sp<AMessage> msg = new AMessage(kWhatReleaseDrm, this); local
2736 onPrepareDrm(const sp<AMessage> &msg) argument
2833 sp<AMessage> msg = new AMessage; local
[all...]
H A DNuPlayerDecoderPassThrough.cpp96 bool NuPlayer::DecoderPassThrough::isStaleReply(const sp<AMessage> &msg) { argument
98 CHECK(msg->findInt32("generation", &generation));
115 sp<AMessage> msg = new AMessage(); local
117 err = fetchInputData(msg);
122 onInputBufferFetched(msg);
243 sp<AMessage> msg = mNotify->dup(); local
244 msg->setInt32("what", kWhatInputDiscontinuity);
247 msg->setInt32("formatChange", false);
248 msg->post();
283 const sp<AMessage> &msg) {
282 onInputBufferFetched( const sp<AMessage> &msg) argument
414 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
H A DNuPlayerDecoder.cpp120 sp<AMessage> msg = new AMessage(kWhatSetVideoSurface, this); local
122 msg->setObject("surface", surface);
124 status_t err = msg->postAndAwaitResponse(&response);
131 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) { argument
132 ALOGV("[%s] onMessage: %s", mComponentName.c_str(), msg->debugString().c_str());
134 switch (msg->what()) {
138 CHECK(msg->findInt32("callbackID", &cbID));
151 CHECK(msg->findInt32("index", &index));
165 CHECK(msg->findInt32("index", &index));
166 CHECK(msg
556 sp<AMessage> msg = new AMessage(); local
593 sp<AMessage> msg = new AMessage(kWhatDrmReleaseCrypto, this); local
607 onReleaseCrypto(const sp<AMessage>& msg) argument
662 sp<AMessage> msg = new AMessage(); local
677 sp<AMessage> msg = *mPendingInputMessages.begin(); local
823 isStaleReply(const sp<AMessage> &msg) argument
951 onInputBufferFetched(const sp<AMessage> &msg) argument
1088 onRenderBuffer(const sp<AMessage> &msg) argument
1145 sp<AMessage> msg = mNotify->dup(); local
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java180 on msg {
183 defer(msg);
195 on msg {
207 on msg {
213 defer(msg);
227 on msg {
463 * @param msg
470 LogRec(StateMachine sm, Message msg, String info, IState state, IState orgState, argument
472 update(sm, msg, info, state, orgState, transToState);
481 public void update(StateMachine sm, Message msg, Strin argument
665 add(StateMachine sm, Message msg, String messageInfo, IState state, IState orgState, IState transToState) argument
771 processMessage(Message msg) argument
782 processMessage(Message msg) argument
794 handleMessage(Message msg) argument
834 performTransitions(State msgProcessedState, Message msg) argument
983 processMsg(Message msg) argument
1245 deferMessage(Message msg) argument
1268 isQuit(Message msg) argument
1333 onPreHandleMessage(Message msg) argument
1341 onPostHandleMessage(Message msg) argument
1437 deferMessage(Message msg) argument
1446 unhandledMessage(Message msg) argument
1454 haltedProcessMessage(Message msg) argument
1570 recordLogRec(Message msg) argument
1581 getLogRecString(Message msg) argument
1770 sendMessage(Message msg) argument
1849 sendMessageDelayed(Message msg, long delayMillis) argument
1934 sendMessageAtFrontOfQueue(Message msg) argument
1999 isQuit(Message msg) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraErrorCollector.java126 * @param msg Message to be logged when check fails.
129 public boolean expectTrue(String msg, boolean condition) { argument
131 addMessage(msg);
140 * @param msg Message to be logged when check fails.
147 public <T> boolean expectEquals(String msg, T expected, T actual) { argument
153 addMessage(String.format("%s (expected = %s, actual = %s) ", msg, expected,
164 * @param msg Message to be logged when check fails.
169 public <T> boolean expectNotEquals(String msg, T expected, T actual) { argument
171 addMessage(String.format("%s (expected = %s, actual = %s) ", msg, expected,
182 * @param msg Messag
189 expectEquals(String msg, T[] expected, T[] actual) argument
214 expectNotEquals(String msg, T[] expected, T[] actual) argument
236 expectGreater(String msg, T expected, T actual) argument
250 expectGreaterOrEqual(String msg, T expected, T actual) argument
264 expectLess(String msg, T expected, T actual) argument
278 expectLessOrEqual(String msg, T expected, T actual) argument
293 expectEquals(String msg, float expected, float actual, float tolerance) argument
316 expectEquals(String msg, double expected, double actual, double tolerance) argument
337 expectValuesGreaterOrEqual(String msg, List<T> list, T min) argument
353 expectValuesGreaterOrEqual(String msg, T[] array, T min) argument
366 expectValuesInRange(String msg, List<T> list, T min, T max) argument
384 expectValuesInRange(String msg, T[] array, T min, T max) argument
397 expectValuesInRange(String msg, int[] array, int min, int max) argument
415 expectInRange(String msg, T value, T min, T max) argument
440 expectMeteringRegionsAreSimilar(String msg, MeteringRectangle[] expected, MeteringRectangle[] actual, float errorPercent) argument
494 expectRectsAreSimilar(String msg, Rect expected, Rect actual, float errorPercent) argument
541 expectSizesAreSimilar(String msg, Size expected, Size actual, float errorPercent) argument
567 expectRectCentered(String msg, Size expectedBounds, Rect actual, float errorPercent) argument
597 expectNotNull(String msg, Object obj) argument
601 expectNull(String msg, Object obj) argument
706 expectKeyValueNotNull(String msg, CaptureResult result, CaptureResult.Key<T> key) argument
1053 expectValuesUnique(String msg, List<T> list) argument
1058 expectImageProperties(String msg, Image image, int format, Size size, long timestampNs) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
H A DCdmaSmsCbTest.java64 CdmaSmsMessage msg = new CdmaSmsMessage();
66 msg.teleserviceId = SmsEnvelope.TELESERVICE_NOT_SET;
67 msg.isServicePresent = true;
68 msg.serviceCategory = serviceCategory;
71 msg.address.digitMode = CdmaSmsAddress.DIGIT_MODE_4BIT_DTMF;
72 msg.address.numberMode = CdmaSmsAddress.NUMBER_MODE_NOT_DATA_NETWORK;
73 msg.address.numberType = CdmaSmsAddress.TON_UNKNOWN;
74 msg.address.numberPlan = CdmaSmsAddress.NUMBERING_PLAN_ISDN_TELEPHONY;
75 msg.subAddress.subaddressType = 0;
76 msg
121 createMessageFromParcel(CdmaSmsMessage msg, byte[] bearerData) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp85 sp<AMessage> msg = new AMessage(kWhatAddStream, this); local
86 msg->setInt32("rtp-socket", rtpSocket);
87 msg->setInt32("rtcp-socket", rtcpSocket);
88 msg->setObject("session-desc", sessionDesc);
89 msg->setSize("index", index);
90 msg->setMessage("notify", notify);
91 msg->setInt32("injected", injected);
92 msg->post();
96 sp<AMessage> msg = new AMessage(kWhatRemoveStream, this); local
97 msg
148 onMessageReceived(const sp<AMessage> &msg) argument
182 onAddStream(const sp<AMessage> &msg) argument
213 onRemoveStream(const sp<AMessage> &msg) argument
236 sp<AMessage> msg = new AMessage(kWhatPollStreams, this); local
642 sp<AMessage> msg = new AMessage(kWhatInjectPacket, this); local
648 onInjectPacket(const sp<AMessage> &msg) argument
[all...]
H A DARawAudioAssembler.cpp98 sp<AMessage> msg = mNotifyMsg->dup(); local
99 msg->setBuffer("access-unit", buffer);
100 msg->post();
114 sp<AMessage> msg = mNotifyMsg->dup(); local
115 msg->setInt32("eos", true);
116 msg->post();
H A DMyHandler.h223 sp<AMessage> msg = new AMessage('seek', this); local
224 msg->setInt64("time", timeUs);
226 msg->post();
230 sp<AMessage> msg = new AMessage('see1', this); local
231 msg->setInt64("time", timeUs);
232 msg->post();
240 sp<AMessage> msg = new AMessage('paus', this); local
242 msg->setInt32("pausecheck", mPauseGeneration);
243 msg->post();
247 sp<AMessage> msg local
451 onMessageReceived(const sp<AMessage> &msg) argument
950 sp<AMessage> msg = mNotify->dup(); local
1171 sp<AMessage> msg = mNotify->dup(); local
1324 sp<AMessage> msg = mNotify->dup(); local
1368 sp<AMessage> msg = new AMessage('abor', this); local
1394 sp<AMessage> msg = new AMessage('aliv', this); local
1735 sp<AMessage> msg = mNotify->dup(); local
1923 sp<AMessage> msg = mNotify->dup(); local
1931 sp<AMessage> msg = mNotify->dup(); local
1939 sp<AMessage> msg = mNotify->dup(); local
1947 sp<AMessage> msg = mNotify->dup(); local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiTrafficPoller.java127 public void handleMessage(Message msg) { argument
128 switch (msg.what) {
130 mEnableTrafficStatsPoll = (msg.arg1 == 1);
150 if (msg.arg1 == mTrafficStatsPollToken) {
157 mClients.add((Messenger) msg.obj);
164 mClients.remove(msg.obj);
172 Message msg;
175 msg = Message.obtain(mTrafficHandler,
178 msg = Message.obtain(mTrafficHandler,
181 msg
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGsmSmsCbTest.java54 SmsCbMessage msg = createFromPdu(pdu);
56 assertEquals("Unexpected geographical scope decoded", expectedGs, msg
62 SmsCbMessage msg = createFromPdu(null);
63 assertNull("createFromPdu(byte[] with null pdu should return null", msg);
69 SmsCbMessage msg = createFromPdu(pdu);
71 assertNull("createFromPdu(byte[] with too short pdu should return null", msg);
124 SmsCbMessage msg = createFromPdu(pdu);
127 SmsCbMessage.GEOGRAPHICAL_SCOPE_CELL_WIDE, msg.getGeographicalScope());
147 SmsCbMessage msg = createFromPdu(pdu);
151 msg
[all...]
/frameworks/av/include/media/stagefright/
H A DUtils.h87 void writeToAMessage(const sp<AMessage> &msg, const AudioPlaybackRate &rate);
88 void readFromAMessage(const sp<AMessage> &msg, AudioPlaybackRate *rate /* nonnull */);
90 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint);
92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
94 void writeToAMessage(const sp<AMessage> &msg, const BufferingSettings &buffering);
95 void readFromAMessage(const sp<AMessage> &msg, BufferingSettings *buffering /* nonnull */);
/frameworks/av/media/libstagefright/foundation/include/
H A DUtils.h87 void writeToAMessage(const sp<AMessage> &msg, const AudioPlaybackRate &rate);
88 void readFromAMessage(const sp<AMessage> &msg, AudioPlaybackRate *rate /* nonnull */);
90 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint);
92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
94 void writeToAMessage(const sp<AMessage> &msg, const BufferingSettings &buffering);
95 void readFromAMessage(const sp<AMessage> &msg, BufferingSettings *buffering /* nonnull */);
/frameworks/av/media/libstagefright/include/
H A DUtils.h87 void writeToAMessage(const sp<AMessage> &msg, const AudioPlaybackRate &rate);
88 void readFromAMessage(const sp<AMessage> &msg, AudioPlaybackRate *rate /* nonnull */);
90 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint);
92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
94 void writeToAMessage(const sp<AMessage> &msg, const BufferingSettings &buffering);
95 void readFromAMessage(const sp<AMessage> &msg, BufferingSettings *buffering /* nonnull */);
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp245 String8 msg = String8::format( local
248 ALOGE("%s: %s", __FUNCTION__, msg.string());
250 msg.string());
259 String8 msg = String8::format( local
262 ALOGE("%s: %s", __FUNCTION__, msg.string());
264 msg.string());
293 String8 msg = String8::format("Camera %s: Canceling request ID %d doesn't match " local
295 ALOGE("%s: %s", __FUNCTION__, msg.string());
296 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
335 String8 msg local
356 String8 msg = String8::format( local
367 String8 msg = String8::format("Camera %s: Unsupported set of inputs/outputs provided", local
372 String8 msg = String8::format("Camera %s: Error configuring streams: %s (%d)", local
417 String8 msg = String8::format("Camera %s: Invalid stream ID (%d) specified, no such" local
428 String8 msg = String8::format("Camera %s: Unexpected error %s (%d) when deleting stream %d", local
502 String8 msg = String8::format("Camera %s: Surface already has a stream created for it " local
518 String8 msg = String8::format("Camera %s: Stream sharing is only supported for " local
641 String8 msg = String8::format("Failed to set stream transform (stream id %d)", local
668 String8 msg = String8::format("Camera %s: Already has an input stream " local
759 String8 msg = String8::format("Camera %s: Surface is NULL", mCameraIdStr.string()); local
771 String8 msg = String8::format("Camera %s: Failed to query Surface consumer usage: %s (%d)", local
796 String8 msg = String8::format("Camera %s: Failed to query Surface width: %s (%d)", local
802 String8 msg = String8::format("Camera %s: Failed to query Surface height: %s (%d)", local
808 String8 msg = String8::format("Camera %s: Failed to query Surface format: %s (%d)", local
815 String8 msg = String8::format("Camera %s: Failed to query Surface dataspace: %s (%d)", local
833 String8 msg = String8::format("Camera %s: No supported stream configurations with " local
849 String8 msg = String8::format("Camera %s:Surface width doesn't match: %d vs %d", local
855 String8 msg = String8::format("Camera %s:Surface height doesn't match: %d vs %d", local
861 String8 msg = String8::format("Camera %s:Surface format doesn't match: %d vs %d", local
868 String8 msg = String8::format("Camera %s:Surface dataSpace doesn't match: %d vs %d", local
876 String8 msg = String8::format( local
1021 String8 msg = String8::format( local
1081 String8 msg = String8::format("Camera %s: Invalid stream ID (%d) specified, no stream " local
1121 String8 msg = String8::format("Camera %s: Invalid stream ID (%d) specified, no stream " local
1128 String8 msg = String8::format("Camera %s: maxCount (%d) must be greater than 0", local
1169 String8 msg = String8::format("Camera %s: Invalid stream ID (%d) specified, no stream " local
1226 String8 msg = String8::format("Camera %s: deferred surface is set to a unknown stream" local
1233 String8 msg = String8::format("Camera %s: finalizeOutputConfigurations has been called" local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileImpl.java375 public void handleMessage(Message msg) { argument
378 if (msg.what == ADD_CALLBACK) {
380 handleAddCallback((QSTile.Callback) msg.obj);
381 } else if (msg.what == REMOVE_CALLBACKS) {
384 } else if (msg.what == REMOVE_CALLBACK) {
386 handleRemoveCallback((QSTile.Callback) msg.obj);
387 } else if (msg.what == CLICK) {
397 } else if (msg.what == SECONDARY_CLICK) {
400 } else if (msg.what == LONG_CLICK) {
403 } else if (msg
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
103 virtual void onSeek(const sp<AMessage> &msg);
104 virtual void onLoop(const sp<AMessage> &msg);
107 virtual void onBufferingUpdate(const sp<AMessage> &msg);
108 virtual void onAttachAuxEffect(const sp<AMessage> &msg);
109 virtual void onSetAuxEffectSendLevel(const sp<AMessage> &msg);

Completed in 634 milliseconds

1234567891011>>