Searched refs:what (Results 251 - 275 of 389) sorted by last modified time

<<111213141516

/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DStateMachineTest.java104 switch(message.what) {
113 Log.d(TAG, "default what=" + message.what);
214 switch(message.what) {
223 Log.d(TAG, "default what=" + message.what);
327 assertEquals(TEST_CMD_1, getCurrentMessage().what);
474 if (message.what == TEST_CMD_6) {
567 if (message.what == TEST_CMD_1) {
571 } else if (message.what
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp34 AMessage::AMessage(uint32_t what, ALooper::handler_id target) argument
35 : mWhat(what),
44 void AMessage::setWhat(uint32_t what) { argument
45 mWhat = what;
48 uint32_t AMessage::what() const { function in class:android::AMessage
335 static bool isFourcc(uint32_t what) {
336 return isprint(what & 0xff)
337 && isprint((what >> 8) & 0xff)
338 && isprint((what >> 16) & 0xff)
339 && isprint((what >> 2
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp112 switch (msg->what()) {
H A DM3UParser.cpp376 // Find the next occurence of the character "what" at or after "offset",
380 const AString &line, char what, size_t offset) {
381 CHECK_NE((int)what, (int)'"');
389 } else if (c == what && !quoted) {
379 FindNextUnquoted( const AString &line, char what, size_t offset) argument
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp397 switch (msg->what()) {
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp336 uint32_t msgType = msg->what();
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp148 switch (msg->what()) {
H A DARTPSession.cpp127 switch (msg->what()) {
H A DARTPWriter.cpp191 switch (msg->what()) {
H A DARTSPConnection.cpp95 switch (msg->what()) {
H A DMyHandler.h352 switch (msg->what()) {
781 msg->setInt32("what", kWhatDisconnected);
890 msg->setInt32("what", kWhatSeekDone);
999 msg->setInt32("what", kWhatSeekDone);
1097 // Server doesn't even tell use what range it is going to
1413 msg->setInt32("what", kWhatConnected);
1486 msg->setInt32("what", kWhatAccessUnit);
1494 msg->setInt32("what", kWhatEOS);
1502 msg->setInt32("what", kWhatSeekDiscontinuity);
1510 msg->setInt32("what", kWhatNormalPlayTimeMappin
[all...]
H A DMyTransmitter.h343 switch (msg->what()) {
H A DUDPPusher.cpp112 switch (msg->what()) {
/frameworks/av/media/libstagefright/tests/
H A DAndroid.mk50 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp82 switch (msg->what()) {
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DRTPSink.cpp309 switch (msg->what()) {
353 if (msg->what() == kWhatRTPNotify) {
H A DTunnelRenderer.cpp306 switch (msg->what()) {
H A DWifiDisplaySink.cpp123 switch (msg->what()) {
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp192 notify->setInt32("what", kWhatError);
212 switch (msg->what()) {
215 int32_t what; local
216 CHECK(msg->findInt32("what", &what));
222 if (what == MediaPuller::kWhatAccessUnit) {
240 if (what == MediaPuller::kWhatEOS) {
247 CHECK_EQ(what, MediaPuller::kWhatAccessUnit);
425 notify->setInt32("what", kWhatAccessUnit);
473 notify->setInt32("what", kWhatAccessUni
[all...]
H A DMediaPuller.cpp75 switch (msg->what()) {
141 notify->setInt32("what", kWhatEOS);
166 notify->setInt32("what", kWhatAccessUnit);
H A DPlaybackSession.cpp209 switch (msg->what()) {
217 notify->setInt32("what", kWhatStopped);
402 notify->setInt32("what", kWhatSessionEstablished);
424 switch (msg->what()) {
434 int32_t what; local
435 CHECK(msg->findInt32("what", &what));
440 if (what == Converter::kWhatAccessUnit) {
475 } else if (what == Converter::kWhatEOS) {
476 CHECK_EQ(what, Converte
507 int32_t what; local
529 int32_t what; local
[all...]
H A DRepeaterSource.cpp157 switch (msg->what()) {
H A DSender.cpp395 switch (msg->what()) {
421 if ((msg->what() == kWhatRTPNotify
423 || msg->what() == kWhatRTPRetransmissionNotify
467 if (msg->what() == kWhatRTCPNotify
469 || msg->what() == kWhatRTCPRetransmissionNotify
641 notify->setInt32("what", kWhatBinaryData);
804 notify->setInt32("what", kWhatBinaryData);
968 notify->setInt32("what", kWhatInitDone);
974 notify->setInt32("what", kWhatSessionDead);
H A DWifiDisplaySource.cpp106 switch (msg->what()) {
305 int32_t what; local
306 CHECK(msg->findInt32("what", &what));
308 if (what == PlaybackSession::kWhatSessionDead) {
313 } else if (what == PlaybackSession::kWhatSessionEstablished) {
327 } else if (what == PlaybackSession::kWhatSessionDestroyed) {
330 CHECK_EQ(what, PlaybackSession::kWhatBinaryData);
/frameworks/av/media/libstagefright/wifi-display/
H A Dudptest.cpp93 switch (msg->what()) {

Completed in 9172 milliseconds

<<111213141516