HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 26 - 50 of 31893) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/media/camera/docs/
CameraCharacteristicsKeys.mako 6 ## you may not use this file except in compliance with the License.
17 <%include file="CameraMetadataKeys.mako" args="java_class='CameraCharacteristics', xml_kind='static'" />
CaptureRequestKeys.mako 6 ## you may not use this file except in compliance with the License.
17 <%include file="CameraMetadataKeys.mako" args="java_class='CaptureRequest', xml_kind='controls'" />
CaptureResultKeys.mako 6 ## you may not use this file except in compliance with the License.
17 <%include file="CameraMetadataKeys.mako" args="java_class='CaptureResult', xml_kind='dynamic'" />
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
empty.s 1 # An empty file.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
blank.s 1 @ this file left intentionally blank
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
HeaderItem.java 5 * you may not use this file except in compliance with the License.
49 public void read(DexRandomAccessFile file) throws IOException {
50 file.getOffsetTracker().getNewOffsettable(file, this);
53 magic[i] = file.readByte();
55 checksum = file.readUInt();
58 signature[i] = file.readByte();
60 fileSize = file.readUInt();
61 headerSize = file.readUInt();
62 endianTag = file.readUInt()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
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);
  /external/python/cpython2/Modules/zlib/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
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);
  /external/python/cpython3/Modules/zlib/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
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);
  /external/zlib/src/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
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.27/zlib/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
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);
  /external/ltp/testcases/kernel/fs/racer/
fs_racer_file_symlink.sh 26 file=$(($RANDOM%$MAX))
27 new_file=$((($file + 1)%$MAX))
28 ln -s $file $DIR/$new_file 2> /dev/null
29 ln -s $file/$file/$file $DIR/$new_file 2> /dev/null
  /libcore/ojluni/src/main/java/java/nio/file/
FileSystemLoopException.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 loop, or cycle, is encountered.
43 * @param file
44 * a string identifying the file causing the cycle or {@code null} if
47 public FileSystemLoopException(String file) {
48 super(file);
    [all...]
NotDirectoryException.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, intended for a
30 * directory, fails because the file is not a directory.
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public NotDirectoryException(String file) {
    [all...]
CopyOption.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 * An object that configures how to copy or move a file.
35 * Files.move(Path,Path,CopyOption...)} methods to configure how a file is
FileVisitOption.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 * Defines the file tree traversal options.
OpenOption.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 * An object that configures how to open or create a file.
36 * when opening or creating a file.
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue4273b.c 3 // license that can be found in the LICENSE file.
6 extern void _compilerrt_abort_impl(const char *file, int line, const char *func);
8 void __my_abort(const char *file, int line, const char *func) {
9 _compilerrt_abort_impl(file, line, func);
  /prebuilts/go/linux-x86/misc/cgo/test/
issue4273b.c 3 // license that can be found in the LICENSE file.
6 extern void _compilerrt_abort_impl(const char *file, int line, const char *func);
8 void __my_abort(const char *file, int line, const char *func) {
9 _compilerrt_abort_impl(file, line, func);
  /external/linux-kselftest/tools/testing/selftests/efivarfs/
efivarfs.sh 47 local file=$efivarfs_mount/$FUNCNAME-$test_guid
49 printf "$attrs\x00" > $file
51 if [ ! -e $file ]; then
52 echo "$file couldn't be created" >&2
56 if [ $(stat -c %s $file) -ne 5 ]; then
57 echo "$file has invalid size" >&2
64 local file=$efivarfs_mount/$FUNCNAME-$test_guid
66 : > $file
68 if [ ! -e $file ]; then
69 echo "$file can not be created without writing" >&
    [all...]
  /external/sonic/
wave.c 4 This file is part of the Sonic Library.
6 This file is licensed under the Apache 2.0 license.
10 This file supports read/write wave files.
22 FILE *soundFile;
28 /* Write a string to a file. */
30 waveFile file,
36 if(file->failed) {
39 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile);
41 fprintf(stderr, "Unable to write to output file");
42 file->failed = 1
245 waveFile file; local
270 waveFile file; local
    [all...]
  /external/toybox/tests/
chmod.test 24 touch file
33 if [ "$type" == file ]
39 type=file
50 rm -rf dir file && mkdir dir && touch file
51 testing "750 dir 640 file" \
52 "chmod 750 dir 640 file 2>/dev/null ||
53 ls -ld dir file | cut -d' ' -f 1 | cut -d. -f 1" "drwxr-x---\n-rwxr-x---\n" "" ""
55 rm -rf dir file && mkdir dir && touch file
    [all...]
  /external/llvm/test/MC/ELF/
empty-dwarf-lines.s 5 .file 1 "test.c"
  /external/swiftshader/third_party/LLVM/test/MC/ELF/
empty-dwarf-lines.s 5 .file 1 "test.c"

Completed in 899 milliseconds

12 3 4 5 6 7 8 91011>>