HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 51 - 75 of 27862) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/ftrace/samples/
xfail.tc 3 cat non-exist-file || exit_xfail
  /packages/apps/Messaging/tools/messagegen/
listimages 5 # you may not use this file except in compliance with the License.
16 for file in `ls *.jpg *.gif`;
18 dimension=`identify -format "%w %h" $file`
19 size=`stat -c%s $file`
20 echo "$file $dimension $size"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
debug1.s 1 .file "debug1.s"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lns/
lns-duplicate.s 2 .file 1 "foo.s"
  /external/linux-kselftest/tools/testing/selftests/media_tests/
open_loop_test.sh 3 file=/dev/media$1
5 echo $file
7 R=$(./media_device_open -d $file);
  /external/ltp/testcases/kernel/fs/racer/
fs_racer_dir_create.sh 26 echo "asdf" > $DIR/$file/$file/$file
30 file=$(($RANDOM%$MAX))
31 mkdir -p $DIR/$file/$file/ 2> /dev/null
fs_racer_file_rename.sh 26 file=$(($RANDOM%$MAX))
27 new_file=$((($file + 1)%$MAX))
28 mv $DIR/$file $DIR/$new_file 2> /dev/null
fs_racer_file_concat.sh 26 cat $DIR/$file >> $DIR/$new_file
27 cat $DIR/$file/$file/$file >> $DIR/$new_file
32 file=$(($RANDOM%$MAX))
  /external/pdfium/third_party/zlib_v128/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
12 gzFile file)
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
  /toolchain/binutils/binutils-2.25/gold/testsuite/
discard_locals_test.sh 8 # This file is part of gold.
25 # This file goes with exclude_libs_test.c, a C source file
32 file=$1
35 found=`egrep $sym $file`
37 echo "These local symbols are not discarded in $file:"
45 file=$1
48 found=`egrep $sym $file`
50 echo "This local symbol is discarded in $file:"
  /external/bison/lib/
dirname-lgpl.c 1 /* dirname.c -- return all but the last element in a file name
26 /* Return the length of the prefix of FILE that will be used by
27 dir_name. If FILE is in the working directory, this returns zero
28 even though 'dir_name (FILE)' will return ".". Works properly even
32 dir_len (char const *file)
34 size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);
40 && ISSLASH (file[prefix_length]))
41 : (ISSLASH (file[0])
43 && ISSLASH (file[1]) && ! ISSLASH (file[2]
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
ClassDefItem.java 5 * you may not use this file except in compliance with the License.
40 public void read(DexRandomAccessFile file) throws IOException {
41 file.getOffsetTracker().getNewOffsettable(file, this);
42 classIdx = file.readUInt();
43 accessFlags = file.readUInt();
44 superclassIdx = file.readUInt();
45 interfacesOff = file.getOffsetTracker().getNewOffset(file.readUInt());
46 sourceFileIdx = file.readUInt()
    [all...]
AnnotationItem.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 file.getOffsetTracker().getNewOffsettable(file, this);
28 visibility = file.readUnsignedByte();
29 (annotation = new EncodedAnnotation()).read(file);
33 public void write(DexRandomAccessFile file) throws IOException {
34 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
35 file.writeByte(visibility)
    [all...]
StringIdItem.java 5 * you may not use this file except in compliance with the License.
25 public void read(DexRandomAccessFile file) throws IOException {
26 file.getOffsetTracker().getNewOffsettable(file, this);
27 stringDataOff = file.getOffsetTracker().getNewOffset(file.readUInt());
31 public void write(DexRandomAccessFile file) throws IOException {
32 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
33 file.getOffsetTracker().tryToWriteOffset(stringDataOff, file, false /* ULEB128 */)
    [all...]
ProtoIdItem.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 shortyIdx = file.readUInt();
30 returnTypeIdx = file.readUInt();
31 parametersOff = file.getOffsetTracker().getNewOffset(file.readUInt());
35 public void write(DexRandomAccessFile file) throws IOException {
36 file.getOffsetTracker().updatePositionOfNextOffsettable(file)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
27 * #SYSTEM} implementation, which uses the host machine's local file system. Alternate
31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
33 * The file may be moved between the two calls!
35 * <p>This interface is less ambitious than {@link java.nio.file.FileSystem} introduced in Java 7.
36 * It lacks important features like file watching, metadata, permissions, and disk space
41 /** The host machine's local file system. */
43 @Override public Source source(File file) throws FileNotFoundException
    [all...]
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName non-null; name of the file to read
39 * @return non-null; contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
FilePartSource.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
34 import java.io.File;
41 * A PartSource that reads from a File.
51 /** File part file. */
52 private File file = null; field in class:FilePartSource
54 /** File part file name. *
    [all...]
  /external/vogar/src/vogar/tasks/
RmTask.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
25 private final File file; field in class:RmTask
27 public RmTask(Rm rm, File file) {
28 super("rm " + file);
30 this.file = file;
34 rm.file(file)
    [all...]
  /external/webrtc/webrtc/base/
platform_file.cc 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 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
25 if (file == kInvalidPlatformFileValue)
27 int fd = _open_osfhandle(reinterpret_cast<intptr_t>(file), 0);
34 bool ClosePlatformFile(PlatformFile file) {
35 return CloseHandle(file) != 0;
40 FILE* FdopenPlatformFileForWriting(PlatformFile file)
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/core/
FileSystemWriteTest.java 5 import java.io.File;
12 File file = new File("/data/misc/bluetooth/test.file"); local
13 assertTrue("File not created", file.createNewFile());
14 file.delete();
16 fail("Exception creating file /data/misc/bluetooth/test.file: " + e)
22 File file = new File("\/data\/misc\/bluedroid\/test.file"); local
32 File file = new File("\/data\/misc\/bluetooth\/logs\/test.file"); local
    [all...]
  /external/ImageMagick/config/
lndir.sh 74 for file in `ls $DIRFROM`
76 if [ ! -d $DIRFROM/$file ]
78 test -r $file || ln -s $DIRFROM/$file .
80 #echo $file:
81 test -d $file || mkdir $file && chmod 777 $file
82 (cd $file
88 if [ `(cd $DIRFROM/$file; pwd)` = $pwd
    [all...]
  /external/autotest/client/profilers/powertop/src/
usb.c 4 * 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")
70 FILE *file; local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
AccessDeniedException.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
29 * Checked exception thrown when a file system operation is denied, typically
30 * due to a file permission or other access check.
35 * access to a file is denied.
48 * @param file
49 * a string identifying the file or {@code null} if not know
    [all...]

Completed in 514 milliseconds

1 23 4 5 6 7 8 91011>>