HomeSort by relevance Sort by last modified time
    Searched refs:fname (Results 126 - 150 of 788) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/curl/src/
tool_doswin.c 214 char fname[PATH_MAX]; local
216 strncpy(fname, file_name, PATH_MAX-1);
217 fname[PATH_MAX-1] = '\0';
218 base = basename(fname);
222 if(strlen(fname) >= PATH_MAX-1) {
230 strcpy(file_name, fname);
  /frameworks/native/opengl/tools/glgen/src/
JFunc.java 26 String fname; field in class:JFunc
44 public void setName(String fname) {
45 this.fname = fname;
49 return fname;
159 String s = "Function " + fname + " returns " + ftype + ": ";
  /external/chromium-trace/catapult/third_party/coverage/
igor.py 261 def check_file(fname, crlf=True, trail_white=True):
263 fname = os.path.relpath(fname)
264 if fname in checked:
266 checked.add(fname)
269 with open(fname, "rb") as f:
273 print("%s@%d: CR found" % (fname, n))
280 print("%s@%d: trailing whitespace found" % (fname, n))
284 print("%s: final blank line" % (fname,))
290 fname = os.path.join(root, f
    [all...]
  /external/curl/tests/libtest/
first.c 90 char fname[CURL_MT_LOGFNAME_BUFSIZE]; local
93 strcpy(fname, env);
95 curl_memdebug(fname);
  /external/e2fsprogs/contrib/
fallocate.c 90 char *fname; local
153 fname = argv[optind++];
156 fd = open(fname, O_WRONLY|O_LARGEFILE);
  /external/elfutils/tests/
asm-tst6.c 32 static const char fname[] = "asm-tst6-out.o"; variable
51 ctx = asm_begin (fname, ebl, false);
145 unlink (fname);
asm-tst7.c 30 static const char fname[] = "asm-tst7-out.o"; variable
51 ctx = asm_begin (fname, ebl, false);
74 fd = open (fname, O_RDONLY);
176 unlink (fname);
asm-tst8.c 30 static const char fname[] = "asm-tst8-out.o"; variable
51 ctx = asm_begin (fname, ebl, false);
75 fd = open (fname, O_RDONLY);
184 unlink (fname);
update1.c 35 const char *fname = "xxx_update1"; local
41 fd = open (fname, O_RDWR | O_CREAT | O_TRUNC, 0666);
44 printf ("cannot open `%s': %s\n", fname, strerror (errno));
124 unlink (fname);
  /external/opencv3/samples/gpu/
video_reader.cpp 24 const std::string fname(argv[1]);
31 cv::VideoCapture reader(fname);
34 cv::Ptr<cv::cudacodec::VideoReader> d_reader = cv::cudacodec::createVideoReader(fname);
  /external/strace/tests/
getdents64.c 45 static const char fname[] = variable
114 assert(!creat(fname, 0600));
134 assert(!unlink(fname));
  /toolchain/binutils/binutils-2.25/gas/
input-scrub.c 448 If the fname is NULL, we don't change the current logical file name.
452 new_logical_line_flags (char *fname, /* DON'T destroy it! We point to it! */
474 else if (line_number == -1 && fname && !*fname && (flags & (1 << 2)))
478 fname = NULL;
481 if (fname
483 || filename_cmp (logical_input_file, fname)))
485 logical_input_file = fname;
493 new_logical_line (char *fname, int line_number)
495 return new_logical_line_flags (fname, line_number, 0)
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
utils.py 106 def _wrap_async_return(return_cb, fname, logger):
111 @param fname: Name of the DBus function called.
119 logger('AsyncResponse[%s] OK: |%s|' % (fname, str((args, kwargs))))
125 def _wrap_async_raise(raise_cb, fname, logger):
130 @param fname: Name of the DBus function called.
138 logger('AsyncResponse[%s] ERROR: |%s|' % (fname, str((args, kwargs))))
  /external/blktrace/btt/
mmap.c 102 void setup_ifile(char *fname)
108 fd = my_open(fname, O_RDONLY);
110 perror(fname);
114 perror(fname);
  /external/chromium-trace/catapult/third_party/coverage/coverage/
html.py 34 def data_filename(fname, pkgdir=""):
46 static_filename = os.path.join(static_dir, fname)
52 static_filename = os.path.join(static_dir, pkgdir, fname)
58 "Couldn't find static file %r from %r, tried: %r" % (fname, os.getcwd(), tried)
62 def data(fname):
64 with open(data_filename(fname)) as data_file:
162 def write_html(self, fname, html):
163 """Write `html` to `fname`, properly encoded."""
164 with open(fname, "wb") as fout:
401 def file_hash(self, fname)
    [all...]
  /external/elfutils/libdw/
dwarf_getsrc_file.c 43 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column,
49 bool is_basename = strchr (fname, '/') == NULL;
101 lastmatch = strcmp (basename (fname2), fname) == 0;
103 lastmatch = strcmp (fname2, fname) == 0;
  /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/libunwind/tests/
crasher.c 16 void write_maps(char *fname)
22 FILE *out = fopen(fname, "w");
45 write_maps(char *fname)
53 out = fopen(fname, "w");
  /external/libvncserver/common/
vncauth.c 73 rfbEncryptAndStorePasswd(char *passwd, char *fname)
79 if ((fp = fopen(fname,"w")) == NULL) return 1;
118 rfbDecryptPasswdFromFile(char *fname)
124 if ((fp = fopen(fname,"r")) == NULL) {
  /external/opencv3/samples/python2/
hist.py 58 fname = sys.argv[1] variable
60 fname = '../data/lena.jpg' variable
63 im = cv2.imread(fname)
66 print 'Failed to load image file:', fname
  /external/vboot_reference/tests/
vb20_verify_fw.c 29 const char *fname; local
36 fname = gbb_fname;
39 fname = vblock_fname;
46 f = fopen(fname, "rb");
  /hardware/invensense/6515/libsensors_iio/
MPLSupport.h 22 int inv_read_data(char *fname, long *data);
  /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 52 static int read_fd (int fd, const char *fname, off_t fdlen);
53 static int read_elf (Elf *elf, int fd, const char *fname, off_t fdlen);
191 const char *fname = print_file_name ? argv[remaining] : NULL; local
203 result |= read_fd (fd, fname, fdlen);
205 result |= read_elf (elf, fd, fname, fdlen);
329 process_chunk_mb (const char *fname, const unsigned char *buf, off_t to,
363 if (unlikely (fname != NULL))
365 fputs_unlocked (fname, stdout);
406 process_chunk (const char *fname, const unsigned char *buf, off_t to,
413 process_chunk_mb (fname, buf, to, len, unprinted)
    [all...]

Completed in 816 milliseconds

1 2 3 4 56 7 8 91011>>