HomeSort by relevance Sort by last modified time
    Searched full:file (Results 1476 - 1500 of 168772) sorted by null

<<51525354555657585960>>

  /sdk/testapps/testProjectTest/lib/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/userLibTest/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/suid/
SuidFilesActivity.java 5 * you may not use this file except in compliance with the License.
40 import java.io.File;
115 mFindSuidFilesTask.execute(new File("/"));
121 File file = mAdapter.getItem(position); local
122 String message = getMessage(file);
124 .setTitle(file.getName())
129 private String getMessage(File file) {
131 if (FileUtils.getFileStatus(file.getAbsolutePath(), status, true))
161 File file = getItem(position); local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DeferredFileOutputStream.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;
35 * not know in advance the size of the file being uploaded. If the file is small
36 * you want to store it in memory (for speed), but if the file is large you want
37 * to store it to file (to avoid memory issues).
67 * The file to which output will be directed if the threshold is exceeded.
69 private File outputFile
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 5 * you may not use this file except in compliance with the License.
26 import java.io.File;
41 startedIntentFilter.addDataScheme("file");
43 finshedIntentFilter.addDataScheme("file");
63 // add .nomedia file and scan again
64 File noMedia = new File(tmpPath, ".nomedia");
68 fail("couldn't create .nomedia file");
91 File tmpDir = new File(externalPath, "" + System.nanoTime())
    [all...]
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
28 private final List<File> mSourceDirs;
29 private final File mDocletPath;
31 DocletRunner(List<File> sourceDirs, File docletPath) {
47 for (File sourceDir : mSourceDirs) {
72 private String getSourcePath(List<File> sourceDirs) {
82 for (File sourceDir : sourceDirs) {
96 private List<String> getSourceFiles(File sourceDir)
    [all...]
  /external/apache-http/src/org/apache/http/entity/
FileEntity.java 8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
34 import java.io.File;
41 * An entity whose content is retrieved from a file.
56 protected final File file; field in class:FileEntity
58 public FileEntity(final File file, final String contentType) {
60 if (file == null)
    [all...]
  /external/clang/test/Driver/
modules.m 7 // RUN: %clang -fbuild-session-file=doesntexist -### %s 2>&1 | FileCheck -check-prefix=NOFILE %s
8 // NOFILE: no such file or directory: 'doesntexist'
10 // RUN: touch -m -a -t 201008011501 %t.build-session-file
11 // RUN: %clang -fbuild-session-file=%t.build-session-file -### %s 2>&1 | FileCheck -check-prefix=TIMESTAMP_ONLY %s
16 // RUN: %clang -fbuild-session-file=%t.build-session-file -fbuild-session-timestamp=123 -### %s 2>&1 | FileCheck -check-prefix=CONFLICT %s
17 // CONFLICT: error: invalid argument '-fbuild-session-file={{.*}}.build-session-file' not allowed with '-fbuild-session-timestamp'
23 // RUN: %clang -fbuild-session-file=%t.build-session-file -fmodules-validate-once-per-build-session -### %s 2>&1 | FileCheck -check-pr (…)
    [all...]
  /external/cmockery/cmockery_0_1_2/src/
config.h 7 /* Define to 1 if you have the <assert.h> header file. */
13 /* Define to 1 if you have the <dlfcn.h> header file. */
25 /* Define to 1 if you have the <inttypes.h> header file. */
34 /* Define to 1 if you have the <malloc.h> header file. */
40 /* Define to 1 if you have the <memory.h> header file. */
55 /* Define to 1 if you have the <setjmp.h> header file. */
61 /* Define to 1 if you have the <signal.h> header file. */
67 /* Define to 1 if you have the <stdarg.h> header file. */
70 /* Define to 1 if you have the <stddef.h> header file. */
73 /* Define to 1 if you have the <stdint.h> header file. *
    [all...]
config.h.in 6 /* Define to 1 if you have the <assert.h> header file. */
12 /* Define to 1 if you have the <dlfcn.h> header file. */
24 /* Define to 1 if you have the <inttypes.h> header file. */
33 /* Define to 1 if you have the <malloc.h> header file. */
39 /* Define to 1 if you have the <memory.h> header file. */
54 /* Define to 1 if you have the <setjmp.h> header file. */
60 /* Define to 1 if you have the <signal.h> header file. */
66 /* Define to 1 if you have the <stdarg.h> header file. */
69 /* Define to 1 if you have the <stddef.h> header file. */
72 /* Define to 1 if you have the <stdint.h> header file. *
    [all...]
  /external/deqp/framework/common/
tcuDefs.cpp 8 * you may not use this file except in compliance with the License.
20 * \file
50 static std::string formatError (const char* message, const char* expr, const char* file, int line)
58 if (file)
59 msg << " at " << de::FilePath(file).getBaseName() << ":" << line;
64 Exception::Exception (const char* message, const char* expr, const char* file, int line)
65 : std::runtime_error(formatError(message, expr, file, line))
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result)
77 : Exception (formatError(message, expr, file, line))
88 TestError::TestError (const char* message, const char* expr, const char* file, int line
    [all...]
  /external/deqp/framework/delibs/deutil/
deFile.h 10 * you may not use this file except in compliance with the License.
22 * \file
23 * \brief File abstraction.
30 /* File types. */
35 DE_FILEMODE_READ = (1<<0), /*!< Read access to file. */
36 DE_FILEMODE_WRITE = (1<<2), /*!< Write access to file. */
37 DE_FILEMODE_CREATE = (1<<3), /*!< Create file if it doesn't exist. Requires DE_FILEMODE_WRITE. */
38 DE_FILEMODE_OPEN = (1<<4), /*!< Open file if it exists. */
39 DE_FILEMODE_TRUNCATE = (1<<5) /*!< Truncate content of file. Requires DE_FILEMODE_OPEN. */
67 /* File API. *
    [all...]
  /external/e2fsprogs/contrib/
populate-extfs.sh 10 Create an ext2/ext3/ext4 filesystem from a directory or file
12 source: The source directory or file
32 find $SRCDIR | while read FILE; do
33 TGT="${FILE##*/}"
34 DIR="${FILE#$SRCDIR}"
47 STAT=$(stat -c "TYPE=\"%F\";DEVNO=\"0x%t 0x%T\";MODE=\"%f\";U=\"%u\";G=\"%g\"" $FILE)
54 "regular file" | "regular empty file")
55 echo "write $FILE $TGT"
58 LINK_TGT=$(readlink $FILE)
    [all...]
  /external/libvpx/libvpx/
vpxstats.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.
24 stats->file = fopen(fpf, "wb");
27 res = (stats->file != NULL);
34 stats->file = fdopen(fd, "rb");
42 stats->file = fopen(fpf, "rb");
44 if (fseek(stats->file, 0, SEEK_END))
45 fatal("First-pass stats file must be seekable!");
47 stats->buf.sz = stats->buf_alloc_sz = ftell(stats->file);
    [all...]
  /external/vogar/src/vogar/
SshTarget.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
51 @Override public File defaultDeviceDir() {
52 return new File("/data/local/tmp/vogar");
59 @Override public void await(File nonEmptyDirectory) {
62 @Override public void rm(File file) {
64 .args("ssh", "-p", Integer.toString(port), host, "-C", "rm", "-r", file.getPath())
80 @Override public void mkdirs(File file) {
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
37 return fromFile(new File(path));
40 public static GestureLibrary fromFile(File path) {
53 private final File mPath;
55 public FileGestureLibrary(File path) {
67 final File file = mPath;
69 final File parentFile = file.getParentFile()
93 final File file = mPath; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxstats.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.
24 stats->file = fopen(fpf, "wb");
27 res = (stats->file != NULL);
34 stats->file = fdopen(fd, "rb");
42 stats->file = fopen(fpf, "rb");
44 if (fseek(stats->file, 0, SEEK_END))
45 fatal("First-pass stats file must be seekable!");
47 stats->buf.sz = stats->buf_alloc_sz = ftell(stats->file);
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
SizeFileFilter.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;
30 * File dir = new File(".");
49 * Constructs a new size file filter for files equal to or
60 * Constructs a new size file filter for files based on a certain size
78 * Checks to see if the size of the file is favorable.
81 * file <b>IS NOT</b> selected
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
FilePart.java 9 * contributor license agreements. See the NOTICE file distributed with
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
33 import java.io.File;
44 * consists of a file.
59 /** Default content encoding of file attachments. */
62 /** Default charset of file attachments. */
65 /** Default transfer encoding of file attachments. */
71 /** Attachment's file name */
74 /** Attachment's file name as a byte array *
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
DiagCommonKinds.inc 3 "can not open input file `%0': %1",
4 "can not open input file `%0' : %1")
7 "cannot open output file `%0': %1",
8 "cannot open output file `%0': %1")
16 "Empty input file `%0' : %1",
17 "Empty input file `%0' : %1")
20 "cannot recognize the format of file `%0'.\n object format or given "
22 "cannot recognize the format of file `%0'.\n object format or given "
38 "unsupported output file format: `%0'",
39 "unsupported output file format: `%0'"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 5 * you may not use this file except in compliance with the License.
46 import java.io.File;
83 private final File mDestinationFile;
127 * @param destination Destinaton File, if this is null, a new file will be
133 File destination, Bitmap previewImage, Callback callback) {
147 public static File getFinalSaveDirectory(Context context, Uri sourceUri) {
148 File saveDirectory = SaveImage.getSaveDirectory(context, sourceUri);
150 saveDirectory = new File(Environment.getExternalStorageDirectory(),
159 public static File getNewFile(Context context, Uri sourceUri)
531 File file = new File(saveDirectory, filename + ".JPG"); local
583 File file = getLocalFileFromUri(context, sourceUri); local
608 final File[] file = new File[1]; local
    [all...]
  /external/e2fsprogs/misc/
chattr.1.in 4 chattr \- change file attributes on a Linux file system
20 changes the file attributes on a Linux file system.
37 but not modified by chattr: huge file (h), compression error (E),
39 file (Z).
52 Set the file's version/generation number.
54 When a file with the 'A' attribute set is accessed, its atime record is
58 A file with the `a' attribute set can only be open in append mode for writing.
62 A file with the `c' attribute set is automatically compressed on the dis
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
and_constructor.c 36 FILE *file; member in struct:inv_construct_t
61 MPL_LOGE("Error : file name and path too long, 100 characters limit\n");
126 if (inv_construct.file == NULL) {
127 inv_construct.file = fopen(playback_filename, "rb");
128 if (!inv_construct.file) {
129 MPL_LOGE("Error : cannot find or open playback file '%s'\n",
136 r = fread(&type, sizeof(type), 1, inv_construct.file);
138 MPL_LOGV("read 0 bytes, PLAYBACK file closed\n");
140 fclose(inv_construct.file);
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
60 List<File> rootProcessDirs = getRootProcessDirs();
68 private static List<File> getRootProcessDirs()
70 File proc = new File("/proc");
75 List<File> rootProcesses = new ArrayList<File>();
76 File[] processDirs = proc.listFiles();
78 for (File processDir : processDirs)
    [all...]
  /device/asus/deb/self-extractors/
files-by-owner.sh 6 # you may not use this file except in compliance with the License.
28 # you may not use this file except in compliance with the License.
63 while read file
66 auto_owner=$(grep ^$file: ../vendor_owner_info.txt | cut -d : -f 2)
67 if test $file = system/bin/mm-qcamera-app -o $file = system/lib/hw/camera.deb.so -o $file = system/lib/hw/gps.msm8960.so -o $file = system/lib/libgps.utils.so -o $file = system/lib/libloc_adapter.so -o $file = system/lib/libloc_eng.so -o $file = system/lib/libmmcamera_interface.so -o $file = system/lib/li (…)
    [all...]

Completed in 618 milliseconds

<<51525354555657585960>>