HomeSort by relevance Sort by last modified time
    Searched refs:new_elem (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 353 HashElem *new_elem; /* New element added to the pH */ local
373 new_elem = (HashElem*)pH->xMalloc( sizeof(HashElem) );
374 if( new_elem==0 ) return data;
376 new_elem->pKey = pH->xMalloc( nKey );
377 if( new_elem->pKey==0 ){
378 pH->xFree(new_elem);
381 memcpy((void*)new_elem->pKey, pKey, nKey);
383 new_elem->pKey = (void*)pKey;
385 new_elem->nKey = nKey;
391 pH->xFree(new_elem);
    [all...]
fts1_hash.c 316 fts1HashElem *new_elem; /* New element added to the pH */ local
336 new_elem = (fts1HashElem*)pH->xMalloc( sizeof(fts1HashElem) );
337 if( new_elem==0 ) return data;
339 new_elem->pKey = pH->xMalloc( nKey );
340 if( new_elem->pKey==0 ){
341 pH->xFree(new_elem);
344 memcpy((void*)new_elem->pKey, pKey, nKey);
346 new_elem->pKey = (void*)pKey;
348 new_elem->nKey = nKey;
354 pH->xFree(new_elem);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 321 fts2HashElem *new_elem; /* New element added to the pH */ local
341 new_elem = (fts2HashElem*)fts2HashMalloc( sizeof(fts2HashElem) );
342 if( new_elem==0 ) return data;
344 new_elem->pKey = fts2HashMalloc( nKey );
345 if( new_elem->pKey==0 ){
346 fts2HashFree(new_elem);
349 memcpy((void*)new_elem->pKey, pKey, nKey);
351 new_elem->pKey = (void*)pKey;
353 new_elem->nKey = nKey;
359 fts2HashFree(new_elem);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 334 Fts3HashElem *new_elem; /* New element added to the pH */ local
361 new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) );
362 if( new_elem==0 ) return data;
364 new_elem->pKey = fts3HashMalloc( nKey );
365 if( new_elem->pKey==0 ){
366 fts3HashFree(new_elem);
369 memcpy((void*)new_elem->pKey, pKey, nKey);
371 new_elem->pKey = (void*)pKey;
373 new_elem->nKey = nKey;
378 fts3HashInsertElement(pH, &pH->ht[h], new_elem);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
hash.c 236 HashElem *new_elem; /* New element added to the pH */ local
259 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
260 if( new_elem==0 ) return data;
261 new_elem->pKey = pKey;
262 new_elem->nKey = nKey;
263 new_elem->data = data;
272 insertElement(pH, &pH->ht[h], new_elem);
274 insertElement(pH, 0, new_elem);
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 280 ProfilesInfoMap::iterator new_elem = local
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 21622 HashElem *new_elem; \/* New element added to the pH *\/ local
118683 Fts3HashElem *new_elem; \/* New element added to the pH *\/ local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 22468 HashElem *new_elem; \/* New element added to the pH *\/ local
123634 Fts3HashElem *new_elem; \/* New element added to the pH *\/ local
    [all...]
  /external/sqlite/dist/
sqlite3.c 22468 HashElem *new_elem; \/* New element added to the pH *\/ local
123680 Fts3HashElem *new_elem; \/* New element added to the pH *\/ local
    [all...]

Completed in 2342 milliseconds