Searched defs:file (Results 1 - 25 of 1667) sorted by relevance

1234567891011>>

/external/toolchain-utils/user_activity_benchmarks/
H A Dselect_hot_functions.sql1 -- Collects the function, with its file, the object and inclusive count value.
7 frame.filename AS file, local
25 GROUP BY function, dso, file
/external/curl/tests/
H A Dnroff-scan.pl11 # This software is licensed as described in the file COPYING, which
17 # furnished to do so, under the terms of the COPYING file.
55 sub file { subroutine
58 die "no file";
101 file($f);
/external/syslinux/core/fs/lib/
H A Dclose.c3 void generic_close_file(struct file *file) argument
5 if (file->inode) {
6 file->offset = 0;
7 put_inode(file->inode);
/external/bison/lib/
H A Ddirname.c1 /* dirname.c -- return all but the last element in a file name
32 dir_name (char const *file) argument
34 char *result = mdir_name (file);
H A Dstripslash.c1 /* stripslash.c -- remove redundant trailing slashes from a file name
24 was removed. This is useful when using file name completion from a
31 strip_trailing_slashes (char *file) argument
33 char *base = last_component (file);
37 /* last_component returns "" for file system roots, but we need to turn
40 base = file;
H A Ddirname-lgpl.c1 /* dirname.c -- return all but the last element in a file name
32 dir_len (char const *file) argument
34 size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);
40 && ISSLASH (file[prefix_length]))
41 : (ISSLASH (file[0])
43 && ISSLASH (file[1]) && ! ISSLASH (file[2])
48 for (length = last_component (file) - file;
50 if (! ISSLASH (file[lengt
71 mdir_name(char const *file) argument
[all...]
H A Dfopen-safer.c31 fopen_safer (char const *file, char const *mode) argument
33 FILE *fp = fopen (file, mode);
H A Dspawnp.c2 This file is part of the GNU C Library.
27 posix_spawnp (pid_t *pid, const char *file, argument
32 return __spawni (pid, file, file_actions, attrp, argv, envp, 1);
/external/compiler-rt/lib/builtins/
H A Dint_util.c5 * This file is dual licensed under the MIT and the University of Illinois Open
14 /* NOTE: The definitions in this file are declared weak because we clients to be
30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
37 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
H A Deprintf.c5 * This file is dual licensed under the MIT and the University of Illinois Open
30 const char* line, const char* file)
32 fprintf(stderr, format, assertion_expression, line, file);
29 __eprintf(const char* format, const char* assertion_expression, const char* line, const char* file) argument
/external/libchrome/base/test/
H A Dtest_file_util_linux.cc3 // found in the LICENSE file.
17 bool EvictFileFromSystemCache(const FilePath& file) { argument
18 ScopedFD fd(open(file.value().c_str(), O_RDONLY));
/external/pdfium/third_party/zlib_v128/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
12 gzFile file)
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
11 gzclose( gzFile file) argument
/external/proguard/src/proguard/
H A DFileWordReader.java28 * A <code>WordReader</code> that returns words from a file or a URL.
35 * Creates a new FileWordReader for the given file.
37 public FileWordReader(File file) throws IOException argument
39 super(new LineNumberReader(new BufferedReader(new FileReader(file))),
40 "file '" + file.getPath() + "'",
41 file.getParentFile()
52 "file '" + url.toString() + "'",
/external/selinux/checkpolicy/
H A Dparse_util.c36 int read_source_policy(policydb_t * p, const char *file, const char *progname) argument
38 yyin = fopen(file, "r");
40 fprintf(stderr, "%s: unable to open %s\n", progname, file);
43 set_source_file(file);
62 set_source_file(file);
/external/swiftshader/src/Common/
H A DDebug.cpp4 // you may not use this file except in compliance with the License.
24 FILE *file = fopen("debug.txt", "a"); local
26 if(file)
30 vfprintf(file, format, vararg);
33 fclose(file);
/external/syslinux/com32/lib/
H A Dfputs.c5 * have stdio, but it takes a file descriptor argument instead
12 int fputs(const char *s, FILE * file) argument
14 return _fwrite(s, strlen(s), file);
H A Dfprintf.c8 int fprintf(FILE * file, const char *format, ...) argument
14 rv = vfprintf(file, format, ap);
/external/vogar/src/vogar/
H A DRetrievedFilesFilter.java5 * you may not use this file except in compliance with the License.
26 @Override public boolean accept(File file) { argument
27 if (file.getName().equals("prefs.xml")) {
30 if (file.getName().endsWith(".xml")
31 || file.getName().equals("caliper-results")
32 || file.getName().endsWith(".json")) {
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileResource.java1 package com.bumptech.glide.load.resource.file;
11 public FileResource(File file) { argument
12 super(file);
/external/elfutils/libdw/
H A Ddwarf_filesrc.c1 /* Find source file information.
3 This file is part of elfutils.
6 This file is free software; you can redistribute it and/or modify
38 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, argument
41 if (file == NULL || idx >= file->nfiles)
45 *mtime = file->info[idx].mtime;
48 *length = file->info[idx].length;
50 return file->info[idx].name;
/external/jcommander/src/test/java/com/beust/jcommander/
H A DArgsRequiredWrongMain.java5 public String[] file; field in class:ArgsRequiredWrongMain
/external/vogar/src/vogar/commands/
H A DRm.java5 * you may not use this file except in compliance with the License.
32 public void file(File file) { argument
33 new Command(log, "rm", "-rf", file.getPath()).execute();
/external/autotest/client/profilers/powertop/src/
H A Dxrandr.c4 * This file is part of PowerTOP
6 * This program file is free software; you can redistribute it and/or modify it
16 * along with this program in a file named COPYING; if not, write to the
45 FILE *file; local
54 file = popen("xrandr 2> /dev/null", "r");
55 if (!file || feof(file)) {
59 while (!feof(file)) {
60 if (fgets(line, 1024, file)==NULL)
73 pclose(file);
[all...]
/external/boringssl/src/crypto/x509/
H A Dx509_d2.c82 int X509_STORE_load_locations(X509_STORE *ctx, const char *file, argument
87 if (file != NULL) {
91 if (X509_LOOKUP_load_file(lookup, file, X509_FILETYPE_PEM) != 1)
101 if ((path == NULL) && (file == NULL))
/external/boringssl/src/tool/
H A Dfile.cc23 bool ReadAll(std::vector<uint8_t> *out, FILE *file) { argument
31 len += fread(out->data() + len, 1, out->size() - len, file);
33 if (feof(file)) {
37 if (ferror(file)) {

Completed in 705 milliseconds

1234567891011>>