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

  /build/tools/zipalign/
ZipAlign.cpp 50 ZipEntry* pEntry;
58 pEntry = pZin->getEntryByIndex(i);
59 if (pEntry == NULL) {
64 if (pEntry->isCompressed()) {
67 // pEntry->getFileName(), (long) pEntry->getFileOffset(),
68 // (long) pEntry->getUncompressedLen());
76 long newOffset = pEntry->getFileOffset() + bias;
80 // pEntry->getFileName(), (long) pEntry->getFileOffset()
    [all...]
ZipFile.cpp 161 ZipEntry* pEntry = mEntries[idx];
162 if (!pEntry->getDeleted() &&
163 strcmp(fileName, pEntry->getFileName()) == 0)
165 return pEntry;
309 ZipEntry* pEntry = new ZipEntry;
311 result = pEntry->initFromCDE(mZipFp);
314 delete pEntry;
318 mEntries.add(pEntry);
362 ZipEntry* pEntry = NULL;
394 pEntry = new ZipEntry
    [all...]
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 110 struct dirent* pEntry;
111 while ((pEntry = readdir(pDir))) {
113 pluginPath = dirPath + "/" + pEntry->d_name;
Drm.cpp 159 struct dirent* pEntry;
160 while ((pEntry = readdir(pDir))) {
162 String8 pluginPath = dirPath + "/" + pEntry->d_name;
  /bootable/recovery/minzip/
Hash.c 182 HashEntry* pEntry;
191 pEntry = &pHashTable->pEntries[itemHash & (pHashTable->tableSize-1)];
193 while (pEntry->data != NULL) {
194 if (pEntry->data != HASH_TOMBSTONE &&
195 pEntry->hashValue == itemHash &&
196 (*cmpFunc)(pEntry->data, item) == 0)
199 //LOGD("+++ match on entry %d\n", pEntry - pHashTable->pEntries);
203 pEntry++;
204 if (pEntry == pEnd) { /* wrap around to start */
207 pEntry = pHashTable->pEntries
    [all...]
Zip.c 91 static void dumpEntry(const ZipEntry* pEntry)
93 LOGI(" %p '%.*s'\n", pEntry->fileName,pEntry->fileNameLen,pEntry->fileName);
94 LOGI(" off=%ld comp=%ld uncomp=%ld how=%d\n", pEntry->offset,
95 pEntry->compLen, pEntry->uncompLen, pEntry->compression);
146 static void addEntryToHashTable(HashTable* pHash, ZipEntry* pEntry)
148 unsigned int itemHash = computeHash(pEntry->fileName, pEntry->fileNameLen)
    [all...]
  /dalvik/vm/
Hash.cpp 177 HashEntry* pEntry;
186 pEntry = &pHashTable->pEntries[itemHash & (pHashTable->tableSize-1)];
188 while (pEntry->data != NULL) {
189 if (pEntry->data != HASH_TOMBSTONE &&
190 pEntry->hashValue == itemHash &&
191 (*cmpFunc)(pEntry->data, item) == 0)
194 //ALOGD("+++ match on entry %d", pEntry - pHashTable->pEntries);
198 pEntry++;
199 if (pEntry == pEnd) { /* wrap around to start */
202 pEntry = pHashTable->pEntries
    [all...]
Native.cpp 264 static bool checkOnLoadResult(SharedLib* pEntry)
267 if (pEntry->onLoadThreadId == self->threadId) {
273 self->threadId, pEntry->pathName);
277 ALOGV("+++ retrieving %s OnLoad status", pEntry->pathName);
280 dvmLockMutex(&pEntry->onLoadLock);
281 while (pEntry->onLoadResult == kOnLoadPending) {
283 self->threadId, pEntry->pathName);
285 pthread_cond_wait(&pEntry->onLoadCond, &pEntry->onLoadLock);
288 if (pEntry->onLoadResult == kOnLoadOkay)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macwm.c 178 unsigned char * pEntry = (unsigned char *) &pTableGammaTemp->gFormulaData + pTableGammaTemp->gFormulaSize; /* base of table */
188 *(pEntry + indexChan * entries * bytesPerEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
195 *(pEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
  /frameworks/av/drm/libdrmframework/include/
PlugInManager.h 205 struct dirent* pEntry;
207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) {
208 if (!isPlugIn(pEntry)) {
214 plugInPath += pEntry->d_name;
229 bool isPlugIn(const struct dirent* pEntry) const {
230 String8 sName(pEntry->d_name);
239 bool isDotOrDDot(const struct dirent* pEntry) const {
240 String8 sName(pEntry->d_name);
247 bool isDirectory(const struct dirent* pEntry) const {
248 return DT_DIR == pEntry->d_type
    [all...]
  /dalvik/vm/jdwp/
JdwpSocket.cpp 398 struct hostent* pEntry;
415 &pEntry, &h_errno);
424 pEntry = gethostbyname(state->params.host);
425 if (pEntry == NULL) {
433 memcpy(&addr.addrInet.sin_addr, pEntry->h_addr, pEntry->h_length);
434 addr.addrInet.sin_family = pEntry->h_addrtype;
  /frameworks/base/tools/aapt/
ZipFile.cpp 161 ZipEntry* pEntry = mEntries[idx];
162 if (!pEntry->getDeleted() &&
163 strcmp(fileName, pEntry->getFileName()) == 0)
165 return pEntry;
309 ZipEntry* pEntry = new ZipEntry;
311 result = pEntry->initFromCDE(mZipFp);
314 delete pEntry;
318 mEntries.add(pEntry);
362 ZipEntry* pEntry = NULL;
394 pEntry = new ZipEntry
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 339 const mkvparser::SeekHead::Entry* pEntry;
343 pEntry = pSH->GetEntry(index);
345 if (pEntry->id == 0x0C53BB6B) { // Cues ID
347 pSegment->ParseCues(pEntry->pos, pos, len);
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1012 milliseconds