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

<<11121314151617181920>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedAnnotation.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 typeIdx = file.readUleb128();
29 size = file.readUleb128();
33 (elements[i] = new AnnotationElement()).read(file);
39 public void write(DexRandomAccessFile file) throws IOException {
40 file.writeUleb128(typeIdx);
41 file.writeUleb128(size);
44 annotationElement.write(file);
EncodedCatchHandler.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 size = file.readSleb128();
33 (handlers[i] = new EncodedTypeAddrPair()).read(file);
37 catchAllAddr = file.readUleb128();
42 public void write(DexRandomAccessFile file) throws IOException {
43 file.writeSleb128(size);
46 encodedTypeAddrPair.write(file);
50 file.writeUleb128(catchAllAddr);
  /build/kati/
log.cc 4 // you may not use this file except in compliance with the License.
27 void ColorErrorLog(const char* file, int line, const char* msg) {
28 if (file == nullptr) {
36 ERROR(BOLD "%s:%d: " RED "error: " RESET BOLD "%s" RESET, file, line,
39 ERROR("%s:%d: %s", file, line, msg);
43 void ColorWarnLog(const char* file, int line, const char* msg) {
44 if (file == nullptr) {
54 BOLD "%s:%d: " MAGENTA "warning: " RESET BOLD "%s" RESET "\n", file,
57 fprintf(stderr, "%s:%d: %s\n", file, line, msg);
  /device/google/marlin/dataservices/datatop/src/
datatop_fileops.h 31 * @file datatop_fileops.h
42 int dt_read_file(const char *file, char **buffer, int len);
45 int dtop_open_writing_file(char *fw, FILE **to_file);
46 void dtop_close_file(FILE *fw);
47 int dtop_get_file_line_amount(char *file);
  /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/compiler-rt/lib/builtins/
eprintf.c 5 * This file is dual licensed under the MIT and the University of Illinois Open
30 const char* line, const char* file)
32 fprintf(stderr, format, assertion_expression, line, file);
  /external/curl/docs/cmdline-opts/
remote-time.d 3 Help: Set the remote file's time on the local output
6 remote file, and if that is available make the local file get that same
  /external/icu/icu4c/source/tools/gentest/
genres32.c 10 * file name: genres32.c
55 char file[512]; local
56 FILE *out;
58 uprv_strcpy(file,path);
59 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
60 uprv_strcat(file,U_FILE_SEP_STRING);
62 uprv_strcat(file,"testtable32.txt");
63 out = fopen(file, "w");
64 /*puts(file);*/
    [all...]
  /external/iproute2/testsuite/tests/ip/link/
show_dev_wo_vf_rate.t 6 ts_ip "$0" "Show VF devices w/o VF rate info" -d monitor file $NL_FILE
  /external/libopus/
convert_android_asm.sh 11 while read file; do
14 if [[ ! "${file}" =~ .*_gnu\.s$ ]]; then
15 gnu_file="${file%.s}_gnu.s"
16 ${ASM_CONVERTER} "${file}" > "${gnu_file}"
20 rm -f "${file}"
  /external/llvm/test/MC/ELF/
debug-line2.s 29 .file 1 "foo.c"
relax-crash.s 8 .file 1 "Disassembler.ii"
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
133-eof-without-newline-comment.c 1 This file ends with no newline within a comment /*
  /external/python/cpython2/Modules/_ctypes/libffi/src/
debug.c 41 void ffi_assert(char *expr, char *file, int line)
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line)
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
debug.c 40 void ffi_assert(char *expr, char *file, int line)
42 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
49 void ffi_type_test(ffi_type *a, char *file, int line)
51 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/python/cpython3/Modules/_ctypes/libffi/src/
debug.c 41 void ffi_assert(char *expr, char *file, int line)
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line)
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/swiftshader/third_party/LLVM/test/MC/ELF/
debug-line.s 20 .file 1 "foo.c"
relax-crash.s 8 .file 1 "Disassembler.ii"
  /external/toybox/tests/
setfattr.test 8 touch attrs/file
9 setfattr -n user.empty attrs/file
10 setfattr -n user.data -v hello attrs/file
11 setfattr -n user.delete-me -v hello attrs/file
14 "setfattr -x user.delete-me attrs/file && getfattr attrs/file" \
15 "# file: attrs/file\nuser.data\nuser.empty\n\n" "" ""
16 testing "-n" "setfattr -n user.new attrs/file && getfattr -d attrs/file" \
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
protobuf_utils.h 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.
25 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes);
27 // Returns true on success, false on error or end-of-file.
28 bool ReadMessageFromFile(FILE* file, ::google::protobuf::MessageLite* msg);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
issperr.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
6 #warning The header issperr.h is an obsolete file.
  /prebuilts/go/darwin-x86/src/net/testdata/
openbsd-resolv.conf 5 lookup file bind
  /prebuilts/go/linux-x86/src/net/testdata/
openbsd-resolv.conf 5 lookup file bind
  /system/extras/tests/sdcard/
profile_sdcard.sh 5 # you may not use this file except in compliance with the License.
32 local file="/tmp/sdcard-scalability.txt"
33 rm -f ${file}
34 echo "# Scalability tests" | tee -a ${file}
35 echo "# Kernel: $(print_kernel)" | tee -a ${file}
36 echo "# Sched features: $(print_sched_features)" | tee -a ${file}
37 echo "# StopWatch scalability total/cumulative duration 0.0 Samples: 1" | tee -a ${file}
38 echo "# Process Time" | tee -a ${file}
42 echo "$p $t" | tee -a ${file}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/lns/
lns-big-delta.s 1 .file 1 "foo.c"

Completed in 938 milliseconds

<<11121314151617181920>>