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

1 2 3 4 5

  /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 666 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
668 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
687 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
716 // ext1: Media framework error code.
718 ALOGE("error (%d, %d)", ext1, ext2);
724 mPrepareStatus = ext1;
730 // ext1: Media framework error code.
732 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
733 ALOGW("info/warning (%d, %d)", ext1, ext2)
    [all...]
  /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/media/libmediaplayerservice/
HDCP.h 57 static void ObserveWrapper(void *me, int msg, int ext1, int ext2);
58 void observe(int msg, int ext1, int ext2);
HDCP.cpp 166 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) {
167 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
170 void HDCP::observe(int msg, int ext1, int ext2) {
174 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
  /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;
mediarecorder.h 197 virtual void notify(int msg, int ext1, int ext2) = 0;
231 void notify(int msg, int ext1, int ext2);
IHDCP.h 28 int msg, int ext1, int ext2, const Parcel *obj) = 0;
  /hardware/libhardware/tests/camera2/
camera2_utils.h 118 status_t getNextNotification(int32_t *msg_type, int32_t *ext1,
121 status_t waitForNotification(int32_t *msg_type, int32_t *ext1,
129 int32_t *ext1, int32_t *ext2, int32_t *ext3);
134 ext1(e1),
140 int32_t ext1; member in struct:android::camera2::tests::NotifierListener::Notification
151 int32_t ext1,
156 int32_t ext1,
camera2_utils.cpp 256 int32_t *ext1,
261 return getNextNotificationLocked(msg_type, ext1, ext2, ext3);
265 int32_t *ext1,
272 return getNextNotificationLocked(msg_type, ext1, ext2, ext3);
281 int32_t *ext1,
285 *ext1 = mNotifications.begin()->ext1;
293 int32_t ext1,
297 mNotifications.push_back(Notification(msg_type, ext1, ext2, ext3));
302 int32_t ext1,
    [all...]
  /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...]
  /external/chromium_org/chrome/common/extensions/
extension_set_unittest.cc 52 scoped_refptr<Extension> ext1(CreateTestExtension(
65 ASSERT_TRUE(ext1.get() && ext2.get() && ext3.get() && ext4.get());
70 EXPECT_TRUE(extensions.Insert(ext1));
72 EXPECT_EQ(ext1, extensions.GetByID(ext1->id()));
77 EXPECT_EQ(ext2, extensions.GetByID(ext1->id()));
  /frameworks/av/camera/
IProCameraCallbacks.cpp 50 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
56 data.writeInt32(ext1);
94 int32_t ext1 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
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_org/chromeos/ime/
component_extension_ime_manager_unittest.cc 34 ComponentExtensionIME ext1; local
35 ext1.id = "ext1_id";
36 ext1.description = "ext1_description";
37 ext1.options_page_url =
38 GURL("chrome-extension://" + ext1.id + "/options.html");
39 ext1.path = base::FilePath("ext1_file_path");
46 ext1.engines.push_back(ext1_engine1);
53 ext1.engines.push_back(ext1_engine2);
60 ext1.engines.push_back(ext1_engine3);
62 ime_list_.push_back(ext1);
    [all...]
  /frameworks/av/include/camera/
ICameraClient.h 37 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
IProCameraCallbacks.h 40 int32_t ext1,
ProCamera.h 47 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
57 virtual void onTriggerNotify(int32_t msgType, int32_t ext1, int32_t ext2)
  /device/generic/goldfish/camera/
EmulatedCamera2.h 138 int32_t ext1, int32_t ext2);
216 int ext1,
261 int32_t ext1, int32_t ext2, int32_t ext3);
EmulatedCamera2.cpp 181 int ext1, int ext2) {
319 int ext1,
322 return ec->triggerAction(trigger_id, ext1, ext2);
380 int32_t ext1, int32_t ext2, int32_t ext3) {
387 notifyCb(msgType, ext1, ext2, ext3, mNotifyUserPtr);
  /frameworks/native/include/media/hardware/
HDCPAPI.h 29 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
37 // ext1 should be a suitable error code (status_t), ext2 is
44 // ext1 should be a suitable error code, ext2 is unused.
  /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);

Completed in 931 milliseconds

1 2 3 4 5