HomeSort by relevance Sort by last modified time
    Searched refs:fname (Results 101 - 125 of 568) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/elfutils/tests/
asm-tst8.c 38 static const char fname[] = "asm-tst8-out.o"; variable
59 ctx = asm_begin (fname, ebl, false);
83 fd = open (fname, O_RDONLY);
192 unlink (fname);
  /external/ipsec-tools/src/racoon/
rsalist.h 63 int rsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type);
  /external/libexif/libexif/
exif-loader.h 67 * \param[in] fname path to the file to read
69 void exif_loader_write_file (ExifLoader *loader, const char *fname);
  /external/qemu/
qemu-error.c 137 * Change the current location to file FNAME, line LNO.
139 void loc_set_file(const char *fname, int lno)
141 assert (fname || cur_loc->kind == LOC_FILE);
144 if (fname) {
145 cur_loc->ptr = fname;
qemu-error.h 31 void loc_set_file(const char *fname, int lno);
  /ndk/sources/host-tools/make-3.81/
filedef.h 117 # define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
118 file_timestamp_cons (fname, (st).st_mtime, (st).st_mtim.ST_MTIM_NSEC)
120 # define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
121 file_timestamp_cons (fname, (st).st_mtime, 0)
  /external/elfutils/src/
strings.c 56 static int read_fd (int fd, const char *fname, off64_t fdlen);
57 static int read_elf (Elf *elf, int fd, const char *fname, off64_t fdlen);
188 const char *fname = print_file_name ? argv[remaining] : NULL; local
200 result |= read_fd (fd, fname, fdlen);
202 result |= read_elf (elf, fd, fname, fdlen);
326 process_chunk_mb (const char *fname, const unsigned char *buf, off64_t to,
360 if (unlikely (fname != NULL))
362 fputs_unlocked (fname, stdout);
400 process_chunk (const char *fname, const unsigned char *buf, off64_t to,
407 process_chunk_mb (fname, buf, to, len, unprinted)
    [all...]
nm.c 123 /* Print symbols in file named FNAME. */
124 static int process_file (const char *fname, bool more_than_one);
127 static int handle_ar (int fd, Elf *elf, const char *prefix, const char *fname,
131 static int handle_elf (Elf *elf, const char *prefix, const char *fname,
135 #define INTERNAL_ERROR(fname) \
137 fname, __LINE__, PACKAGE_VERSION, __DATE__, elf_errmsg (-1))
357 process_file (const char *fname, bool more_than_one)
360 int fd = open (fname, O_RDONLY);
363 error (0, errno, gettext ("cannot open '%s'"), fname);
374 fname, NULL)
    [all...]
strip.c 108 /* Print symbols in file named FNAME. */
109 static int process_file (const char *fname);
113 const char *fname, mode_t mode, struct timeval tvp[2]);
116 static int handle_ar (int fd, Elf *elf, const char *prefix, const char *fname,
119 #define INTERNAL_ERROR(fname) \
121 fname, __LINE__, PACKAGE_VERSION, __DATE__, elf_errmsg (-1))
285 process_file (const char *fname)
295 if (stat64 (fname, &pre_st) != 0)
297 error (0, errno, gettext ("cannot stat input file '%s'"), fname);
308 int fd = open (fname, output_fname == NULL ? O_RDWR : O_RDONLY)
    [all...]
objdump.c 92 /* Print symbols in file named FNAME. */
93 static int process_file (const char *fname, bool more_than_one);
96 static int handle_ar (int fd, Elf *elf, const char *prefix, const char *fname,
100 static int handle_elf (Elf *elf, const char *prefix, const char *fname,
104 #define INTERNAL_ERROR(fname) \
106 fname, __LINE__, PACKAGE_VERSION, __DATE__, elf_errmsg (-1))
251 process_file (const char *fname, bool more_than_one)
254 int fd = open (fname, O_RDONLY);
257 error (0, errno, gettext ("cannot open %s"), fname);
268 fname, NULL)
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium.cc 85 FILE* fopen_internal(const char* fname, const char* mode) {
87 return _wfopen(UTF8ToUTF16(fname).c_str(), ASCIIToUTF16(mode).c_str());
89 return fopen(fname, mode);
154 ChromiumSequentialFile(const std::string& fname, FILE* f,
156 : filename_(fname), file_(f), uma_logger_(uma_logger) { }
193 ChromiumRandomAccessFile(const std::string& fname, ::base::PlatformFile file,
195 : filename_(fname), file_(file), uma_logger_(uma_logger) { }
496 ChromiumWritableFile::ChromiumWritableFile(const std::string& fname,
501 : filename_(fname),
507 base::FilePath path = base::FilePath::FromUTF8Unsafe(fname);
    [all...]
env_chromium_unittest.cc 72 virtual void DidSyncDir(const std::string& fname) {
74 ChromiumEnv::DidSyncDir(fname);
120 for (base::FilePath fname = dir_reader.Next(); !fname.empty();
121 fname = dir_reader.Next()) {
122 if (fname.MatchesExtension(extension))
131 for (base::FilePath fname = dir_reader.Next(); !fname.empty();
132 fname = dir_reader.Next()) {
133 if (fname.MatchesExtension(FPL(".ldb")))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 34 def writeFile(fname, contents):
35 dir = os.path.split(fname)[0]
38 f = open(fname, 'w')
42 def readFile(fname):
43 f = open(fname)
79 def mkdirs(fname):
80 if os.path.exists(fname) or fname == '':
82 base, file = os.path.split(fname)
84 os.mkdir(fname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 34 def writeFile(fname, contents):
35 dir = os.path.split(fname)[0]
38 f = open(fname, 'w')
42 def readFile(fname):
43 f = open(fname)
79 def mkdirs(fname):
80 if os.path.exists(fname) or fname == '':
82 base, file = os.path.split(fname)
84 os.mkdir(fname)
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 1171 char *fname = NULL; local
1236 fname = hostapd_ctrl_iface_path(hapd);
1237 if (fname == NULL)
1239 os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
1247 if (unlink(fname) < 0) {
1251 fname);
1260 "ctrl_iface socket '%s'", fname);
1265 "not used anymore", fname);
1266 os_free(fname);
1267 fname = NULL
1315 char *fname; local
1441 char *fname = NULL; local
1545 char *fname = NULL; local
    [all...]
hlr_auc_gw.c 258 static int read_gsm_triplets(const char *fname)
265 if (fname == NULL)
268 f = fopen(fname, "r");
270 printf("Could not open GSM tripler data file '%s'\n", fname);
301 fname, line, pos);
308 fname, line, pos);
318 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
324 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
333 printf("%s:%d - Invalid SRES (%s)\n", fname, line,
340 printf("%s:%d - Invalid SRES (%s)\n", fname, line
    [all...]
  /external/linux-tools-perf/util/
probe-finder.h 60 const char *fname; /* Real file name */ member in struct:probe_finder
93 const char *fname; /* File name */ member in struct:line_finder
  /hardware/qcom/keymaster/
QSEEComAPI.h 90 * @param[in] fname The directory and filename to load.
96 const char *fname, uint32_t sb_size);
122 * @param[in] fname The directory and filename to load.
127 const char *fname);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 68 fname = os.path.join(directory, name)
69 if os.path.isfile(fname):
70 return fname
71 if fname.lower().endswith(".dll"):
73 fname = fname + ".dll"
74 if os.path.isfile(fname):
75 return fname
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 68 fname = os.path.join(directory, name)
69 if os.path.isfile(fname):
70 return fname
71 if fname.lower().endswith(".dll"):
73 fname = fname + ".dll"
74 if os.path.isfile(fname):
75 return fname
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.cc 284 const char *fname = found.cFileName; local
285 if ((strlen(fname) >= prefix_length) &&
286 (memcmp(fname, prefix, prefix_length) == 0)) {
287 RAW_VLOG(0, "Removing old heap profile %s\n", fname);
288 // TODO(csilvers): we really need to unlink dirname + fname
289 _unlink(fname);
  /external/elfutils/libdwfl/
linux-kernel-modules.c 83 try_kernel_name (Dwfl *dwfl, char **fname, bool try_debug)
85 if (*fname == NULL)
88 /* Don't bother trying *FNAME itself here if the path will cause it to be
93 : TEMP_FAILURE_RETRY (open64 (*fname, O_RDONLY)));
101 *fname, basename (*fname), 0,
107 *fname, NULL, 0,
109 free (*fname);
110 *fname = debugfname;
127 find_kernel_elf (Dwfl *dwfl, const char *release, char **fname)
173 char *fname; local
    [all...]
  /external/fsck_msdos/
check.c 59 checkfilesys(const char *fname)
72 printf("** %s", fname);
74 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0);
76 dosfs = open(fname, O_RDONLY, 0);
97 printf("%s: ", fname);
  /external/chromium_org/content/test/data/indexeddb/
object_store_test.js 48 shouldBe("event.target.result.fname", "'John'");
82 var request = objectStore.add({fname: "Tom", lname: "Jones", id: 1});
99 objectStore.createIndex('fname_index', 'fname');
100 objectStore.createIndex('lname_index', 'fname');
105 var request = objectStore.add({fname: "John", lname: "Doe", id: 1});
  /cts/tools/dasm/src/dasm/
Main.java 66 private static Reader createReader(String fname) throws IOException {
67 FileInputStream fs = new FileInputStream(fname);
79 * @param fname
82 public static void assemble(String fname) {
88 inp = createReader(fname);
89 dAsm.readD(inp, new File(fname).getName(), generateLineNumbers);
97 + e.getMessage() + " while reading and parsing " + fname);
106 + " while reading and parsing " + fname);

Completed in 633 milliseconds

1 2 3 45 6 7 8 91011>>