Searched defs:pMethods (Results 1 - 10 of 10) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Runtime.cpp432 JSMethodSpec* pMethods = NULL; local
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[
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_vfs.c336 if( pFile->pMethods ){
337 ckfree((char *)pFile->pMethods);
577 if( pFd->pReal->pMethods ){
578 sqlite3_io_methods *pMethods; local
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
[all...]
H A Dos_unix.c4361 const sqlite3_io_methods *pMethods; /* Appropriate locking method */ member in struct:Mapping
4385 return aMap[i].pMethods;
5138 ** pFile->pMethods will be NULL so sqlite3OsClose will be a no-op
H A Dpager.c774 ** if( pPager->jfd->pMethods ){ ...
776 #define isOpen(pFd) ((pFd)->pMethods)
2738 pPager->fd->pMethods==0 ||
6685 const sqlite3_io_methods *pMethods = pPager->fd->pMethods; local
6686 return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h571 ** for their own use. The pMethods entry is a pointer to an
577 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_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.
865 ** the xOpen method must set the sqlite3_file.pMethods to either
867 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
H A Dsqlite3.c1114 ** for their own use. The pMethods entry is a pointer to an
1120 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_file
1132 ** If the xOpen method sets the sqlite3_file.pMethods element
1136 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
1408 ** the xOpen method must set the sqlite3_file.pMethods to either
1410 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
14001 if( pId->pMethods ){
14002 rc = pId->pMethods->xClose(pId);
14003 pId->pMethods = 0;
14009 return id->pMethods
28502 const sqlite3_io_methods *pMethods; /* Appropriate locking method */ member in struct:Mapping
43115 const sqlite3_io_methods *pMethods = pPager->fd->pMethods; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h624 ** for their own use. The pMethods entry is a pointer to an
630 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_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
1092 ** the xOpen method must set the sqlite3_file.pMethods to either
1094 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
H A Dsqlite3.c739 ** for their own use. The pMethods entry is a pointer to an
745 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_file
757 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
761 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1207 ** the xOpen method must set the sqlite3_file.pMethods to either
1209 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
15797 if( pId->pMethods ){
15798 rc = pId->pMethods->xClose(pId);
15799 pId->pMethods = 0;
15805 return id->pMethods
29354 const sqlite3_io_methods *pMethods; /* Appropriate locking method */ member in struct:Mapping
47313 const sqlite3_io_methods *pMethods = pPager->fd->pMethods; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.h624 ** for their own use. The pMethods entry is a pointer to an
630 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_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
1092 ** the xOpen method must set the sqlite3_file.pMethods to either
1094 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
H A Dsqlite3.c739 ** for their own use. The pMethods entry is a pointer to an
745 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ member in struct:sqlite3_file
757 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
761 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1207 ** the xOpen method must set the sqlite3_file.pMethods to either
1209 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
15797 if( pId->pMethods ){
15798 rc = pId->pMethods->xClose(pId);
15799 pId->pMethods = 0;
15805 return id->pMethods
29374 const sqlite3_io_methods *pMethods; /* Appropriate locking method */ member in struct:Mapping
47333 const sqlite3_io_methods *pMethods = pPager->fd->pMethods; local
[all...]

Completed in 6029 milliseconds