HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 1826 - 1850 of 2555) sorted by null

<<71727374757677787980>>

  /external/qemu/target-mips/
translate_init.c 463 void mips_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
  /external/srec/portable/src/
pstream.c 7 * you may not use this file except in compliance with the License. *
42 /* Open a existed writable file (i.e., the file is not closed yet).
43 At some cases user knows the filename only but does not know the file handle (1),
44 the user could call fopen to open this file again with another file handle (2).
45 He/She could get all the information before the last fflush was called via file handle (1).
55 use a double link list to store the data of the writable file.
58 #define FILEBUFFERSIZE 4096 /* 4k for each file buffer entry */
187 passert("File Table is not initialized!" == NULL)
858 const char *file; local
    [all...]
  /external/srec/tools/test_g2g/
test_g2g.c 7 * you may not use this file except in compliance with the License. *
64 pfprintf(PSTDOUT,"<basefilename> can be a file.g2g or @g2gfilelist\n");
65 pfprintf(PSTDOUT,"[-checkword id] .. also checks word id in the file\n");
107 /* Set ANSI file-system as default file-system */
200 FILE* fp;
479 FILE* fp;
481 char **files = 0, *file; local
502 file = files[i++] = CALLOC(strlen(line)+1,sizeof(char),__FILE__);
503 strcpy( file, line)
    [all...]
  /external/v8/test/cctest/
