HomeSort by relevance Sort by last modified time
    Searched defs:pMethods (Results 1 - 11 of 11) sorted by null

  /external/pdfium/fpdfsdk/src/javascript/
JS_Runtime.cpp 432 JSMethodSpec* pMethods = NULL;
436 CJS_App::GetMethods(pMethods, nSize);
438 CJS_Color::GetMethods(pMethods, nSize);
442 CJS_Document::GetMethods(pMethods, nSize);
444 CJS_App::GetMethods(pMethods, nSize);
447 CJS_Event::GetMethods(pMethods, nSize);
449 CJS_Field::GetMethods(pMethods, nSize);
451 CJS_Global::GetMethods(pMethods, nSize);
453 CJS_Util::GetMethods(pMethods, nSize);
456 array.Add(pMethods[i].pName);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_vfs.c 336 if( pFile->pMethods ){
337 ckfree((char *)pFile->pMethods);
577 if( pFd->pReal->pMethods ){
578 sqlite3_io_methods *pMethods;
587 pMethods = (sqlite3_io_methods *)ckalloc(nByte);
588 memcpy(pMethods, &tvfs_io_methods, nByte);
589 pMethods->iVersion = pVfs->iVersion;
591 pMethods->xShmUnmap = 0;
592 pMethods->xShmLock = 0;
593 pMethods->xShmBarrier = 0
    [all...]
pager.c     [all...]
os_unix.c     [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 571 ** for their own use. The pMethods entry is a pointer to an
577 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */
589 ** If the xOpen method sets the sqlite3_file.pMethods element
593 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
    [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.h 624 ** for their own use. The pMethods entry is a pointer to an
630 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */
642 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
646 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
    [all...]