Searched refs:mName (Results 1 - 25 of 189) sorted by path

12345678

/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp905 printf("%s\t Roles: ", (*it).mName.string());
/frameworks/av/include/media/
H A DIOMX.h50 String8 mName; member in struct:android::IOMX::ComponentInfo
H A DMediaCodecInfo.h82 AString mName; member in struct:android::MediaCodecInfo
/frameworks/av/include/media/stagefright/
H A DOMXCodec.h106 String8 mName; member in struct:android::OMXCodec::CodecNameAndQuirks
/frameworks/av/include/media/stagefright/foundation/
H A DALooper.h70 AString mName; member in struct:android::ALooper
H A DAMessage.h139 const char *mName; member in struct:android::AMessage::Item
/frameworks/av/media/libmedia/
H A DIOMX.cpp88 info.mName = reply.readString8();
551 reply->writeString8(cur.mName);
H A DMediaCodecInfo.cpp134 return mName.c_str();
161 mName.writeToParcel(parcel);
185 : mName(name),
196 ALOGE("Codec '%s' already had its type specified", mName.c_str());
/frameworks/av/media/libstagefright/
H A DACodec.cpp4854 entry->mName = String8(componentName.c_str());
4880 componentName = matchingCodecs.itemAt(matchIndex).mName.string();
H A DMediaCodecList.cpp132 info.mName.c_str());
141 ALOGV("%s codec info for %s: %s", info.mName.c_str(), mime.c_str(),
181 AString line = info.mName;
512 mCurrentInfo->mName.c_str(), type);
517 mCurrentInfo->mName.c_str(),
851 if (info.mName == name) {
H A DOMXCodec.cpp165 bool isOMX1 = !strncmp(elem1->mName.string(), "OMX.", 4);
166 bool isOMX2 = !strncmp(elem2->mName.string(), "OMX.", 4);
168 bool isSoftwareCodec1 = IsSoftwareCodec(elem1->mName.string());
169 bool isSoftwareCodec2 = IsSoftwareCodec(elem2->mName.string());
237 entry->mName = String8(componentName);
241 entry->mName.string(), entry->mQuirks);
323 const char *componentNameBase = matchingCodecs[i].mName.string();
4468 const char *componentName = matchingCodecs.itemAt(c).mName.string();
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp82 mName = name;
121 mName.empty() ? "ALooper" : mName.c_str(), priority);
H A DAMessage.cpp68 delete[] item->mName;
69 item->mName = NULL;
140 if (!memcmp(mItems[i].mName, name, len)) {
160 mName = new char[len + 1];
161 memcpy((void*)mName, name, len + 1);
367 to->setName(from->mName, from->mNameLength);
452 "int32_t %s = %d", item.mName, item.u.int32Value);
456 "int64_t %s = %lld", item.mName, item.u.int64Value);
460 "size_t %s = %d", item.mName, item.u.sizeValue);
464 "float %s = %f", item.mName, ite
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp74 AString mName; member in struct:android::M3UParser::MediaGroup::Media
108 item.mName = name;
/frameworks/av/media/libstagefright/include/
H A DOMXNodeInstance.h153 char *mName; member in struct:android::OMXNodeInstance
H A DSoftOMXComponent.h99 AString mName; member in struct:android::SoftOMXComponent
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp204 info.mName = componentName;
H A DOMXNodeInstance.cpp42 #define CLOGW(fmt, ...) ALOGW("[%x:%s] " fmt, mNodeID, mName, ##__VA_ARGS__)
46 mNodeID, mName, ##__VA_ARGS__, asString(err), err)
52 ALOGI_IF(DEBUG >= (level), #fn "(%x:%s, " fmt ")", mNodeID, mName, ##__VA_ARGS__)
54 ALOGD_IF(DEBUG >= (level), #fn "(%x:%s, " fmt ")", mNodeID, mName, ##__VA_ARGS__)
177 mName = ADebug::GetDebugName(name);
188 free(mName);
321 ALOGV("[%x:%s] calling destroyComponentInstance", mNodeID, mName);
327 free(mName);
328 mName = NULL;
H A DSoftOMXComponent.cpp32 : mName(name),
85 return mName.c_str();
H A DSoftOMXPlugin.cpp32 const char *mName; member in struct:android::__anon689
77 if (strcmp(name, kComponents[i].mName)) {
165 strcpy(name, kComponents[index].mName);
174 if (strcmp(name, kComponents[i].mName)) {
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp767 const char *componentName = info.mName.string();
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.cpp398 ALOGE("%s track already exists", mStreams[streamIndex].mName);
H A DWebmWriter.h86 const char *mName; member in struct:android::WebmWriter::WebmStream
96 mName("Invalid"),
102 mName(name),
108 mName = other.mName;
/frameworks/av/media/mtp/
H A DMtpDevice.cpp441 mData.putString(info->mName);
H A DMtpObjectInfo.cpp44 mName(NULL),
52 if (mName)
53 free(mName);
79 mName = strdup((const char *)string);
96 ALOGD("MtpObject Info %08X: %s\n", mHandle, mName);

Completed in 1217 milliseconds

12345678