Searched refs:pSize (Results 1 - 25 of 43) sorted by relevance

12

/external/qemu/android/utils/
H A Dlineinput.h37 * '*pSize' to save you a strlen() call.
39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
H A Dlineinput.c85 lineInput_getLineAndSize( LineInput* input, size_t *pSize )
90 if (pSize)
91 *pSize = 0;
110 if (pSize != NULL) {
111 *pSize = ret;
H A Dpath.h161 * if 'pSize' is not NULL, this will set the file's size in '*pSize'
165 extern void* path_load_file( const char* path, size_t *pSize );
H A Dpath.c602 path_load_file(const char *fn, size_t *pSize) argument
608 if (pSize)
609 *pSize = 0;
620 if (pSize)
621 *pSize = (size_t) sz;
/external/chromium_org/third_party/sqlite/src/src/
H A Djournal.c158 static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ argument
162 rc = sqlite3OsFileSize(p->pReal, pSize);
164 *pSize = (sqlite_int64) p->iSize;
H A Dbtree.h166 int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
170 int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
H A Dmemjournal.c207 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ argument
209 *pSize = (sqlite_int64) p->endpoint.iOffset;
H A Dtest_devsym.c46 static int devsymFileSize(sqlite3_file*, sqlite3_int64 *pSize);
184 static int devsymFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
186 return sqlite3OsFileSize(p->pReal, pSize);
H A Dtest_onefile.c136 static int fsFileSize(sqlite3_file*, sqlite3_int64 *pSize);
152 static int tmpFileSize(sqlite3_file*, sqlite3_int64 *pSize);
323 static int tmpFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
325 *pSize = pTmp->nSize;
526 static int fsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
530 *pSize = pReal->nDatabase;
532 *pSize = pReal->nJournal;
H A Dos.h242 int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
H A Dos.c78 int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
80 return id->pMethods->xFileSize(id, pSize);
H A Dtest_demovfs.c329 ** Write the size of the file in bytes to *pSize.
331 static int demoFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
348 *pSize = sStat.st_size;
H A Dtest_journal.c142 static int jtFileSize(sqlite3_file*, sqlite3_int64 *pSize);
623 static int jtFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
625 return sqlite3OsFileSize(p->pReal, pSize);
H A Dtest_multiplex.c649 static int multiplexFileSize(sqlite3_file *pConn, sqlite3_int64 *pSize){ argument
658 rc = ( !pSubOpen ) ? SQLITE_IOERR_FSTAT : pSubOpen->pMethods->xFileSize(pSubOpen, pSize);
660 *pSize = 0;
700 *pSize += sz;
H A Dtest_osinst.c143 static int vfslogFileSize(sqlite3_file*, sqlite3_int64 *pSize);
334 static int vfslogFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
339 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
341 vfslog_call(p->pVfslog, OS_FILESIZE, p->iFileId, t, rc, 0, (int)*pSize);
H A Dtest_vfstrace.c52 static int vfstraceFileSize(sqlite3_file*, sqlite3_int64 *pSize);
285 static int vfstraceFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
290 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
292 vfstrace_printf(pInfo, " size=%lld\n", *pSize);
H A Dtest6.c489 static int cfFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
491 *pSize = (i64)pCrash->iSize;
H A Dtest_vfs.c162 static int tvfsFileSize(sqlite3_file*, sqlite3_int64 *pSize);
459 static int tvfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
461 return sqlite3OsFileSize(p->pReal, pSize);
H A Dtest_quota.c461 static int quotaFileSize(sqlite3_file *pConn, sqlite3_int64 *pSize){ argument
477 *pSize = sz;
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DNativeMethods.cs29 out int pSize);
24 NtQueryInformationProcess( IntPtr hProcess, LowLevelTypes.PROCESSINFOCLASS pic, ref LowLevelTypes.PROCESS_BASIC_INFORMATION pbi, int cb, out int pSize) argument
/external/chromium_org/third_party/icu/source/common/
H A Dubidiimp.h351 ubidi_getMemory(BidiMemoryForAllocation *pMemory, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded);
H A Dubidi.c187 * If *pMemory!=NULL, then assume *pSize>0.
194 ubidi_getMemory(BidiMemoryForAllocation *bidiMem, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded) { argument
200 *pSize=sizeNeeded;
206 if(sizeNeeded<=*pSize) {
222 *pSize=sizeNeeded;
/external/icu4c/common/
H A Dubidiimp.h357 ubidi_getMemory(BidiMemoryForAllocation *pMemory, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded);
H A Dubidi.c188 * If *pMemory!=NULL, then assume *pSize>0.
195 ubidi_getMemory(BidiMemoryForAllocation *bidiMem, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded) { argument
201 *pSize=sizeNeeded;
207 if(sizeNeeded<=*pSize) {
223 *pSize=sizeNeeded;
/external/sonivox/jet_tools/JetCreator/
H A DJetAudition.py59 def __init__(self, jet_file, pSize):
163 self.SetSize(pSize)

Completed in 654 milliseconds

12