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

1 2

  /frameworks/av/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 647 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
649 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
668 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
697 // ext1: Media framework error code.
699 ALOGE("error (%d, %d)", ext1, ext2);
705 mPrepareStatus = ext1;
711 // ext1: Media framework error code.
713 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
714 ALOGW("info/warning (%d, %d)", ext1, ext2)
    [all...]
mediarecorder.cpp 659 void MediaRecorder::notify(int msg, int ext1, int ext2)
661 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
671 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/av/include/media/stagefright/
MediaWriter.h 57 void notify(int msg, int ext1, int ext2) {
59 mListener->notify(msg, ext1, ext2);
  /frameworks/av/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 71 int msg, int ext1, int ext2, const Parcel *obj);
191 void sendEvent(int msg, int ext1=0, int ext2=0,
194 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 57 // 'ext1' should be a value from the enum media_error_type.
87 // 'ext1' should be a value from the enum media_info_type.
181 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
218 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
  /frameworks/wilhelm/src/android/
android_GenericMediaPlayer.cpp 81 // Map a media_error_type enum (the ext1 of a MEDIA_ERROR event) to a string or NULL
95 // Map a media_info_type enum (the ext1 of a MEDIA_INFO event) to a string or NULL
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) {
117 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
118 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2);
146 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) {
148 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/);
162 if (ext1 < 0) {
163 SL_LOGE("MEDIA_BUFFERING_UPDATE %d%% < 0", ext1);
164 ext1 = 0
    [all...]
android_GenericMediaPlayer.h 36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
  /frameworks/av/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);
  /frameworks/av/include/camera/
ICameraClient.h 34 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
  /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);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 69 void notifyListener(int msg, int ext1 = 0, int ext2 = 0);
NuPlayer.h 136 void notifyListener(int msg, int ext1, int ext2);
NuPlayerDriver.cpp 329 void NuPlayerDriver::notifyListener(int msg, int ext1, int ext2) {
334 sendEvent(msg, ext1, ext2);
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 135 static void notify(void* cookie, int msg, int ext1, int ext2);
  /hardware/libhardware/include/hardware/
camera.h 55 int32_t ext1,
camera2.h 143 int32_t ext1,
152 * A serious error has occurred. Argument ext1 contains the error code, and
157 * The exposure of a given request has begun. Argument ext1 contains the
  /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/av/services/camera/libcameraservice/
CameraService.h 148 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
162 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);

Completed in 259 milliseconds

1 2