HomeSort by relevance Sort by last modified time
    Searched refs:ext1 (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/media/libmedia/
IMediaPlayerClient.cpp 38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj)
43 data.writeInt32(ext1);
63 int ext1 = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
IMediaRecorderClient.cpp 38 virtual void notify(int msg, int ext1, int ext2)
43 data.writeInt32(ext1);
60 int ext1 = data.readInt32(); local
62 notify(msg, ext1, ext2);
mediaplayer.cpp 602 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
604 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
623 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
652 // ext1: Media framework error code.
654 LOGE("error (%d, %d)", ext1, ext2);
660 mPrepareStatus = ext1;
666 // ext1: Media framework error code.
668 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
669 LOGW("info/warning (%d, %d)", ext1, ext2)
    [all...]
mediarecorder.cpp 660 void MediaRecorder::notify(int msg, int ext1, int ext2)
662 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
672 listener->notify(msg, ext1, ext2);
  /external/chromium/chrome/common/extensions/
extension_set_unittest.cc 50 scoped_refptr<Extension> ext1(CreateTestExtension(
62 ASSERT_TRUE(ext1 && ext2 && ext3 && ext4);
67 extensions.Insert(ext1);
69 EXPECT_EQ(ext1, extensions.GetByID(ext1->id()));
74 EXPECT_EQ(ext2, extensions.GetByID(ext1->id()));
  /frameworks/base/include/media/stagefright/
MediaWriter.h 57 void notify(int msg, int ext1, int ext2) {
59 mListener->notify(msg, ext1, ext2);
  /frameworks/base/include/media/
IMediaPlayerClient.h 31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
IMediaRecorderClient.h 31 virtual void notify(int msg, int ext1, int ext2) = 0;
MediaPlayerInterface.h 59 int msg, int ext1, int ext2, const Parcel *obj);
166 void sendEvent(int msg, int ext1=0, int ext2=0,
169 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
mediarecorder.h 197 virtual void notify(int msg, int ext1, int ext2) = 0;
230 void notify(int msg, int ext1, int ext2);
mediaplayer.h 55 // 'ext1' should be a value from the enum media_error_type.
85 // 'ext1' should be a value from the enum media_info_type.
155 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
192 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
  /frameworks/base/include/camera/
ICameraClient.h 34 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
Camera.h 61 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
  /frameworks/base/libs/camera/
ICameraClient.cpp 42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
48 data.writeInt32(ext1);
94 int32_t ext1 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
  /external/chromium/chrome/browser/
background_application_list_model_unittest.cc 113 scoped_refptr<Extension> ext1 = CreateExtension("alpha", false); local
122 ASSERT_FALSE(BackgroundApplicationListModel::IsBackgroundApp(*ext1));
123 service->AddExtension(ext1);
143 ASSERT_FALSE(BackgroundApplicationListModel::IsBackgroundApp(*ext1));
144 service->UninstallExtension(ext1->id(), false, NULL);
  /system/media/wilhelm/src/android/
android_GenericMediaPlayer.cpp 82 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) {
83 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
84 media_to_string(msg), msg, ext1, ext2);
114 (int32_t)ext1, (int32_t)ext2, true /*async*/);
129 genericMediaPlayer->bufferingUpdate(ext1 * 10 /*fillLevelPerMille*/);
140 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/);
android_GenericMediaPlayer.h 37 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 69 void notifyListener(int msg, int ext1 = 0, int ext2 = 0);
NuPlayer.h 135 void notifyListener(int msg, int ext1, int ext2);
NuPlayerDriver.cpp 320 void NuPlayerDriver::notifyListener(int msg, int ext1, int ext2) {
325 sendEvent(msg, ext1, ext2);
  /hardware/libhardware/include/hardware/
camera.h 79 int32_t ext1,
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 69 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
  /external/protobuf/python/google/protobuf/internal/
text_format_test.py 82 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
84 message.message_set.Extensions[ext1].i = 23
181 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
183 self.assertEquals(23, message.message_set.Extensions[ext1].i)
  /frameworks/base/services/camera/libcameraservice/
CameraService.h 144 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
157 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 66 void notify(int msg, int ext1, int ext2);
99 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2)
104 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0);

Completed in 1160 milliseconds

1 2