HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 276 - 300 of 15923) sorted by null

<<11121314151617181920>>

  /external/oprofile/daemon/
opd_mangling.h 2 * @file daemon/opd_mangling.h
6 * @remark Read the file COPYING
20 * opd_open_sample_file - open a sample file
21 * @param sf sfile to open sample file for
23 * @param cg if this is a callgraph file
25 * Open image sample file for the sfile, counter
30 int opd_open_sample_file(odb_t *file, struct sfile *last,
  /external/proguard/src/proguard/io/
DirectoryPump.java 27 * This class can read a given file or directory, recursively, applying a given
34 private final File directory;
37 public DirectoryPump(File directory)
50 throw new IOException("No such file or directory");
61 private void readFiles(File file, DataEntryReader dataEntryReader)
64 // Pass the file data entry to the reader.
65 dataEntryReader.read(new FileDataEntry(directory, file));
67 if (file.isDirectory())
70 File[] files = file.listFiles()
    [all...]
  /external/qemu/android/base/files/
ScopedStdioFile.h 20 // Helper class used to implement a scoped stdio FILE* pointer.
21 // I.e. guarantees that the file is closed on scope exit, unless
23 // the file explicitly with close().
26 // Default constructor, uses an empty file.
29 // Regular constructor, takes owneship of |file|.
30 explicit ScopedStdioFile(FILE* file) : mFile(file) {}
35 // Returns FILE* pointer directly.
36 FILE* get() const { return mFile;
41 FILE* file = mFile; local
    [all...]
  /external/sepolicy/
untrusted_app.te 4 ### This file defines the rules for untrusted apps.
30 allow untrusted_app app_data_file:file { rx_file_perms execmod };
36 allow untrusted_app asec_apk_file:file r_file_perms;
38 allow untrusted_app asec_public_file:file { execute execmod };
48 allow untrusted_app shell_data_file:file r_file_perms;
61 allow untrusted_app media_rw_data_file:file create_file_perms;
65 allow untrusted_app cache_file:file create_file_perms;
76 neverallow untrusted_app debugfs:file read;
91 allow untrusted_app { apk_tmp_file apk_private_tmp_file }:file r_file_perms;
  /external/smack/src/org/jivesoftware/smack/
BOSHConfiguration.java 9 * you may not use this file except in compliance with the License.
39 private String file; field in class:BOSHConfiguration
45 file = "/http-bind/";
52 file = "/http-bind/";
64 * @param filePath the file which is described by the URL
73 file = (filePath != null ? filePath : "/");
85 * @param filePath the file which is described by the URL
95 file = (filePath != null ? filePath : "/");
119 if (file.charAt(0) != '/') {
120 file = '/' + file
    [all...]
  /external/srec/portable/include/
pLastError.h 7 * you may not use this file except in compliance with the License. *
35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int line);
  /external/zlib/src/contrib/minizip/
mztools.h 20 /* Repair a ZIP file (missing central directory)
21 file: file to recover
22 fileOut: output file after recovery
23 fileOutTmp: temporary file name used for recovery
25 extern int ZEXPORT unzRepair(const char* file,
  /hardware/intel/img/psb_video/
style_unify 2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
  /ndk/sources/host-tools/make-3.81/w32/include/
pathstuff.h 4 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);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
NotFileFilter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
36 * Constructs a new file filter that NOTs the result of another filters.
51 * @param file the File to check
54 public boolean accept(File file) {
55 return ! filter.accept(file);
    [all...]
  /external/libvorbis/vq/
huffbuild.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
25 static int getval(FILE *in,int begin,int n,int group,int max){
66 FILE *file; local
104 /* scan the file for maximum value */
105 file=fopen(infile,"r");
106 if(!file){
107 fprintf(stderr,"Could not open file %s\n",infile);
119 if(get_next_ivalue(file,&v))break;
124 rewind(file);
    [all...]
  /external/deqp/framework/delibs/deutil/
deFile.c 8 * you may not use this file except in compliance with the License.
20 * \file
21 * \brief File abstraction.
55 deFile* file = (deFile*)deCalloc(sizeof(deFile)); local
56 if (!file)
59 return file;
62 file->fd = fd;
63 return file;
109 void deFile_destroy (deFile* file)
111 close(file->fd)
229 deFile* file = (deFile*)deCalloc(sizeof(deFile)); local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
LockableFileWriter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
32 * cross thread file lock handling.
35 * that will use a lock file to prevent duplicate writes.
37 * By default, the file will be overwritten, but this may be changed to append.
54 /** The extension for the lock file. */
59 /** The lock file. */
60 private final File lockFile
    [all...]
  /frameworks/rs/api/
gen_runtime.cpp 5 * you may not use this file except in compliance with the License.
18 * For each spec file provided on the command line, it generates a corresponding
23 * - a Renderscript file named Test{Function}.rs,
24 * - a Junit file named Test{function}.java, which calls the above RS file.
27 * test files for. The header file will always contain all the functions.
30 * - SpecFile: Represents on spec file.
32 * spec file contains many entries for clamp, we'll only have one clamp instance.
35 * spec file. Strings that are parts of a Specification can include placeholders,
62 "// Don't edit this file! It is auto-generated by
830 FILE* file = fopen(name.c_str(), "wt"); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderItem.java 5 * 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) {
56 public void writeTo(DexFile file, AnnotatedOutput out) {
57 int mapOff = file.getMap().getFileOffset();
58 Section firstDataSection = file.getFirstDataSection();
59 Section lastDataSection = file.getLastDataSection();
64 String magic = file.getDexOptions().getMagic()
    [all...]
  /external/chromium_org/base/
platform_file.h 3 // found in the LICENSE file.
23 // ***** Don't use anything from this file anymore. It is being removed!
24 // ***** Use base/files/file.h instead
29 // or creating a file.
32 // PLATFORM_FILE_EXCLUSIVE_(READ|WRITE) only grant exclusive access to the file
35 PLATFORM_FILE_OPEN = 1 << 0, // Opens a file, only if it exists.
36 PLATFORM_FILE_CREATE = 1 << 1, // Creates a new file, only if it
38 PLATFORM_FILE_OPEN_ALWAYS = 1 << 2, // May create a new file.
39 PLATFORM_FILE_CREATE_ALWAYS = 1 << 3, // May overwrite an old file.
40 PLATFORM_FILE_OPEN_TRUNCATED = 1 << 4, // Opens a file and truncates it
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 64 // Gets the unqualified class name for the file. Each .proto file becomes a
66 string FileClassName(const FileDescriptor* file);
68 // Returns the file's Java package name.
69 string FileJavaPackage(const FileDescriptor* file);
76 // file.
77 string ToJavaName(const string& full_name, const FileDescriptor* file);
87 return ToJavaName(descriptor->full_name(), descriptor->file());
123 return descriptor->file()->options().optimize_for() !=
125 descriptor->file()->options().retain_unknown_fields()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderItem.java 5 * 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) {
56 public void writeTo(DexFile file, AnnotatedOutput out) {
57 int mapOff = file.getMap().getFileOffset();
58 Section firstDataSection = file.getFirstDataSection();
59 Section lastDataSection = file.getLastDataSection();
64 String magic = file.getDexOptions().getMagic()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 64 // Gets the unqualified class name for the file. Each .proto file becomes a
66 string FileClassName(const FileDescriptor* file);
68 // Returns the file's Java package name.
69 string FileJavaPackage(const FileDescriptor* file);
73 // file.
74 string ToJavaName(const string& full_name, const FileDescriptor* file);
79 return ToJavaName(descriptor->full_name(), descriptor->file());
82 return ToJavaName(descriptor->full_name(), descriptor->file());
85 return ToJavaName(descriptor->full_name(), descriptor->file());
    [all...]
  /external/cmockery/cmockery_0_1_2/
missing 26 # 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=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'
    [all...]
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 5 * you may not use this file except in compliance with the License.
22 public SourcePositionInfo(String file, int line, int column) {
23 this.file = file;
29 this.file = that.file;
53 return new SourcePositionInfo(that.file, line, 0);
69 return new SourcePositionInfo(that.file, line, 0);
74 return file + ':' + line;
79 int r = this.file.compareTo(that.file)
100 public String file; field in class:SourcePositionInfo
    [all...]
  /external/genext2fs/
missing 26 # 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=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'
    [all...]
  /external/libogg/
missing 26 # 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=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'
    [all...]
  /external/libvorbis/
missing 26 # 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=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'
    [all...]
  /ndk/sources/host-tools/make-3.81/config/
missing 26 # 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=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'
    [all...]

Completed in 1341 milliseconds

<<11121314151617181920>>