Searched defs:obj (Results 1 - 25 of 460) sorted by path

1234567891011>>

/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp968 sp<RefBase> obj; local
969 found = msg->findObject(kSessionSpKey, &obj);
970 if (!found || obj == nullptr) {
974 sp<ACameraCaptureSession> session(static_cast<ACameraCaptureSession*>(obj.get()));
982 found = msg->findObject(kCaptureRequestKey, &obj);
987 requestSp = static_cast<CaptureRequest*>(obj.get());
1040 found = msg->findObject(kCaptureResultKey, &obj);
1045 sp<ACameraMetadata> result(static_cast<ACameraMetadata*>(obj.get()));
1063 found = msg->findObject(kCaptureFailureKey, &obj);
1069 static_cast<CameraCaptureFailure*>(obj
[all...]
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp134 sp<RefBase> obj; local
135 CHECK(msg->findObject("surface", &obj));
136 mSurface = static_cast<Surface *>(obj.get());
/frameworks/av/drm/libmediadrm/
H A DDrmHal.cpp402 Parcel obj; local
403 writeByteArray(obj, sessionId);
404 writeByteArray(obj, data);
427 listener->notify(eventType, 0, &obj);
440 Parcel obj; local
441 writeByteArray(obj, sessionId);
442 obj.writeInt64(expiryTimeInMS);
445 listener->notify(DrmPlugin::kDrmPluginEventExpirationUpdate, 0, &obj);
458 Parcel obj; local
459 writeByteArray(obj, sessionI
1334 writeByteArray(Parcel &obj, hidl_vec<uint8_t> const &vec) argument
[all...]
H A DIDrmClient.cpp43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) argument
49 if (obj && obj->dataSize() > 0) {
50 data.appendFrom(const_cast<Parcel *>(obj), 0, obj->dataSize());
68 Parcel obj; local
70 obj.appendFrom(const_cast<Parcel *>(&data), data.dataPosition(), data.dataAvail());
73 notify((DrmPlugin::EventType)eventType, extra, &obj);
/frameworks/av/include/media/
H A DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
283 const Parcel *obj=NULL) {
291 listener->notify(msg, ext1, ext2, obj);
282 sendEvent(int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) argument
/frameworks/av/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) argument
45 if (obj && obj->dataSize() > 0) {
46 data.appendFrom(const_cast<Parcel *>(obj), 0, obj->dataSize());
65 Parcel obj; local
67 obj.appendFrom(const_cast<Parcel *>(&data), data.dataPosition(), data.dataAvail());
70 notify(msg, ext1, ext2, &obj);
H A Dmediaplayer.cpp848 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
888 ALOGV("MediaPlayer::notify() MEDIA_DRM_INFO(%d, %d, %d, %p)", msg, ext1, ext2, obj);
967 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayer2/include/mediaplayer2/
H A DMediaPlayer2Interface.h59 virtual void notify(int64_t srcId, int msg, int ext1, int ext2, const Parcel *obj) = 0;
240 void sendEvent(int64_t srcId, int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) { argument
248 listener->notify(srcId, msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayer2/
H A Dmediaplayer2.cpp226 virtual void notify(int64_t srcId, int msg, int ext1, int ext2, const Parcel *obj) override {
229 player->notify(srcId, msg, ext1, ext2, obj);
1294 void MediaPlayer2::notify(int64_t srcId, int msg, int ext1, int ext2, const Parcel *obj) { argument
1343 (long long)srcId, msg, ext1, ext2, obj);
1415 listener->notify(srcId, msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DNuPlayer2.cpp648 sp<RefBase> obj; local
649 CHECK(msg->findObject("source", &obj));
650 if (obj != NULL) {
653 mSource = static_cast<Source *>(obj.get());
672 sp<RefBase> obj; local
673 CHECK(msg->findObject("source", &obj));
674 if (obj != NULL) {
677 mNextSource = static_cast<Source *>(obj.get());
898 sp<RefBase> obj; local
899 CHECK(msg->findObject("surface", &obj));
958 sp<RefBase> obj; local
[all...]
H A DNuPlayer2Decoder.cpp229 sp<RefBase> obj; local
230 CHECK(msg->findObject("surface", &obj));
232 static_cast<ANativeWindowWrapper *>(obj.get()); // non-null
H A DNuPlayer2DecoderBase.cpp150 sp<RefBase> obj; local
151 CHECK(msg->findObject("renderer", &obj));
152 onSetRenderer(static_cast<Renderer *>(obj.get()));
H A DNuPlayer2Driver.cpp888 sp<RefBase> obj; local
889 if (msg->findObject("parcel", &obj) && obj != NULL) {
890 in = static_cast<ParcelWrapper *>(obj.get());
H A DNuPlayer2Renderer.cpp1453 sp<RefBase> obj; local
1454 CHECK(msg->findObject("buffer", &obj));
1455 sp<MediaCodecBuffer> buffer = static_cast<MediaCodecBuffer *>(obj.get());
H A DRTSPSource2.cpp783 sp<RefBase> obj; local
784 CHECK(msg->findObject("description", &obj));
785 desc = static_cast<ASessionDescription *>(obj.get());
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1425 int msg, int ext1, int ext2, const Parcel *obj)
1451 nc->notify(MEDIA_INFO, MEDIA_INFO_STARTED_AS_NEXT, 0, obj);
1453 nc->notify(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN , 0, obj);
1474 c->notify(msg, ext1, ext2, obj);
1424 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
H A DMediaPlayerService.h378 void notify(int msg, int ext1, int ext2, const Parcel *obj);
472 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
475 client->notify(msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayerservice/include/
H A DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
283 const Parcel *obj=NULL) {
291 listener->notify(msg, ext1, ext2, obj);
282 sendEvent(int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp557 sp<RefBase> obj; local
558 CHECK(msg->findObject("source", &obj));
559 if (obj != NULL) {
561 mSource = static_cast<Source *>(obj.get());
760 sp<RefBase> obj; local
761 CHECK(msg->findObject("surface", &obj));
762 sp<Surface> surface = static_cast<Surface *>(obj.get());
781 (obj != NULL ? FLUSH_CMD_FLUSH : FLUSH_CMD_NONE) /* audio */,
786 if (obj != NULL) {
820 sp<RefBase> obj; local
[all...]
H A DNuPlayerDecoder.cpp231 sp<RefBase> obj; local
232 CHECK(msg->findObject("surface", &obj));
233 sp<Surface> surface = static_cast<Surface *>(obj.get()); // non-null
H A DNuPlayerDecoderBase.cpp148 sp<RefBase> obj; local
149 CHECK(msg->findObject("renderer", &obj));
150 onSetRenderer(static_cast<Renderer *>(obj.get()));
H A DNuPlayerRenderer.cpp1454 sp<RefBase> obj; local
1455 CHECK(msg->findObject("buffer", &obj));
1456 sp<MediaCodecBuffer> buffer = static_cast<MediaCodecBuffer *>(obj.get());
H A DRTSPSource.cpp785 sp<RefBase> obj; local
786 CHECK(msg->findObject("description", &obj));
787 desc = static_cast<ASessionDescription *>(obj.get());
/frameworks/av/media/libstagefright/
H A DACodec.cpp1853 sp<RefBase> obj; local
1854 bool haveNativeWindow = msg->findObject("native-window", &obj)
1855 && obj != NULL && mIsVideo && !encoder;
1882 static_cast<ANativeWindow *>(static_cast<Surface *>(obj.get()));
2045 mNativeWindow = static_cast<Surface *>(obj.get());
5510 sp<RefBase> obj; local
5511 CHECK(msg->findObject("surface", &obj));
5513 status_t err = mCodec->handleSetSurface(static_cast<Surface *>(obj.get()));
5586 sp<RefBase> obj; local
5587 CHECK(msg->findObject("messages", &obj));
5798 sp<RefBase> obj; local
6207 sp<RefBase> obj; local
6457 sp<RefBase> obj; local
6802 sp<RefBase> obj; local
[all...]
H A DMPEG2TSWriter.cpp351 sp<RefBase> obj; local
352 CHECK(msg->findObject("meta", &obj));
353 MetaData *params = static_cast<MetaData *>(obj.get());

Completed in 199 milliseconds

1234567891011>>