HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 151 - 175 of 1272) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/iproute2/ip/
ipmonitor.c 40 FILE *fp = (FILE*)arg;
114 char *file = NULL; local
128 if (matches(*argv, "file") == 0) {
130 file = *argv;
179 if (file) {
180 FILE *fp;
181 fp = fopen(file, "r");
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 5 * you may not use this file except in compliance with the License.
21 import java.io.File;
34 private final File rootDir;
36 public FileSystemResourceLoader(File rootDir) {
41 this(new File(rootDir));
46 File file = new File(rootDir, name); local
47 // Check for non-directory rather than is-file so that reads from
49 if (file.exists() && !file.isDirectory() && file.canRead())
73 File file = new File(rootDir, filename); local
    [all...]
  /external/jsilver/src/org/clearsilver/
CSUtil.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
74 * Given an ordered list of directories to look in, locate the specified file.
75 * Returns <code>null</code> if file not found.
77 * @param filename the name of the file.
78 * @return a File object corresponding to the file. <code>null</code> if
79 * file not found.
81 public static File locateFile(List<String> loadpaths, String filename) {
89 File file = new File(path, filename) local
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
KeepAliveHttpsTransportSE.java 29 private final String file; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) {
34 super(host, port, file, timeout);
37 this.file = file;
52 file, timeout);
  /external/libvpx/libvpx/
video_reader.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
23 FILE *file; member in struct:VpxVideoReaderStruct
32 FILE *const file = fopen(filename, "rb"); local
33 if (!file)
34 return NULL; // Can't open file
36 if (fread(header, 1, 32, file) != 32
    [all...]
  /external/lldb/include/lldb/Symbol/
LineEntry.h 5 // This file is distributed under the University of Illinois Open Source
37 const FileSpec &file,
65 /// The compile unit object that contains the support file
66 /// list so the line entry can dump the file name (since this
67 /// object contains a file index into the support file list).
79 /// using \a style. File and load addresses may be unresolved
104 /// The compile unit object that contains the support file
105 /// list so the line entry can dump the file name (since this
106 /// object contains a file index into the support file list)
148 FileSpec file; member in struct:lldb_private::LineEntry
    [all...]
  /external/lldb/source/Symbol/
LineEntry.cpp 5 // This file is distributed under the University of Illinois Open Source
19 file(),
45 file(_file),
60 file.Clear();
81 if (file)
84 file.Dump (s);
86 file.GetFilename().Dump (s);
127 *s << ", file = " << file; local
164 *s << ": " << file; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.c 100 if (src->Register.File == TGSI_FILE_INPUT) {
114 src->Register.File == TGSI_FILE_INPUT &&
127 info->indirect_files |= (1 << src->Register.File);
135 info->indirect_files |= (1 << dst->Register.File);
147 const uint file = fulldecl->Declaration.File; local
154 info->file_mask[file] |= (1 << reg);
155 info->file_count[file]++;
156 info->file_max[file] = MAX2(info->file_max[file], (int)reg)
219 uint file = TGSI_FILE_IMMEDIATE; local
    [all...]
  /external/nanopb-c/examples/network_server/
server.c 29 struct dirent *file; local
32 while ((file = readdir(dir)) != NULL)
34 fileinfo.inode = file->d_ino;
35 strncpy(fileinfo.name, file->d_name, sizeof(fileinfo.name));
72 response.file.funcs.encode = NULL;
77 response.file.funcs.encode = &listdir_callback;
78 response.file.arg = directory;
  /external/openssl/crypto/err/
err_prn.c 72 const char *file,*data; local
79 while ((l=ERR_get_error_line_data(&file,&line,&data,&flags)) != 0)
83 file, line, (flags & ERR_TXT_STRING) ? data : "");
99 void ERR_print_errors_fp(FILE *fp)
  /external/openssl/crypto/x509/
by_file.c 75 "Load file into cache",
96 char *file; local
103 file = (char *)getenv(X509_get_default_cert_file_env());
104 if (file)
105 ok = (X509_load_cert_crl_file(ctx,file,
130 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type)
137 if (file == NULL) return(1);
140 if ((in == NULL) || (BIO_read_filename(in,file) <= 0))
197 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type)
204 if (file == NULL) return(1)
    [all...]
  /external/owasp/sanitizer/
Makefile 27 @echo " license files into a zip file suitable for"
126 -Demma.report.out.file=out/coverage/index.html \
155 java -cp ${TEST_CLASSPATH}:out/classes -agentlib:hprof=cpu=times,format=a,file=out/java.hprof.txt,lineno=y,doe=y org.owasp.html.Benchmark benchmark-data/Yahoo\!.html s
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 5 * you may not use this file except in compliance with the License.
22 import java.io.File;
30 * This is testing for file access permissions.
39 * create a sdcard image file then start emulator with command emulator -sdcard <filepath>
42 * mksdcard <size> <file>
45 * TODO: Combine this file with {@link android.permission.cts.FileSystemPermissionTest}
53 File file = new File("/system"); local
54 assertTrue(file.canRead())
82 File file = new File("\/system\/app"); local
100 File file = new File("\/data\/app"); local
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
HtmlDeltaExternalizer.java 5 * you may not use this file except in compliance with the License.
31 import java.io.File;
44 private static final String DELTA_FOLDER = "changes" + File.separator;
48 if (!location.endsWith(File.separator)) {
49 location += File.separator;
52 File directory = new File(location);
77 File file = new File(location + DELTA_FOLDER) local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
24 * A section of a {@code .dex} file. Each section consists of a list
31 /** {@code non-null;} file that this instance is part of */
32 private final DexFile file; field in class:Section
38 /** {@code >= -1;} offset from the start of the file to this part, or
61 * Constructs an instance. The file offset is initially unknown.
65 * @param file {@code non-null;} file that this instance is part of
69 public Section(String name, DexFile file, int alignment)
    [all...]
DebugInfoConstants.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
FieldAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int fieldIdx = file.getFieldIds().indexOf(field);
FieldIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
28 * Field refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public FieldIdsSection(DexFile file) {
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
MethodAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int methodIdx = file.getMethodIds().indexOf(method);
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
23 * A section of a {@code .dex} file. Each section consists of a list
30 /** {@code non-null;} file that this instance is part of */
31 private final DexFile file; field in class:Section
37 /** {@code >= -1;} offset from the start of the file to this part, or
60 * Constructs an instance. The file offset is initially unknown.
64 * @param file {@code non-null;} file that this instance is part of
68 public Section(String name, DexFile file, int alignment)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
24 * A section of a {@code .dex} file. Each section consists of a list
31 /** {@code non-null;} file that this instance is part of */
32 private final DexFile file; field in class:Section
38 /** {@code >= -1;} offset from the start of the file to this part, or
61 * Constructs an instance. The file offset is initially unknown.
65 * @param file {@code non-null;} file that this instance is part of
69 public Section(String name, DexFile file, int alignment)
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
FileBackedOutputStreamTest.java 5 * you may not use this file except in compliance with the License.
21 import java.io.File;
50 final File file = out.getFile(); local
51 assertEquals(100, file.length());
52 assertTrue(file.exists());
55 // Make sure that finalize deletes the file
62 return !file.exists();
92 File file = out.getFile() local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
58 File file = locateFile(name); local
59 if (file == null) {
60 throw new FileNotFoundException("Could not locate file " + name);
62 return new InputStreamReader(new FileInputStream(file), "UTF-8");
71 text.append("No file '");
97 * @param name name of the file to locate.
98 * @return a File object corresponding to the existing file or {@code null} if it does not exist
103 File file = newFile(name); local
106 File file = null; local
144 File file = newFile(path, filename); local
174 File file = locateFile(filename); local
191 File file = locateFile(filename); local
    [all...]
  /art/compiler/sea_ir/debug/
dot_gen.h 5 * you may not use this file except in compliance with the License.
97 // Stores options for turning a SEA IR graph to a .dot file.
104 LOG(INFO) << "Starting to write SEA string to file " << filename << std::endl;
107 // TODO: std::unique_ptr to close file properly. Switch to BufferedOutputStream.
108 art::File* file = art::OS::CreateEmptyFile(filename.c_str()); local
109 art::FileOutputStream fos(file);
113 LOG(INFO) << "Written SEA string to file.";
  /build/core/combo/
HOST_darwin-x86.mk 5 # you may not use this file except in compliance with the License.
117 # $(1): The file to check
118 define get-file-size

Completed in 1015 milliseconds

1 2 3 4 5 67 8 91011>>