Searched refs:file (Results 1 - 25 of 205) sorted by relevance

123456789

/ndk/sources/android/support/src/stdio/
H A Dstdio_impl.c9 void fake_file_init_file(FakeFILE* file, FILE* f) { argument
10 memset(file, 0, sizeof(*file));
11 file->file = f;
14 void fake_file_init_buffer(FakeFILE* file, char* buffer, size_t buffer_size) { argument
15 memset(file, 0, sizeof(*file));
16 file->buffer = (void*)buffer;
17 file
21 fake_file_init_wbuffer(FakeFILE* file, wchar_t* buffer, size_t buffer_size) argument
27 fake_file_out(FakeFILE* file, const char* text, size_t length) argument
46 fake_file_outw(FakeFILE* file, const wchar_t* text, size_t length) argument
72 fake_feof(FakeFILE* file) argument
79 fake_ferror(FakeFILE* file) argument
86 fake_fprintf(FakeFILE* file, const char* format, ...) argument
112 fake_fputc(char ch, FakeFILE* file) argument
121 fake_fputwc(wchar_t wc, FakeFILE* file) argument
[all...]
H A Dstdio_impl.h16 FILE* file; member in struct:__anon103
22 // Initialize FakeFILE wrapper |file| to use a FILE* handle |f|
23 void fake_file_init_file(FakeFILE* file, FILE* f) __HIDDEN__;
25 // Initialize FakeFILE wrapper |file| to use a |buffer| of |buffer_size| chars.
26 void fake_file_init_buffer(FakeFILE* file, char* buffer, size_t buffer_size)
29 // Initialize FakeFILE wrapper |file| to use a wchar_t |buffer| of
31 void fake_file_init_wbuffer(FakeFILE* file, wchar_t* buffer, size_t buffer_size)
35 void fake_file_out(FakeFILE* file, const char* s, size_t l) __HIDDEN__;
38 void fake_file_outw(FakeFILE* file, const wchar_t* s, size_t l) __HIDDEN__;
41 int fake_feof(FakeFILE* file) __HIDDEN_
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Ddirname.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 dir_name(char const *file) argument
[all...]
H A Dstripslash.c1 /* stripslash.c -- remove redundant trailing slashes from a file name
23 was removed. This is useful when using file name completion from a
30 strip_trailing_slashes (char *file) argument
32 char *base = last_component (file);
36 /* last_component returns "" for file system roots, but we need to turn
39 base = file;
H A Dlstat.c54 rpl_lstat (const char *file, struct stat *sbuf) argument
57 int lstat_result = orig_lstat (file, sbuf);
62 len = strlen (file);
63 if (len == 0 || file[len - 1] != '/')
70 if (stat (file, sbuf) != 0)
H A Ddirname.h1 /* Take file names apart into directory and base names.
61 char *base_name (char const *file);
62 char *dir_name (char const *file);
63 size_t base_len (char const *file);
64 size_t dir_len (char const *file);
65 char *last_component (char const *file);
67 bool strip_trailing_slashes (char *file);
/ndk/sources/host-tools/make-3.81/
H A Dremake.c5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
32 #include <sys/file.h>
42 extern int try_implicit_rule PARAMS ((struct file *file, unsigned int depth));
46 `struct file'. However, double colon targets have seperate `struct
47 file's; make sure we always use the base of the double colon chain. */
63 static int update_file PARAMS ((struct file *file, unsigned int depth));
64 static int update_file_1 PARAMS ((struct file *fil
127 struct file *file; local
284 update_file(struct file *file, unsigned int depth) argument
346 complain(const struct file *file) argument
370 update_file_1(struct file *file, unsigned int depth) argument
796 notice_finished_file(struct file *file) argument
933 check_dep(struct file *file, unsigned int depth, FILE_TIMESTAMP this_mtime, int *must_make_ptr) argument
1045 touch_file(struct file *file) argument
1097 remake_file(struct file *file) argument
1144 f_mtime(struct file *file, int search) argument
1478 char *file, **dp; local
[all...]
H A Dcommands.h5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
19 /* Structure that gives the commands to make a file
38 extern void execute_file_commands PARAMS ((struct file *file));
42 extern void set_file_variables PARAMS ((struct file *file));
H A Dfiledef.h1 /* Definition of target file data structures for GNU Make.
5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
20 /* Structure that represents the info on one file
26 struct file struct
40 struct file *prev; /* Previous entry for same file name;
42 entries for the same file. */
43 struct file *last; /* Last entry for the same file nam
[all...]
H A Dcommands.c5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
46 set_file_variables (struct file *file)
55 if (ar_name (file->name))
60 p = strchr (file->name, '(');
61 at = (char *) alloca (p - file->name + 1);
62 bcopy (file->name, at, p - file->name);
63 at[p - file
45 set_file_variables(struct file *file) argument
368 execute_file_commands(struct file *file) argument
528 delete_target(struct file *file, char *on_behalf_of) argument
[all...]
H A Djob.h4 This file is part of GNU Make.
15 GNU Make; see the file COPYING. If not, write to the Free Software
24 # include <sys/file.h>
27 /* How to set close-on-exec for a file descriptor. */
44 struct file *file; /* File being remade. */ member in struct:child
57 char *sh_batch_file; /* Script file for shell commands */
69 extern void new_job PARAMS ((struct file *file));
73 extern char **construct_command_argv PARAMS ((char *line, char **restp, struct file *fil
[all...]
H A Dimplicit.c5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
29 pattern_search PARAMS ((struct file *file, int archive,
40 try_implicit_rule (struct file *file, unsigned int depth)
49 if (pattern_search (file, 0, depth, 0))
55 if (ar_name (file->name))
59 if (pattern_search (file, 1, depth, 0))
75 struct file *intermediate_fil
39 try_implicit_rule(struct file *file, unsigned int depth) argument
200 pattern_search(struct file *file, int archive, unsigned int depth, unsigned int recursions) argument
[all...]
H A Dvariable.h5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
114 extern char *variable_expand_for_file PARAMS ((char *line, struct file *file));
115 extern char *allocated_variable_expand_for_file PARAMS ((char *line, struct file *file));
117 allocated_variable_expand_for_file (line, (struct file *) 0)
134 struct file *file));
143 extern void initialize_file_variables PARAMS ((struct file *fil
[all...]
H A Dvpath.c1 /* Implementation of pattern-matching file search paths for GNU Make.
5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
52 static int selective_vpath_search PARAMS ((struct vpath *path, char **file, FILE_TIMESTAMP *mtime_ptr));
321 gpath_search (char *file, unsigned int len)
327 if (strneq (*gp, file, len) && (*gp)[len] == '\0')
336 the newly malloc'd name of the existing file, *MTIME_PTR (if MTIME_PTR is
341 vpath_search (char **file, FILE_TIMESTAMP *mtime_ptr)
348 if (**file == '/'
350 || **file
318 gpath_search(char *file, unsigned int len) argument
337 vpath_search(char **file, FILE_TIMESTAMP *mtime_ptr) argument
372 selective_vpath_search(struct vpath *path, char **file, FILE_TIMESTAMP *mtime_ptr) argument
[all...]
H A Dfile.c1 /* Target file management for GNU Make.
5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
36 per-file, so we can invoke it after the eval... or remembering which files
46 return_ISTRING_HASH_1 (((struct file const *) key)->hname);
52 return_ISTRING_HASH_2 (((struct file const *) key)->hname);
58 return_ISTRING_COMPARE (((struct file const *) x)->hname,
59 ((struct file const *) y)->hname);
70 /* Access the hash table of all file records.
71 lookup_file given a name, return the struct file * fo
756 set_command_state(struct file *file, enum cmd_state state) argument
[all...]
/ndk/sources/host-tools/sed-4.2.1/build-aux/
H A Dlink-warning.h13 # define GL_LINK_WARNING1(file, line, message) \
14 GL_LINK_WARNING2 (file, line, message) /* macroexpand file and line */
15 # define GL_LINK_WARNING2(file, line, message) \
16 GL_LINK_WARNING3 (file ":" #line ": warning: " message)
H A Dmissing24 # distribute this file as part of a program that contains a
55 # a file that requires a minimum version. In this case we
77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
80 autom4te touch the output file, or create a stub one
84 help2man touch the output file
86 makeinfo touch the output file
206 file=`echo "$*" | sed -n "$sed_output"`
207 test -z "$file"
[all...]
/ndk/sources/host-tools/make-3.81/w32/include/
H A Dpathstuff.h4 This file is part of GNU Make.
15 GNU Make; see the file COPYING. If not, write to the Free Software
23 extern char * w32ify(char *file, int resolve);
/ndk/sources/host-tools/make-3.81/config/
H A Dmissing26 # distribute this file as part of a program that contains a
55 # a file that requires a minimum version. In this case we
77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
83 help2man touch the output file
85 makeinfo touch the output file
195 file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
196 test -z "$file" && file
[all...]
H A Dmkinstalldirs40 for file
42 if test -d "$file"; then
68 for file
70 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
/ndk/tests/build/gnustl-force-all/jni/
H A Dforced_all.cpp1 /* This file should be compiled with exceptions and without RTTI */
3 #error This source file SHOULD be built with -fexceptions!
/ndk/tests/build/gnustl-force-rtti/jni/
H A Dforced_rtti.cpp1 /* This file should be compiled without exceptions and with RTTI */
3 #error This source file SHOULD NOT be built with -fexceptions!
/ndk/sources/host-tools/sed-4.2.1/
H A Dautoboot25 # Ensure file names are sorted consistently across platforms.
52 If the file $0.conf exists in the same directory as this script, its
193 # sorting the new contents of the file and replacing $FILE with the result.
195 file=$1
197 test -f $file || touch $file
198 echo "$str" | sort -u - $file | cmp -s - $file \
199 || echo "$str" | sort -u - $file -o $file \
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
H A Dassert.hpp11 // accompanying file LICENSE_1_0.txt or copy at
42 char const * function, char const * file, long line); // user defined
71 char const * function, char const * file, long line); // user defined
98 char const * file, long line)
103 << file << '(' << line << "): " << msg << std::endl;
/ndk/build/core/
H A Ddefinitions-host.mk4 # you may not use this file except in compliance with the License.
23 # Arguments: 1: file path
24 # Returns : file path, as understood by the host file system
81 # Arguments: 1: source file
82 # 2: target file
83 # Usage : $(call host-cp,<src-file>,<dst-file>)
85 # to copy a single file
95 # Arguments: 1: source file
[all...]

Completed in 396 milliseconds

123456789