HomeSort by relevance Sort by last modified time
    Searched refs:pArg (Results 1 - 25 of 62) sorted by null

1 2 3

  /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);
  /frameworks/native/include/binder/
Parcel.h 154 status_t readInt32(int32_t *pArg) const;
156 status_t readInt64(int64_t *pArg) const;
158 status_t readFloat(float *pArg) const;
160 status_t readDouble(double *pArg) const;
162 status_t readIntPtr(intptr_t *pArg) const;
237 status_t readPointer(uintptr_t *pArg) const;
244 status_t readAligned(T *pArg) const;
  /frameworks/compile/mclinker/include/mcld/Support/
CommandLine.h 32 StringRef pArg,
  /frameworks/native/libs/binder/
Parcel.cpp 990 status_t Parcel::readAligned(T *pArg) const {
996 *pArg = *reinterpret_cast<const T*>(data);
1028 status_t Parcel::readInt32(int32_t *pArg) const
1030 return readAligned(pArg);
1039 status_t Parcel::readInt64(int64_t *pArg) const
1041 return readAligned(pArg);
1050 status_t Parcel::readPointer(uintptr_t *pArg) const
1056 *pArg = ptr;
1066 status_t Parcel::readFloat(float *pArg) const
1068 return readAligned(pArg);
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest1.c 194 static void *worker_bee(void *pArg){
195 const char *zFilename = (char*)pArg;
  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 29 StringRef pArg,
35 pValue += pArg.str();
  /external/sqlite/dist/orig/
sqlite3.h     [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]

Completed in 1348 milliseconds

1 2 3