Searched refs:filename (Results 76 - 94 of 94) sorted by relevance

1234

/fuchsia/zircon/third_party/tools/android/
H A Dmkdtimg38 def compress(filename, input, output):
42 statval = stat(filename)
/fuchsia/zircon/system/ulib/runtests-utils/
H A Dfuchsia-run-test.cpp58 // "test/<test filename>" or "test/disabled/<test filename>"
414 char filename[ZX_MAX_NAME_LEN]; local
415 snprintf(filename, sizeof(filename), "%s.%" PRIu64, data.sink_name.c_str(), info.koid);
417 fbl::unique_fd fd{openat(sink_dir_fd.get(), filename, O_WRONLY | O_CREAT | O_EXCL, 0666)};
429 auto dump_file = JoinPath(&path[i], JoinPath(data.sink_name, filename));
/fuchsia/zircon/system/ulib/test-utils/
H A Dtest-utils.c204 const char* filename = argv[0]; local
206 name = filename;
209 launchpad_load_from_file(lp, filename);
/fuchsia/zircon/system/ulib/tftp/
H A Dinternal.h152 // Maximum filename really is 505 including \0
154 char filename[512]; member in struct:tftp_session_t
186 // Generates a read or write request to send to a tftp server. |filename| is
/fuchsia/zircon/system/utest/fvm-host/
H A Dmain.cpp234 char filename[len+1]; local
237 filename[i] = 'a' + rand() % 26;
240 filename[len] = 0;
242 strcat(out, filename);
/fuchsia/zircon/system/host/fidl/lib/
H A Dflat_ast.cpp372 bool Dependencies::Register(StringView filename, Library* dep_library, argument
375 if (!InsertByName(filename, library_name, dep_library)) {
381 if (!InsertByName(filename, alias_name, dep_library)) {
391 bool Dependencies::InsertByName(StringView filename, const std::vector<StringView>& name, argument
393 auto iter = dependencies_.find(filename);
395 dependencies_.emplace(filename, std::make_unique<ByName>());
398 iter = dependencies_.find(filename);
405 bool Dependencies::Lookup(StringView filename, const std::vector<StringView>& name, argument
407 auto iter1 = dependencies_.find(filename);
463 auto filename local
643 auto filename = using_directive->location().source_file().filename(); local
[all...]
H A Dtables_generator.cpp64 void TablesGenerator::GenerateInclude(StringView filename) { argument
66 Emit(&tables_file_, filename);
/fuchsia/zircon/third_party/ulib/jemalloc/bin/
H A Djeprof.in174 necessary server-side support code, see this filename (or one like it):
306 # Cache from filename/linenumber to source code
895 my $filename = $1;
897 $filename = TempName($main::next_tmpfile, "callgrind");
899 PrintCallgrind($calls, $filename);
901 RunKcachegrind($filename, " & ");
1060 callgrind [filename]
1061 Generates callgrind file. If no filename is given, kcachegrind is called.
1271 my $filename;
1276 $filename
[all...]
/fuchsia/zircon/third_party/ulib/linenoise/
H A Dlinenoise.c1256 int linenoiseHistorySave(const char *filename) { argument
1261 fp = fopen(filename,"w");
1264 chmod(filename,S_IRUSR|S_IWUSR);
1276 int linenoiseHistoryLoad(const char *filename) { argument
1277 FILE *fp = fopen(filename,"r");
/fuchsia/zircon/system/dev/nand/broker/test/
H A Dbroker-test.cpp30 auto callback = [](int dir_fd, int event, const char* filename, void* cookie) {
31 if (event != WATCH_EVENT_ADD_FILE || strcmp(filename, "broker") != 0) {
35 broker->reset(openat(dir_fd, filename, O_RDWR));
/fuchsia/zircon/system/utest/debugger/
H A Dutils.cpp173 const char* filename = argv[0]; local
175 name = filename;
179 launchpad_load_from_file(lp, filename);
/fuchsia/zircon/third_party/ulib/musl/stubs/
H A Diostubs.c45 static int stub_openat(int fd, const char* filename, int flags, ...) { argument
135 static char* stub_realpath(const char* restrict filename, char* restrict resolved) { argument
/fuchsia/zircon/system/uapp/disk-pave/
H A Ddevice-partitioner.cpp74 auto cb = [](int dirfd, int event, const char* filename, void* cookie) {
78 if ((strcmp(filename, ".") == 0) || strcmp(filename, "..") == 0) {
81 fbl::unique_fd devfd(openat(dirfd, filename, O_RDWR));
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Dprof_reset.c9 prof_dump_open_intercept(bool propagate_err, const char *filename) argument
/fuchsia/zircon/system/ulib/fdio/
H A Dunistd.c1561 char* realpath(const char* restrict filename, char* restrict resolved) { argument
1568 if (!filename) {
1573 if (filename[0] != '/') {
1574 // Convert 'filename' from a relative path to an absolute path.
1575 size_t file_len = strlen(filename);
1587 strcpy(tmp2 + cwd_len + 1, filename);
1595 zx_status_t status = __fdio_cleanpath(filename, tmp, &outlen, &is_dir);
1714 int faccessat(int dirfd, const char* filename, int amode, int flag) { argument
1733 if ((status = __fdio_open_at(&io, dirfd, filename, 0, 0)) < 0) {
/fuchsia/zircon/system/host/fidl/include/fidl/
H A Dflat_ast.h535 bool Register(StringView filename, Library* dep_library,
538 // Lookup a dependent library by |filename| and |name|.
539 bool Lookup(StringView filename, const std::vector<StringView>& name,
545 bool InsertByName(StringView filename, const std::vector<StringView>& name,
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp639 const char* filename) {
655 fprintf(stderr, "mmap: %s: %s\n", filename, strerror(errno));
1651 bool ImportFile(const FileContents& file, const char* filename, argument
1665 fprintf(stderr, "%s: header size doesn't match file size\n", filename);
1785 Each argument after -- is shell filename PATTERN (* matches even /)\n\
637 Map(const fbl::unique_fd& fd, const struct stat& st, const char* filename) argument
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dctl.c2052 const char *filename = NULL; local
2058 WRITE(filename, const char *);
2060 if (prof_mdump(tsd, filename)) {
/fuchsia/zircon/third_party/tools/android/avb/
H A Davbtool634 filename: Name of file.
657 self.filename = image_filename
672 self._image = open(self.filename, 'r+b')
1379 .format(self.partition_name, self.hash_algorithm, image.filename,
1519 .format(self.partition_name, self.hash_algorithm, image.filename,
2242 .format(alg_name, image.filename))
2245 .format(alg_name, image.filename))
3630 image_filename: The filename of the image.

Completed in 224 milliseconds

1234