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

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
empty.s 1 # An empty file.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.25/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...]
EncodedArrayItem.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 (value = new EncodedArray()).read(file);
31 public void write(DexRandomAccessFile file) throws IOException {
32 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
33 value.write(file);
  /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/bison/lib/
dirname.h 1 /* Take file names apart into directory and base names.
35 char *base_name (char const *file);
36 char *dir_name (char const *file);
39 char *mdir_name (char const *file);
40 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
41 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
42 char *last_component (char const *file) _GL_ATTRIBUTE_PURE;
44 bool strip_trailing_slashes (char *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);
  /prebuilts/ndk/r11/sources/android/support/src/stdio/
stdio_impl.c 9 void fake_file_init_file(FakeFILE* file, FILE* f) {
10 memset(file, 0, sizeof(*file));
11 file->file = f;
14 void fake_file_init_buffer(FakeFILE* file, char* buffer, size_t buffer_size) {
15 memset(file, 0, sizeof(*file));
16 file->buffer = (void*)buffer
    [all...]
  /prebuilts/ndk/r13/sources/android/support/src/stdio/
stdio_impl.c 9 void fake_file_init_file(FakeFILE* file, FILE* f) {
10 memset(file, 0, sizeof(*file));
11 file->file = f;
14 void fake_file_init_buffer(FakeFILE* file, char* buffer, size_t buffer_size) {
15 memset(file, 0, sizeof(*file));
16 file->buffer = (void*)buffer
    [all...]
  /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
  /external/ltp/tools/
make-file.sh 20 # FILE: generate.sh
22 # PURPOSE: Creates dat for use in network file transfer tests.
28 file=$1
32 echo "usage: ${0##*/} <file> <size in bytes>"
36 [ -e "$file" ] && exit 0
38 if ! perl -e "print 'A' x $size" > "$file" 2> /dev/null ; then
39 if ! awk 'BEGIN { cnt='$size'; while (cnt--) printf "A" }' > "$file" 2> /dev/null ; then
40 ( while ((size--)) ; do echo -n A ; done ) > "$file"
44 chmod 666 $file
  /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 46 local file=$efivarfs_mount/$FUNCNAME-$test_guid
48 printf "$attrs\x00" > $file
50 if [ ! -e $file ]; then
51 echo "$file couldn't be created" >&2
55 if [ $(stat -c %s $file) -ne 5 ]; then
56 echo "$file has invalid size" >&2
63 local file=$efivarfs_mount/$FUNCNAME-$test_guid
65 : > $file
67 if [ ! -e $file ]; then
68 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/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"
  /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...]
  /build/kati/testcase/
hash_in_var.mk 2 file = $(shell echo tmp/test\#.ext) macro
6 test1: $(file)
9 $(file):
10 touch $(file)

Completed in 759 milliseconds

12 3 4 5 6 7 8 91011>>