Searched refs:pString (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorThumbnailMain.h31 * @param pString (IN) File path from which thumbnail will be
37 const M4OSA_Char *pString,
H A DVideoEditorJava.cpp319 void* pString = M4OSA_NULL; local
358 pString = videoEditOsal_alloc(pResult, pEnv, length, "String");
362 result = M4OSA_chrNCopy((M4OSA_Char*)pString, pLocal, length);
372 videoEditOsal_free(pString);
373 pString = M4OSA_NULL;
398 return(pString);
538 const char* pString = M4OSA_NULL; local
543 ((M4OSA_NULL == pString) && (index < pClass->count));
550 pString = pClass->pConstants[index].pDescription;
555 if (M4OSA_NULL == pString)
[all...]
H A DVideoEditorOsal.cpp229 const char* pString = M4OSA_NULL; local
234 ((M4OSA_NULL == pString) && (index < gkRESULTS_COUNT));
241 pString = gkRESULTS[index].pName;
246 if (M4OSA_NULL == pString)
251 pString = string;
255 return(pString);
H A DVideoEditorThumbnailMain.cpp157 const M4OSA_Char *pString,
165 CHECK_PTR(ThumbnailOpen, pString, err, M4ERR_BAD_CONTEXT);
180 &pContext->m_pVideoBrowser, pString) ;
193 err = videoBrowserCreate(&pContext->m_pVideoBrowser, (M4OSA_Char*)pString,
156 ThumbnailOpen(M4OSA_Context *pPContext, const M4OSA_Char *pString, M4OSA_Bool bRender) argument
H A DVideoEditorMain.cpp1025 const char *pString = pEnv->GetStringUTFChars(filePath, NULL); local
1026 if (pString == M4OSA_NULL) {
1034 result = ThumbnailOpen(&tnContext,(const M4OSA_Char*)pString, M4OSA_TRUE);
1130 if (pString != NULL) {
1131 pEnv->ReleaseStringUTFChars(filePath, pString);
2203 const char *pString = env->GetStringUTFChars(path, NULL); local
2204 if (pString == M4OSA_NULL) {
2211 err = ThumbnailOpen(&mContext,(const M4OSA_Char*)pString, M4OSA_FALSE);
2213 if (pString != NULL) {
2214 env->ReleaseStringUTFChars(path, pString);
2257 const char *pString = env->GetStringUTFChars(path, NULL); local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoExtractor.cpp56 inline llvm::StringRef getStringFromOperand(const llvm::Value *pString) { argument
57 if ((pString != NULL) && (pString->getValueID() == llvm::Value::MDStringVal)) {
58 return static_cast<const llvm::MDString *>(pString)->getString();
89 // Write a string pString to the string pool pStringPool at offset pWriteStart.
90 // Return the pointer the pString resides within the string pool.
91 const char *writeString(const llvm::StringRef &pString, char *pStringPool, argument
93 if (pString.empty()) {
99 ::memcpy(pStringWriteStart, pString.data(), pString
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp113 unsigned int SectionMap::hash(const std::string& pString) argument
116 return hash_func(pString);
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h77 static unsigned int hash(const std::string& pString);
/frameworks/compile/mclinker/lib/LD/
H A DNamePool.cpp118 llvm::StringRef NamePool::insertString(const llvm::StringRef& pString) argument
121 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
/frameworks/compile/mclinker/include/mcld/LD/
H A DNamePool.h85 /// if the string has existed, modify pString to the existing string
87 llvm::StringRef insertString(const llvm::StringRef& pString);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringHash.h280 uint32_t operator()(const llvm::StringRef& pString) const
285 for (idx = 0; idx < pString.size(); ++idx) {
286 int cur_char = pString[idx];

Completed in 1469 milliseconds