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

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
simple_tokenizer.c 40 const char *pCurrent; /* current position in pInput */
100 c->pCurrent = c->pInput; /* start tokenizing at the beginning */
130 while( c->pCurrent-c->pInput<c->nBytes ){
131 int n = (int) strcspn(c->pCurrent, t->zDelim);
140 char ch = c->pCurrent[ii];
146 *piStartOffset = (int) (c->pCurrent-c->pInput);
149 c->pCurrent += n + 1;
153 c->pCurrent += n + 1;
  /hardware/ti/omap4-aah/security/tf_daemon/
lib_manifest2.c 139 uint8_t* pCurrent = pContext->pManifestContent + pContext->nOffset;
148 if (pCurrent == pContext->pManifestContent)
153 && pCurrent[0] == 0xEF
154 && pCurrent[1] == 0xBB
155 && pCurrent[2] == 0xBF)
157 pCurrent += 3;
161 while (pCurrent < pEnd)
163 if (*pCurrent == (uint8_t)'#')
166 pCurrent++;
167 while (pCurrent < pEnd && *pCurrent != CHAR_LF && *pCurrent != CHAR_CR
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 139 uint8_t* pCurrent = pContext->pManifestContent + pContext->nOffset;
148 if (pCurrent == pContext->pManifestContent)
153 && pCurrent[0] == 0xEF
154 && pCurrent[1] == 0xBB
155 && pCurrent[2] == 0xBF)
157 pCurrent += 3;
161 while (pCurrent < pEnd)
163 if (*pCurrent == (uint8_t)'#')
166 pCurrent++;
167 while (pCurrent < pEnd && *pCurrent != CHAR_LF && *pCurrent != CHAR_CR
    [all...]
  /system/core/include/sysutils/
List.h 247 _Node* pCurrent = mpMiddle->getNext();
250 while (pCurrent != mpMiddle) {
251 pNext = pCurrent->getNext();
252 delete pCurrent;
253 pCurrent = pNext;
  /system/core/include/utils/
List.h 246 _Node* pCurrent = mpMiddle->getNext();
249 while (pCurrent != mpMiddle) {
250 pNext = pCurrent->getNext();
251 delete pCurrent;
252 pCurrent = pNext;
  /system/netd/server/
List.h 247 _Node* pCurrent = mpMiddle->getNext();
250 while (pCurrent != mpMiddle) {
251 pNext = pCurrent->getNext();
252 delete pCurrent;
253 pCurrent = pNext;
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 244 ** Variable pCurrent always points to the start of a docid field within
261 char *pCurrent;
  /hardware/intel/img/psb_video/src/x11/
psb_coverlay.c 100 psb_x11_clip_list_t * pCurrent = NULL;
102 pCurrent = (psb_x11_clip_list_t *)calloc(1, sizeof(psb_x11_clip_list_t));
103 if (pCurrent) {
104 pCurrent->rect = *pRect;
105 pCurrent->next = pClipNext;
107 return pCurrent;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
os_unix.c 295 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
299 #define osOpen ((int(*)(const char*,int,...))aSyscall[0].pCurrent)
302 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
305 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
308 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
311 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
324 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
328 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
331 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
334 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
commctrl.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 2404 milliseconds