Searched refs:fileName (Results 1 – 6 of 6) sorted by relevance
/build/blueprint/choosestage/ |
D | choosestage.go | 132 for _, fileName := range flag.Args() { 133 timestampName := fileName + ".timestamp" 138 if filepath.Clean(currentFile) == filepath.Clean(fileName) { 140 if ok, err := compareFiles(fileName, outputFile); err != nil { 144 fmt.Printf("Stage %s has changed, restarting\n", filepath.Base(fileName)) 145 gotoFile = fileName 151 fileStat, err := os.Stat(fileName) 167 …fmt.Printf("For %s:\n file: %s\n time: %s\n", fileName, fileStat.ModTime(), timestampStat.ModTim… 177 gotoFile = fileName
|
/build/tools/zipalign/ |
D | ZipFile.h | 80 status_t add(const char* fileName, int compressionMethod, in add() argument 83 return add(fileName, fileName, compressionMethod, ppEntry); in add() 85 status_t add(const char* fileName, const char* storageName, in add() argument 88 return addCommon(fileName, NULL, 0, storageName, in add() 98 status_t addGzip(const char* fileName, const char* storageName, in addGzip() argument 101 return addCommon(fileName, NULL, 0, storageName, in addGzip() 166 ZipEntry* getEntryByName(const char* fileName) const; 233 status_t addCommon(const char* fileName, const void* data, size_t size,
|
D | ZipAlign.cpp | 171 static int verify(const char* fileName, int alignment, bool verbose, in verify() argument 178 printf("Verifying alignment of %s (%d)...\n", fileName, alignment); in verify() 180 if (zipFile.open(fileName, ZipFile::kOpenReadOnly) != NO_ERROR) { in verify() 181 fprintf(stderr, "Unable to open '%s' for verification\n", fileName); in verify()
|
D | ZipEntry.cpp | 113 void ZipEntry::initNew(const char* fileName, const char* comment) in initNew() argument 115 assert(fileName != NULL && *fileName != '\0'); // name required in initNew() 121 mCDE.mFileNameLength = strlen(fileName); in initNew() 128 strcpy((char*) mCDE.mFileName, fileName); in initNew()
|
D | ZipFile.cpp | 149 ZipEntry* ZipFile::getEntryByName(const char* fileName) const in getEntryByName() 166 strcmp(fileName, pEntry->getFileName()) == 0) in getEntryByName() 361 status_t ZipFile::addCommon(const char* fileName, const void* data, size_t size, in addCommon() argument 387 inputFp = fopen(fileName, FILE_OPEN_RO); in addCommon()
|
D | ZipEntry.h | 164 void initNew(const char* fileName, const char* comment);
|