HomeSort by relevance Sort by last modified time
    Searched refs:filename (Results 1 - 25 of 8141) 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");
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
sha.h 10 int sha_file(const char *filename, unsigned char *md);
  /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.27/gas/
output-file.h 21 void output_file_append (char *where, long length, char *filename);
22 void output_file_close (const char *filename);
  /external/ltp/testcases/network/stress/ns-tools/
create_file 31 # $1: filename
51 echo "Usage: create_file filename filesize" >&2
54 filename=$1
62 echo -n "A" > $filename 2>/dev/null
63 echo -n "Z" | dd of=$filename bs=1 seek=`expr $filesize - 1` >/dev/null 2>&1
65 echo "Failed to create $filename" >&2
68 chmod 644 $filename
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
crlf.py 7 for filename in sys.argv[1:]:
8 if os.path.isdir(filename):
9 print filename, "Directory!"
11 data = open(filename, "rb").read()
13 print filename, "Binary!"
17 print filename
18 f = open(filename, "wb")
lfcr.py 8 for filename in sys.argv[1:]:
9 if os.path.isdir(filename):
10 print filename, "Directory!"
12 data = open(filename, "rb").read()
14 print filename, "Binary!"
18 print filename
19 f = open(filename, "wb")
  /external/python/cpython2/Tools/scripts/
crlf.py 7 for filename in sys.argv[1:]:
8 if os.path.isdir(filename):
9 print filename, "Directory!"
11 data = open(filename, "rb").read()
13 print filename, "Binary!"
17 print filename
18 f = open(filename, "wb")
lfcr.py 8 for filename in sys.argv[1:]:
9 if os.path.isdir(filename):
10 print filename, "Directory!"
12 data = open(filename, "rb").read()
14 print filename, "Binary!"
18 print filename
19 f = open(filename, "wb")
  /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/perf_data_converter/src/quipper/
perf_protobuf_io.h 17 bool SerializeFromFile(const string& filename, PerfDataProto* proto);
21 bool SerializeFromFileWithOptions(const string& filename,
26 bool DeserializeToFile(const PerfDataProto& proto, const string& filename);
30 const string& filename);
35 const string& filename);
  /external/ltp/include/old/
old_resource.h 47 #define TST_RESOURCE_COPY(cleanup_fn, filename, dest) \
49 (filename), (dest))
53 const char *filename, const char *dest);
  /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}"
  /system/libufdt/tests/src/
util.h 22 char *load_file(const char *filename, size_t *len_ptr);
23 int write_buf_to_file(const char *filename, const void *buf, size_t buf_size);
24 int write_fdt_to_file(const char *filename, const void *fdt);
  /external/syslinux/gpxe/src/util/
padimg.pl 22 while ( my $filename = shift ) {
23 die "$filename is not a file\n" unless -f $filename;
24 my $oldsize = -s $filename;
30 $filename, $oldsize, $newsize, $padsize, $byte;
33 sysopen ( my $fh, $filename, ( O_WRONLY | O_APPEND ) )
34 or die "Could not open $filename for appending: $!\n";
36 or die "Could not append to $filename: $!\n";
39 truncate $filename, $newsize
40 or die "Could not resize $filename: $!\n"
    [all...]
  /external/deqp/scripts/verify/
message.py 29 def __init__ (self, type, filename, message):
31 self.filename = filename
36 return prefix[self.type] + os.path.basename(self.filename) + ": " + self.message
38 def error (filename, message):
39 return ValidationMessage(ValidationMessage.TYPE_ERROR, filename, message)
41 def warning (filename, message):
42 return ValidationMessage(ValidationMessage.TYPE_WARNING, filename, message)
  /external/e2fsprogs/tests/progs/
hold_inode.c 25 char *filename; local
31 filename = argv[1];
32 if (stat(filename, &statbuf) < 0) {
33 perror(filename);
37 if (!opendir(filename)) {
38 perror(filename);
42 if (open(filename, O_RDONLY) < 0) {
43 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...]
  /art/runtime/hprof/
hprof.h 24 void DumpHeap(const char* filename, int fd, bool direct_to_ddms);
  /build/kati/
loc.h 23 Loc() : filename(0), lineno(-1) {}
24 Loc(const char* f, int l) : filename(f), lineno(l) {}
26 const char* filename; member in struct:Loc
30 #define LOCF(x) (x).filename, (x).lineno
  /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/tensorflow/tensorflow/stream_executor/lib/
env.h 31 inline Status FileExists(const string& filename) {
32 return Env::Default()->FileExists(filename);
35 inline Status FileExists(const port::StringPiece& filename) {
36 return Env::Default()->FileExists(filename.ToString());
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);

Completed in 453 milliseconds

1 2 3 4 5 6 7 8 91011>>