Searched defs:file (Results 26 - 50 of 1433) sorted by relevance

1234567891011>>

/external/skia/tools/flags/
H A DSkCommonFlags.cpp5 * found in the LICENSE file.
78 SkString file; local
79 while (it.next(&file)) {
81 output->push_back() = SkOSPath::Join(flag, file.c_str());
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/
H A DSmaliFileStub.java38 public SmaliFileStub(SmaliFile file) { argument
39 super(file);
/external/toybox/toys/other/
H A Dchcon.c1 /* chcon.c - Change file security context
14 Change the SELinux security context of listed file[s].
41 char **file; local
43 for (file = toys.optargs+1; *file; file++) dirtree_read(*file, do_chcon);
/external/toybox/toys/posix/
H A Dchmod.c1 /* chmod.c - Change file mode bits
15 Change mode of listed file[s] (recursively with -R).
23 suid/sgid: execute as the user/group who owns the file.
31 chmod u+w file - allow owner of "file" to write to it.
32 chmod 744 file - user can read/write/execute, everyone else read only
62 char **file; local
64 for (file = toys.optargs+1; *file; file
[all...]
/external/vogar/src/vogar/
H A DRetrievedFilesFilter.java5 * you may not use this file except in compliance with the License.
34 @Override public boolean accept(File file) { argument
35 if (file.getName().equals("prefs.xml")) {
38 if (file.getName().endsWith(".xml")
39 || file.getName().equals("caliper-results")
40 || file.getName().endsWith(".json")
41 || (profile && file.getName().equals(profileFile.getName()))) {
/external/vogar/src/vogar/tasks/
H A DRmTask.java5 * you may not use this file except in compliance with the License.
25 private final File file; field in class:RmTask
27 public RmTask(Rm rm, File file) { argument
28 super("rm " + file);
30 this.file = file;
34 rm.file(file);
/external/webrtc/webrtc/base/
H A Dplatform_file.cc5 * 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.
24 FILE* FdopenPlatformFileForWriting(PlatformFile file) { argument
25 if (file == kInvalidPlatformFileValue)
27 int fd = _open_osfhandle(reinterpret_cast<intptr_t>(file), 0);
34 bool ClosePlatformFile(PlatformFile file) { argument
35 return CloseHandle(file) != 0;
40 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
41 return fdopen(file, "
[all...]
/external/webrtc/webrtc/modules/audio_processing/test/
H A Dprotobuf_utils.cc5 * 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.
15 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes) { argument
22 if (fread(&size, sizeof(size), 1, file) != 1)
28 return fread(bytes->get(), sizeof((*bytes)[0]), size, file);
31 // Returns true on success, false on error or end-of-file.
32 bool ReadMessageFromFile(FILE* file, ::google::protobuf::MessageLite* msg) { argument
34 size_t size = ReadMessageBytesFromFile(file, &bytes);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
57 public void addContents(DexFile file) { argument
58 MixedItemSection wordData = file.getWordData();
71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DFieldIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a field reference inside a Dalvik file.
42 public void addContents(DexFile file) { argument
43 super.addContents(file);
45 TypeIdsSection typeIds = file.getTypeIds();
60 protected int getTypoidIdx(DexFile file) { argument
61 TypeIdsSection typeIds = file.getTypeIds();
H A DHeaderItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * File header section of a {@code .dex} file.
50 public void addContents(DexFile file) { argument
56 public void writeTo(DexFile file, AnnotatedOutput out) { argument
57 int mapOff = file.getMap().getFileOffset();
58 Section firstDataSection = file.getFirstDataSection();
59 Section lastDataSection = file.getLastDataSection();
64 String magic = file.getDexOptions().getMagic();
71 Hex.u4(file
[all...]
H A DHeaderSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * File header section of a {@code .dex} file.
33 * Constructs an instance. The file offset is initially unknown.
35 * @param file {@code non-null;} file that this instance is part of
37 public HeaderSection(DexFile file) { argument
38 super(null, file, 4);
H A DItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
23 * repeated piece of a Dalvik file.
59 * This will <i>not</i> add an item to the file for this instance itself
65 * @param file {@code non-null;} the file to populate
67 public abstract void addContents(DexFile file); argument
76 * @param file {@code non-null;} the file to use for reference
79 public abstract void writeTo(DexFile file, AnnotatedOutpu argument
[all...]
H A DMemberIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
27 * Dalvik file.
52 public void addContents(DexFile file) { argument
53 super.addContents(file);
55 StringIdsSection stringIds = file.getStringIds();
61 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
62 TypeIdsSection typeIds = file.getTypeIds();
63 StringIdsSection stringIds = file.getStringIds();
67 int typoidIdx = getTypoidIdx(file);
90 getTypoidIdx(DexFile file) argument
[all...]
H A DMethodIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a method reference inside a Dalvik file.
42 public void addContents(DexFile file) { argument
43 super.addContents(file);
45 ProtoIdsSection protoIds = file.getProtoIds();
60 protected int getTypoidIdx(DexFile file) { argument
61 ProtoIdsSection protoIds = file.getProtoIds();
H A DStringDataItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of string data for a particular string, in a Dalvik file.
65 public void addContents(DexFile file) { argument
71 public void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DTypeIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of a type reference inside a Dalvik file.
52 public void addContents(DexFile file) { argument
53 file.getStringIds().intern(getDefiningClass().getDescriptor());
58 public void writeTo(DexFile file, AnnotatedOutput out) { argument
61 int idx = file.getStringIds().indexOf(descriptor);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs44 /// and caches the contents of it's underlying file fully during
49 /// but, it is a special case. Since we know the exact size of the file to
65 /// specified file name
74 /// specified file name and encoding
83 /// Gets the file name of this ANTLRFileStream underlying file
96 /// Loads and buffers the specified file to be used as this
100 /// <param name="encoding">Encoding to apply to file</param>
132 /// <summary>Fully qualified name of the stream's underlying file</summary>
140 private long GetFileLength(FileInfo file) argument
[all...]
/external/autotest/client/deps/gfxtest/src/
H A Dgetfb.c3 // found in the LICENSE file.
21 FILE *file = NULL; local
26 printf("Writes the active framebuffer to output file [filename].\n");
30 // Open the file for reading and writing
58 // Write it to output file.
59 file = fopen(argv[1], "w");
60 if (!file) {
61 fprintf(stderr, "Could not open file %s for writing.\n", argv[1]);
65 if (fwrite(ptr, screen_size, 1, file) < 1) {
66 fprintf(stderr, "Error while writing framebuffer to file
[all...]
/external/autotest/client/profilers/powertop/src/
H A Dcpufreq.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
39 FILE *file; local
53 file = fopen(filename, "w");
54 if (!file)
56 fprintf(file, "ondemand\n");
57 fclose(file);
67 FILE *file; local
86 file
[all...]
H A Dsata.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
41 FILE *file; local
52 file = fopen(filename, "w");
53 if (!file)
55 fprintf(file, "min_power\n");
56 fclose(file);
67 FILE *file; local
84 file
[all...]
H A Dusb.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
39 FILE *file; local
50 file = fopen(filename, "w");
51 if (!file)
53 fprintf(file, "0\n");
54 fclose(file);
56 file = fopen(filename, "w");
57 if (!file)
70 FILE *file; local
[all...]
/external/bison/examples/calc++/
H A Dcalc++-driver.hh35 std::string file; member in class:calcxx_driver
/external/bison/lib/
H A Dcloseout.c38 /* Set the file name to be reported in the event an error is detected
41 close_stdout_set_file_name (const char *file) argument
43 file_name = file;
/external/compiler-rt/test/tsan/Linux/
H A Duser_fopen.cc6 extern "C" FILE *__interceptor_fopen(const char *file, const char *mode);
9 extern "C" FILE *fopen(const char *file, const char *mode) { argument
13 return __interceptor_fopen(file, mode);

Completed in 572 milliseconds

1234567891011>>