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

1 23 4 5 6 7 8 91011>>

  /external/bzip2/
format.pl 32 # check we can open infile
33 open( INFILE,"<$infile" ) or
40 open( OUTFILE,">$outfile" ) or
  /external/chromium/base/test/
test_file_util_linux.cc 16 int fd = open(file.value().c_str(), O_RDONLY);
  /external/chromium/testing/gmock/scripts/generator/cpp/
utils.py 33 fp = open(filename)
  /external/clang/utils/TestUtils/
deep-stack.py 13 f = open('t.c','w')
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 38 private final Set<Callback> open = Sets.newHashSet(); field in class:CheckCloseSupplier
68 open.remove(this);
74 open.add(callback);
82 * {@code Closeable} is not longer open.
91 return open.isEmpty();
  /external/llvm/utils/
test_debuginfo.pl 28 open(INPUT, $testcase_file);
29 open(OUTPUT, ">$debugger_script_file");
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 34 #if defined(open) && open == binary_open
35 # undef open macro
56 return (open(filename, flags | O_BINARY, mode));
bsd-openpty.c 86 /* Open the slave side. */
87 if ((*aslave = open(slave, O_RDWR | O_NOCTTY)) == -1) {
102 if ((ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY)) == -1)
118 /* Open the slave side. */
119 if ((*aslave = open(pts, O_RDWR | O_NOCTTY)) == -1) {
142 if ((*amaster = open("/dev/ptc", O_RDWR | O_NOCTTY)) == -1)
146 if ((*aslave = open(ttname, O_RDWR | O_NOCTTY)) == -1) {
166 if ((*amaster = open(ptbuf, O_RDWR|O_NOCTTY)) == -1)
168 /* Open the slave side. */
169 if ((*aslave = open(ttbuf, O_RDWR|O_NOCTTY)) == -1)
    [all...]
  /external/valgrind/main/memcheck/tests/
erringfds.c 12 fd = open("foo/bar/xyzzy", O_RDONLY); /* fails */
fwrite.c 8 int fd = open("/dev/null", O_WRONLY);
10 fprintf(stderr, "open failed\n");
mmaptest.c 12 fd = open("dir", O_RDONLY);
  /external/webkit/Source/JavaScriptCore/docs/
make-bytecode-docs.pl 5 open MACHINE, "<" . $ARGV[0];
6 open OUTPUT, ">" . $ARGV[1];
  /external/webkit/Source/WebCore/loader/icon/
IconDatabaseBase.cpp 44 bool IconDatabaseBase::open(const String&, const String&) function in class:WebCore::IconDatabaseBase
  /external/webkit/Source/WebCore/platform/qt/
SharedBufferQt.cpp 39 if (!file.exists() || !file.open(QFile::ReadOnly))
  /external/webkit/Source/WebCore/storage/
IDBKeyRange.idl 38 [ClassMethod] IDBKeyRange lowerBound(in IDBKey bound, in [Optional] boolean open);
39 [ClassMethod] IDBKeyRange upperBound(in IDBKey bound, in [Optional] boolean open);
  /external/webkit/Source/WebKit/chromium/src/
WebIDBFactoryImpl.h 47 virtual void open(const WebString& name, WebIDBCallbacks*, const WebSecurityOrigin&, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType);
  /external/webkit/Tools/Scripts/
read-checksum-from-png 38 with open(filename, 'r') as filehandle:
check-for-exit-time-destructors 29 # "check-for-exit-time-destructors" script for WebKit Open Source Project
60 if (!open LIST, $list) {
61 print "ERROR: Could not open $list\n";
76 if (!open NM, "(nm '$file' | sed 's/^/STDOUT:/') 2>&1 |") {
77 print "ERROR: Could not open $file\n";
110 open(TOUCH, ">", $path) or die "$!";
117 if (!open FILT, "c++filt $symbol |") {
118 print "ERROR: Could not open c++filt\n";
130 if (!open OTOOL, "otool -tV '$path' |") {
131 print "WARNING: Could not open $path\n"
    [all...]
  /hardware/libhardware_legacy/qemu_tracing/
qemu_tracing.c 2 * Copyright (C) 2008 The Android Open Source Project
42 int fd = open(SYS_QEMU_TRACE_STATE, O_WRONLY);
52 int fd = open(SYS_QEMU_TRACE_STATE, O_WRONLY);
66 int fd = open(SYS_QEMU_TRACE_SYMBOL, O_WRONLY);
79 int fd = open(SYS_QEMU_TRACE_SYMBOL, O_WRONLY);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
PipeTest.java 2 * Copyright (C) 2010 The Android Open Source Project
24 Pipe p = Pipe.open();
ServerSocketChannelTest.java 2 * Copyright (C) 2011 The Android Open Source Project
24 ServerSocketChannel ssc = ServerSocketChannel.open();
  /libcore/luni/src/test/java/libcore/sqlite/
OldExceptionTest.java 2 * Copyright (C) 2008 The Android Open Source Project
33 db.open(dbFile.getName(), 0);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
12 // basic_filebuf<charT,traits>* open(const char* s, ios_base::openmode mode);
23 assert(f.open(temp, std::ios_base::out) != 0);
29 assert(f.open(temp, std::ios_base::in) != 0);
38 assert(f.open(temp, std::ios_base::out) != 0);
44 assert(f.open(temp, std::ios_base::in) != 0);
  /packages/inputmethods/PinyinIME/jni/include/
utf16reader.h 2 * Copyright (C) 2009 The Android Open Source Project
39 // filename is the name of the file to open.
42 bool open(const char* filename, size_t buffer_len);
  /external/dropbear/libtommath/
dep.pl 9 #open class file and write preamble
10 open(CLASS, ">tommath_class.h") or die "Couldn't open tommath_class.h for writing\n";
25 open(SRC, "<$filename");
26 open(OUT, ">tmp");
55 open(SRC, "<$filename") or die "Can't open source file!\n";
93 open(OUT,">callgraph.txt");

Completed in 8346 milliseconds

1 23 4 5 6 7 8 91011>>