/development/tools/etc1tool/ |
etc1tool.cpp | 496 const char* pArg = argv[i]; 497 if (pArg[0] == '-') { 498 char c = pArg[1]; 510 if (strcmp(pArg, "--encode") == 0) { 514 } else if (strcmp(pArg, "--encodeNoHeader") == 0) { 518 } else if (strcmp(pArg, "--decode") == 0) { 521 } else if (strcmp(pArg, "--showDifference") == 0) { 530 } else if (strcmp(pArg, "--help") == 0) { 533 usage("Unknown flag %s", pArg); 538 usage("Unknown flag %s", pArg); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
notify.c | 151 void *pArg 169 xNotify(&pArg, 1); 179 db->pUnlockArg = pArg;
|
legacy.c | 26 ** the xCallback() function is called. pArg becomes the first 34 void *pArg, /* First argument to xCallback() */ 99 if( xCallback(pArg, nCol, azVals, azCols) ){
|
main.c | 934 rc = p->xFunc(p->pArg, p->nBusy); 950 void *pArg 954 db->busyHandler.pArg = pArg; 970 void *pArg 976 db->pProgressArg = pArg; [all...] |
test_init.c | 109 static int wrPCacheInit(void *pArg){ 114 rc = wrapped.pcache.xInit(wrapped.pcache.pArg); 121 static void wrPCacheShutdown(void *pArg){ 122 wrapped.pcache.xShutdown(wrapped.pcache.pArg);
|
malloc.c | 96 void(*xCallback)(void *pArg, sqlite3_int64 used,int N), 97 void *pArg, 103 mem0.alarmArg = pArg; 117 void(*xCallback)(void *pArg, sqlite3_int64 used,int N), 118 void *pArg, 121 return sqlite3MemoryAlarm(xCallback, pArg, iThreshold); 244 void *pArg; 248 pArg = mem0.alarmArg; 251 xCallback(pArg, nowUsed, nByte); 254 mem0.alarmArg = pArg; [all...] |
test_quota.c | 77 void *pArg /* Client data */ 79 void *pArg; /* Third argument to the xCallback() */ 80 void (*xDestroy)(void*); /* Optional destructor for pArg */ 175 if( pGroup->xDestroy ) pGroup->xDestroy(pGroup->pArg); 417 pGroup->pArg); 505 static int quotaFileControl(sqlite3_file *pConn, int op, void *pArg){ 507 return pSubOpen->pMethods->xFileControl(pSubOpen, op, pArg); 647 ** merely updates the iLimit, xCallback, and pArg values for that quota 669 void *pArg /* Client data */ 671 void *pArg, /* client data passed thru to callback * [all...] |
auth.c | 73 void *pArg 77 db->pAuthArg = pArg;
|
table.c | 44 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ 45 TabResult *p = (TabResult*)pArg; /* Result accumulator */
|
test_pcache.c | 53 static int testpcacheInit(void *pArg){ 54 assert( pArg==(void*)&testpcacheGlobal ); 67 static void testpcacheShutdown(void *pArg){ 68 assert( pArg==(void*)&testpcacheGlobal );
|
test_devsym.c | 50 static int devsymFileControl(sqlite3_file*, int op, void *pArg); 216 static int devsymFileControl(sqlite3_file *pFile, int op, void *pArg){ 218 return sqlite3OsFileControl(p->pReal, op, pArg);
|
test_multiplex.c | 750 static int multiplexFileControl(sqlite3_file *pConn, int op, void *pArg){ 759 if( pArg ) { 760 int bEnabled = *(int *)pArg; 766 if( pArg ) { 767 int nChunkSize = *(int *)pArg; 780 if( pArg ) { 781 int nMaxChunks = *(int *)pArg; 798 rc = pSubOpen->pMethods->xFileControl(pSubOpen, op, pArg); [all...] |
vtab.c | 415 Token *pArg = &pParse->sArg; 416 if( pArg->z==0 ){ 417 pArg->z = p->z; 418 pArg->n = p->n; 420 assert(pArg->z < p->z); 421 pArg->n = (int)(&p->z[p->n] - pArg->z); 865 void *pArg = 0; 892 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg); 910 pNew->pUserData = pArg; [all...] |
test_tclvar.c | 164 Tcl_Obj *pArg = Tcl_NewStringObj((char*)sqlite3_value_text(argv[0]), -1); 165 Tcl_ListObjAppendElement(0, p, pArg);
|
test_vfs.c | 166 static int tvfsFileControl(sqlite3_file*, int op, void *pArg); 491 static int tvfsFileControl(sqlite3_file *pFile, int op, void *pArg){ 493 return sqlite3OsFileControl(p->pReal, op, pArg); 800 Tcl_Obj *pArg = Tcl_NewObj(); 801 Tcl_IncrRefCount(pArg); 802 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(iPage)); 803 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(pgsz)); 804 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(isWrite)); 806 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId, pArg 809 Tcl_DecrRefCount(pArg); [all...] |
test_syscall.c | 284 void *pArg; 289 pArg = va_arg(ap, void *); 290 return orig_fcntl(fd, cmd, pArg);
|
test_onefile.c | 140 static int fsFileControl(sqlite3_file*, int op, void *pArg); 156 static int tmpFileControl(sqlite3_file*, int op, void *pArg); 354 static int tmpFileControl(sqlite3_file *pFile, int op, void *pArg){ 562 static int fsFileControl(sqlite3_file *pFile, int op, void *pArg){
|
os.c | 93 int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ 94 return id->pMethods->xFileControl(id, op, pArg);
|
sqlite.h.in | 676 int (*xFileControl)(sqlite3_file*, int op, void *pArg); 699 ** into an integer that the pArg argument points to. This capability [all...] |
test_vfstrace.c | 56 static int vfstraceFileControl(sqlite3_file*, int op, void *pArg); 356 static int vfstraceFileControl(sqlite3_file *pFile, int op, void *pArg){ 369 *(sqlite3_int64*)pArg); 374 sqlite3_snprintf(sizeof(zBuf), zBuf, "CHUNK_SIZE,%d", *(int*)pArg); 389 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg);
|
test_journal.c | 146 static int jtFileControl(sqlite3_file*, int op, void *pArg); 665 static int jtFileControl(sqlite3_file *pFile, int op, void *pArg){ 667 return sqlite3OsFileControl(p->pReal, op, pArg);
|
pcache.c | 150 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg); 155 sqlite3GlobalConfig.pcache.xShutdown(sqlite3GlobalConfig.pcache.pArg);
|
test_thread.c | 253 static int xBusy(void *pArg, int nBusy){ 254 UNUSED_PARAMETER(pArg);
|
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest1.c | 194 static void *worker_bee(void *pArg){ 195 const char *zFilename = (char*)pArg;
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.h | 681 int (*xFileControl)(sqlite3_file*, int op, void *pArg); 704 ** into an integer that the pArg argument points to. This capability [all...] |