HomeSort by relevance Sort by last modified time
    Searched refs:filename (Results 1 - 25 of 5344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CoverageMapping/
builtinmacro.c 5 // CHECK: filename
6 const char *filename (const char *name) { // CHECK-NEXT: File 0, [[@LINE]]:41 -> [[@LINE+3]]:2 = #0 function
12 filename(__FILE__ "test.c");
  /external/valgrind/none/tests/
fdleak_creat.c 8 char filename[24]; local
12 sprintf(filename, "/tmp/file.%ld", (long) getpid());
13 (void) DO( creat(filename, 0) );
14 (void) DO( unlink(filename) );
  /toolchain/binutils/binutils-2.25/gas/
output-file.h 21 void output_file_append (char *where, long length, char *filename);
22 void output_file_close (char *filename);
  /external/shflags/examples/
write_date.sh 3 # This script takes a filename as input and writes the current date to the
28 FLAGS_HELP="USAGE: $0 [flags] filename"
48 # check for filename
49 [ $# -gt 0 ] || die 'filename missing'
50 filename=$1
52 [ -f "${filename}" -a ${FLAGS_force} -eq ${FLAGS_FALSE} ] \
53 && die 'filename exists; not overwriting'
54 write_date "${filename}"
  /external/e2fsprogs/tests/progs/
hold_inode.c 24 char *filename; local
30 filename = argv[1];
31 if (stat(filename, &statbuf) < 0) {
32 perror(filename);
36 if (!opendir(filename)) {
37 perror(filename);
41 if (open(filename, O_RDONLY) < 0) {
42 perror(filename);
  /external/vboot_reference/host/lib/include/
host_misc.h 19 /* Read data from [filename]. Store the size of returned data in [size].
23 uint8_t* ReadFile(const char* filename, uint64_t* size);
26 * filename to read.
29 char* ReadFileString(char* dest, int size, const char* filename);
34 int ReadFileInt(const char* filename, unsigned* value);
39 int ReadFileBit(const char* filename, int bitmask);
41 /* Writes [size] bytes of [data] to [filename].
44 int WriteFile(const char* filename, const void *data, uint64_t size);
49 * @param filename Name of file to read from
56 int vb2_read_file(const char *filename, uint8_t **data_ptr, uint32_t *size_ptr)
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
NonVolatileStore.cpp 66 char filename[256]; local
71 ALOGE ("%s: filename too long", __FUNCTION__);
74 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
76 ALOGD ("%s: buffer len=%u; file=%s", __FUNCTION__, nbytes, filename);
77 int fileStream = open (filename, O_RDONLY);
124 char filename[256]; local
130 ALOGE ("%s: filename too long", __FUNCTION__);
133 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block)
199 char filename[256]; local
243 char filename[256]; local
    [all...]
  /art/runtime/hprof/
hprof.h 24 void DumpHeap(const char* filename, int fd, bool direct_to_ddms);
  /build/kati/
loc.h 24 : filename(0), lineno(-1) {}
26 : filename(f), lineno(l) {
29 const char* filename; member in struct:Loc
33 #define LOCF(x) (x).filename, (x).lineno
  /external/avahi/avahi-client/
xdg-config.h 25 FILE *avahi_xdg_config_open(const char *filename);
  /external/curl/lib/
netrc.h 29 char *filename);
  /external/curl/src/
tool_parsecfg.h 26 int parseconfig(const char *filename, struct GlobalConfig *config);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BaseResourceLoader.java 37 * Default implementation returns the filename as the ResourceLoaders that subclass this class
38 * tend to assume they are the only ResourceLoader in use. Or at least that the filename is the
42 public Object getKey(String filename) {
43 return filename;
50 public Object getResourceVersionId(String filename) {
51 return filename;
  /external/libvorbis/test/
write_read.h 18 /* Write supplied data to an Ogg/Vorbis file with specified filename at
20 void write_vorbis_data_or_die (const char *filename, int srate, float q,
26 void read_vorbis_data_or_die (const char *filename, int srate,
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
  /external/slf4j/
binderVersion.pl 15 my $filename = $_[0];
17 if(-s $filename) {
18 print "Processing [" . $filename . "]\r\n";
20 my $original = "$filename.original";
22 rename($filename, $original);
23 open(OUT, ">$filename");
36 print "File [" . $filename . "] does not exist\r\n"
version.pl 12 my $filename = $_[0];
14 if(-s $filename) {
15 print "Processing [" . $filename . "]\r\n";
17 my $original = "$filename.original";
19 rename($filename, $original);
20 open(OUT, ">$filename");
35 print "File [" . $filename . "] does not exist\r\n"
  /libcore/luni/src/main/java/java/net/
DefaultFileNameMap.java 26 public String getContentTypeFor(String filename) {
27 if (filename.endsWith("/")) {
31 int lastCharInExtension = filename.lastIndexOf('#');
33 lastCharInExtension = filename.length();
35 int firstCharInExtension = filename.lastIndexOf('.') + 1;
37 if (firstCharInExtension > filename.lastIndexOf('/')) {
38 ext = filename.substring(firstCharInExtension, lastCharInExtension);
  /external/webrtc/webrtc/modules/audio_processing/logging/
aec_logging_file_handling.cc 32 char filename[64]; local
33 int written = rtc::sprintfn(filename, sizeof(filename), "%s%d-%d.wav", name,
39 RTC_DCHECK_LT(static_cast<size_t>(written), sizeof(filename));
41 *wav_file = rtc_WavOpen(filename, sample_rate, 1);
45 char filename[64]; local
46 int written = rtc::sprintfn(filename, sizeof(filename), "%s_%d.dat", name,
52 RTC_DCHECK_LT(static_cast<size_t>(written), sizeof(filename));
54 *file = fopen(filename, "wb")
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
AssetFileAddress.java 32 public AssetFileAddress(final String filename, final long offset, final long length) {
33 mFilename = filename;
41 * @param filename the filename.
44 public static AssetFileAddress makeFromFileName(final String filename) {
45 if (null == filename) return null;
46 final File f = new File(filename);
48 return new AssetFileAddress(filename, 0l, f.length());
54 * @param filename the filename
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
StouCommandHandler.java 24 * unique filename, which is "" by default. You can customize the returned filename by setting
25 * the <code>filename</code> property.
39 private String filename = ""; field in class:StouCommandHandler
42 * Override the default implementation to send a custom reply text that includes the STOU response filename
47 final String[] ARGS = {filename};
52 * Set the filename returned with the final reply of the STOU command
54 * @param filename - the filename
56 public void setFilename(String filename) {
    [all...]
  /external/libnfc-nci/src/adaptation/
libmain.c 89 char filename[256], filename2[256]; local
91 memset (filename, 0, sizeof(filename));
97 ALOGE ("%s: filename too long", __FUNCTION__);
100 sprintf (filename, "%s%u", filename2, block);
102 ALOGD ("%s: buffer len=%u; file=%s", __FUNCTION__, nbytes, filename);
103 int fileStream = open (filename, O_RDONLY);
148 char filename[256], filename2[256]; local
150 memset (filename, 0, sizeof(filename));
203 char filename[256], filename2[256]; local
246 char filename[256], filename2[256]; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
linecache.py 3 This is intended to read lines from modules imported -- hence if a filename
13 def getline(filename, lineno, module_globals=None):
14 lines = getlines(filename, module_globals)
33 def getlines(filename, module_globals=None):
37 if filename in cache:
38 return cache[filename][2]
40 return updatecache(filename, module_globals)
43 def checkcache(filename=None):
47 if filename is None:
50 if filename in cache
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
linecache.py 3 This is intended to read lines from modules imported -- hence if a filename
13 def getline(filename, lineno, module_globals=None):
14 lines = getlines(filename, module_globals)
33 def getlines(filename, module_globals=None):
37 if filename in cache:
38 return cache[filename][2]
40 return updatecache(filename, module_globals)
43 def checkcache(filename=None):
47 if filename is None:
50 if filename in cache
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
linecache.py 3 This is intended to read lines from modules imported -- hence if a filename
13 def getline(filename, lineno, module_globals=None):
14 lines = getlines(filename, module_globals)
33 def getlines(filename, module_globals=None):
37 if filename in cache:
38 return cache[filename][2]
40 return updatecache(filename, module_globals)
43 def checkcache(filename=None):
47 if filename is None:
50 if filename in cache
    [all...]

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011>>