test-log.cc 56 FILE* StopLoggingGetTempFile() {
78 FILE* temp_file_;
  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
hlr_auc_gw.c 40 * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as hex
115 FILE *f;
125 printf("Could not open GSM tripler data file '%s'\n", fname);
253 FILE *f;
263 printf("Could not open Milenage data file '%s'\n", fname);
650 "hlr_auc_gw [-h] [-s<socket path>] [-g<triplet file>] "
651 "[-m<milenage file>]\n"
657 " -g<triplet file> = path for GSM authentication triplets\n"
658 " -m<milenage file> = path for Milenage keys\n",
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 34 * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as hex
110 FILE *f;
120 printf("Could not open GSM tripler data file '%s'\n", fname);
248 FILE *f;
258 printf("Could not open Milenage data file '%s'\n", fname);
645 "hlr_auc_gw [-h] [-s<socket path>] [-g<triplet file>] "
646 "[-m<milenage file>]\n"
652 " -g<triplet file> = path for GSM authentication triplets\n"
653 " -m<milenage file> = path for Milenage keys\n",
  /external/wpa_supplicant_8/src/utils/
edit.c 272 FILE *f;
296 FILE *f;
  /external/wpa_supplicant_8/wpa_supplicant/
bgscan_learn.c 103 FILE *f;
119 wpa_printf(MSG_INFO, "bgscan learn: Invalid data file %s",
163 FILE *f;
  /frameworks/base/tools/aapt/
ResourceTable.h 228 void writePublicDefinitions(const String16& package, FILE* fp);
522 void writePublicDefinitions(const String16& package, FILE* fp, bool pub);
  /ndk/sources/host-tools/make-3.81/tests/
test_driver.pl 10 # This file is part of GNU Make.
21 # GNU Make; see the file COPYING. If not, write to the Free Software
232 # See if the filesystem supports long file names with multiple
235 (open (TOUCHFD, "> fancy.file.name") && close (TOUCHFD))
237 unlink ("fancy.file.name") || ($short_filenames = 1);
583 . "${t}If this option is given, then the profile file\n"
680 print "\nCreating Difference File ...\n" if $debug;
682 # Create the difference file
878 # local ($file);
880 # foreach $file (@filenames
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lib.c 35 FILE *infile = NULL;
36 char *file = ""; variable
124 dprintf( ("argno=%d, file=|%s|\n", argno, file) );
125 if (infile == NULL) { /* have to open a new file */
126 file = getargv(argno);
127 if (*file == '\0') { /* it's been zapped */
131 if (isclvar(file)) { /* a var=value arg */
132 setclvar(file);
136 *FILENAME = file;
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
spellingtrie.cpp 5 * you may not use this file except in compliance with the License.
639 bool SpellingTrie::save_spl_trie(FILE *fp) {
662 bool SpellingTrie::load_spl_trie(FILE *fp) {
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-common.h 6 This file is part of GCC.
19 along with GCC; see the file COPYING3. If not see
347 /* If non-NULL, this function is called after a precompile header file
421 /* The file name to which we should write a precompiled header, or
506 /* Open and close the file for outputting class declarations, if
513 and output a C header file with appropriate definitions. */
871 /* Information recorded about each file examined during compilation. */
875 int time; /* Time spent in the file. */
941 extern void c_common_print_pch_checksum (FILE *f);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
LibraryClasspathContainerInitializer.java 5 * you may not use this file except in compliance with the License.
47 import java.io.File;
194 Set<File> jarFiles = new HashSet<File>();
243 File annotationsJar = new File(Sdk.getCurrent().getSdkLocation(),
244 SdkConstants.FD_TOOLS + File.separator + SdkConstants.FD_SUPPORT +
245 File.separator + SdkConstants.FN_ANNOTATIONS_JAR);
265 List<File> sanitizedList = sanitizer.sanitize(jarFiles);
267 for (File jarFile : sanitizedList)
362 File file = new File(value); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceManager.java 5 * you may not use this file except in compliance with the License.
62 * object that allows accessing the resources through their file representation or as Android
65 * The ResourceManager automatically tracks file changes to update its internal representation
96 * Notification for resource file change.
97 * @param project the project of the file.
98 * @param file the {@link ResourceFile} representing the file.
101 void fileChanged(IProject project, ResourceFile file, int eventType);
104 * @param project the project of the file.
207 if (type == IResource.FILE) {
543 IFile file = (IFile)fileRes; local
    [all...]
  /sdk/emulator/opengl/tests/gles_android_wrapper/
egl.cpp 5 * you may not use this file except in compliance with the License.
113 FILE *fp = fopen("/proc/self/cmdline", "rt");
160 FILE *fp = fopen(GLES_EMUL_TARGETS_FILE, "rt");
  /sdk/emulator/qtools/
callstack.h 70 void showStack(FILE *stream);
489 // trace record from the method trace file.
761 void CallStack<FRAME, BASE>::showStack(FILE *stream)
  /system/core/sh/
arith.c 21 /* As a special exception, when this file is copied by Bison into a
22 Bison output file, you may use that output file without restriction.
792 yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)
796 FILE *yyoutput;
    [all...]
  /dalvik/vm/
Globals.h 5 * you may not use this file except in compliance with the License.
119 int (*vfprintfHook)(FILE*, const char*, va_list);
  /external/bison/lib/
timevar.c 31 /* This source file is taken from the GCC source code, with slight
33 variable. The !IN_GCC part of this file is specific to Bison. */
447 FILE *fp;
  /external/bison/src/
lalr.c 6 This file is part of Bison, the GNU Compiler Compiler.
19 along with Bison; see the file COPYING. If not, write to
410 look_ahead_tokens_print (FILE *out)
reduce.c 6 This file is part of Bison, the GNU Compiler Compiler.
19 along with Bison; see the file COPYING. If not, write to
344 | Output the detailed results of the reductions. For FILE.output. |
348 reduce_output (FILE *out)
  /external/blktrace/btt/
iostat.c 54 FILE *iostat_ofp = NULL;
  /external/bluetooth/bluez/sbc/
sbctester.c 83 FILE *csv = NULL;
262 printf("\tDecode both file using the reference decoder\n");
265 printf("\tA file called out.csv is generated to use the data in a\n");
300 printf("Failed to open reference file\n");
307 printf("Failed to open test file\n");
  /external/bluetooth/bluez/tools/
parser.c 184 "end-of-file",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
260 extern FILE *yyin;
261 char file[MAXPATHLEN + 1]; local
271 snprintf(file, MAXPATHLEN, "%s", filename);
273 snprintf(file, MAXPATHLEN, "%s/.bluetooth/rfcomm.conf", getenv("HOME"));
275 if ((getuid() == 0) || (access(file, R_OK) < 0))
276 snprintf(file, MAXPATHLEN, "%s/rfcomm.conf", CONFIGDIR);
279 if (!(yyin = fopen(file, "r")))

Completed in 2265 milliseconds

<<71727374757677787980>>