Searched defs:name (Results 1 - 25 of 1533) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraMetadata.cpp700 status_t CameraMetadata::getTagFromName(const char *name, argument
703 if (name == nullptr || tag == nullptr) return BAD_VALUE;
705 size_t nameLength = strlen(name);
727 if (strstr(name, str) == name) { // name begins with the section name
730 ALOGV("%s: Name begins with section name", __FUNCTION__);
732 // section name is the longest we've found so far
752 // Get the tag name componen
[all...]
H A DVendorTagDescriptor.cpp156 ALOGE("%s: parcel tag name was NULL for tag %d.", __FUNCTION__, tag);
194 ALOGE("%s: parcel section name was NULL for section %zu.",
299 status_t VendorTagDescriptor::lookupTag(const String8& name, const String8& section, /*out*/uint32_t* tag) const { argument
306 ssize_t nameIndex = mReverseMapping[index]->indexOfKey(name);
308 ALOGE("%s: Tag name '%s' does not exist.", __FUNCTION__, name.string());
336 String8 name = mTagToNameMap.valueAt(i); local
343 "", tag, name.string(), type, typeName, sectionName.string());
542 ALOGE("%s: no tag name defined for vendor tag %d.", __FUNCTION__, tag);
548 ALOGE("%s: no section name define
[all...]
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp38 static void usage(const char* name) argument
40 fprintf(stderr, "Usage: %s [-d du.ration] [-m] [-w] [<output-file>]\n", name);
/frameworks/av/drm/libmediadrm/
H A DDrm.cpp582 status_t Drm::getPropertyString(String8 const &name, String8 &value ) const { argument
593 return mPlugin->getPropertyString(name, value);
596 status_t Drm::getPropertyByteArray(String8 const &name, Vector<uint8_t> &value ) const { argument
607 return mPlugin->getPropertyByteArray(name, value);
610 status_t Drm::setPropertyString(String8 const &name, String8 const &value ) const { argument
621 return mPlugin->setPropertyString(name, value);
624 status_t Drm::setPropertyByteArray(String8 const &name, argument
636 return mPlugin->setPropertyByteArray(name, value);
H A DDrmHal.cpp728 status_t DrmHal::getPropertyString(String8 const &name, String8 &value ) const { argument
737 Return<void> hResult = mPlugin->getPropertyString(toHidlString(name),
749 status_t DrmHal::getPropertyByteArray(String8 const &name, Vector<uint8_t> &value ) const { argument
758 Return<void> hResult = mPlugin->getPropertyByteArray(toHidlString(name),
770 status_t DrmHal::setPropertyString(String8 const &name, String8 const &value ) const { argument
777 Status status = mPlugin->setPropertyString(toHidlString(name),
782 status_t DrmHal::setPropertyByteArray(String8 const &name, argument
790 Status status = mPlugin->setPropertyByteArray(toHidlString(name),
H A DIDrm.cpp339 virtual status_t getPropertyString(String8 const &name, String8 &value) const { argument
343 data.writeString8(name);
353 virtual status_t getPropertyByteArray(String8 const &name, Vector<uint8_t> &value) const { argument
357 data.writeString8(name);
367 virtual status_t setPropertyString(String8 const &name, String8 const &value) const { argument
371 data.writeString8(name);
381 virtual status_t setPropertyByteArray(String8 const &name, argument
386 data.writeString8(name);
789 String8 name = data.readString8(); local
791 status_t result = getPropertyString(name, valu
800 String8 name = data.readString8(); local
811 String8 name = data.readString8(); local
820 String8 name = data.readString8(); local
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DDrmPlugin.cpp96 const String8& name, String8& value) const {
97 if (name == "vendor") {
99 } else if (name == "version") {
101 } else if (name == "description") {
103 } else if (name == "algorithms") {
105 } else if (name == "listenerTestSupport") {
108 ALOGE("App requested unknown string property %s", name.string());
95 getPropertyString( const String8& name, String8& value) const argument
H A DDrmPlugin.h143 const String8& name, String8& value) const;
146 const String8& name, Vector<uint8_t>& value) const {
147 UNUSED(name);
153 const String8& name, const String8& value) {
154 UNUSED(name);
160 const String8& name, const Vector<uint8_t>& value) {
161 UNUSED(name);
145 getPropertyByteArray( const String8& name, Vector<uint8_t>& value) const argument
152 setPropertyString( const String8& name, const String8& value) argument
159 setPropertyByteArray( const String8& name, const Vector<uint8_t>& value) argument
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp386 status_t MockDrmPlugin::getPropertyString(String8 const &name, String8 &value) const argument
388 ALOGD("MockDrmPlugin::getPropertyString(name=%s)", name.string());
389 ssize_t index = mStringProperties.indexOfKey(name);
391 ALOGD("no property for '%s'", name.string());
398 status_t MockDrmPlugin::getPropertyByteArray(String8 const &name, argument
401 ALOGD("MockDrmPlugin::getPropertyByteArray(name=%s)", name.string());
402 ssize_t index = mByteArrayProperties.indexOfKey(name);
404 ALOGD("no property for '%s'", name
411 setPropertyString(String8 const &name, String8 const &value) argument
502 setPropertyByteArray(String8 const &name, Vector<uint8_t> const &value) argument
[all...]
/frameworks/av/include/media/
H A DMediaCasDefs.h46 ParcelableCasPluginDescriptor(int32_t CA_system_id, const char *name) argument
47 : mCASystemId(CA_system_id), mName(name) {}
H A DMediaProfiles.h106 * Returns the value for the given param name for the given camera at
109 * Supported param name are:
122 int getCamcorderProfileParamByName(const char *name, int cameraId,
142 * Returns the value for the given param name for the given video encoder
145 * Supported param name are:
155 int getVideoEncoderParamByName(const char *name, video_encoder codec) const;
163 * Returns the value for the given param name for the given audio encoder
166 * Supported param name are:
174 int getAudioEncoderParamByName(const char *name, audio_encoder codec) const;
342 const char* name; member in struct:android::MediaProfiles::NameToTagMap
[all...]
/frameworks/av/include/media/nbaio/
H A DNBLog.h49 EVENT_PID, // process ID and process name
283 // cached pid and process name to use in %p format specifier
284 // total tag length is mPidTagSize and process name is not zero terminated
392 // Wrapper for a reader with a name. Contains a pointer to the reader and a pointer to the name
396 NamedReader(const sp<NBLog::Reader>& reader, const char *name) : argument
398 { strlcpy(mName, name, sizeof(mName)); }
401 const char* name() const { return mName; } function in class:android::NBLog::NamedReader
438 // handle author entry by looking up the author's name and appending it to the body
/frameworks/av/include/media/stagefright/
H A DAACExtractor.h39 virtual const char * name() { return "AACExtractor"; } function in class:android::AACExtractor
H A DAMRExtractor.h39 virtual const char * name() { return "AMRExtractor"; } function in class:android::AMRExtractor
H A DAVIExtractor.h39 virtual const char * name() { return "AVIExtractor"; } function in struct:android::AVIExtractor
H A DFLACExtractor.h39 virtual const char * name() { return "FLACExtractor"; } function in class:android::FLACExtractor
H A DMP3Extractor.h41 virtual const char * name() { return "MP3Extractor"; } function in class:android::MP3Extractor
H A DMPEG2PSExtractor.h43 virtual const char * name() { return "MPEG2PSExtractor"; } function in struct:android::MPEG2PSExtractor
H A DMPEG2TSExtractor.h51 virtual const char * name() { return "MPEG2TSExtractor"; } function in struct:android::MPEG2TSExtractor
H A DMPEG4Extractor.h61 virtual const char * name() { return "MPEG4Extractor"; } function in class:android::MPEG4Extractor
H A DMediaExtractor.h77 virtual const char * name() { return "<unspecified>"; } function in class:android::MediaExtractor
H A DMidiExtractor.h63 virtual const char * name() { return "MidiExtractor"; } function in class:android::MidiExtractor
H A DOggExtractor.h41 virtual const char * name() { return "OggExtractor"; } function in struct:android::OggExtractor
H A DWAVExtractor.h40 virtual const char * name() { return "WAVExtractor"; } function in class:android::WAVExtractor
/frameworks/av/media/libaudioclient/
H A DAudioSystem.cpp738 const char *name = ""; local
746 name = device_name;
748 return aps->setDeviceConnectionState(device, state, address, name);
766 const char *name = ""; local
774 name = device_name;
776 return aps->handleDeviceConfigChange(device, address, name);

Completed in 3013 milliseconds

1234567891011>>