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

<<11121314151617181920>>

  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 57 this.channel1 = SocketChannel.open();
58 this.channel2 = SocketChannel.open();
96 channel = SocketChannel.open();
116 SocketChannel testSChannel = MockSocketChannel.open();
181 this.channel1 = SocketChannel.open(localAddr1);
186 this.channel1 = SocketChannel.open(newTypeAddress);
195 this.channel1 = SocketChannel.open(unresolvedAddress);
203 channel1IP = SocketChannel.open(null);
285 final ServerSocketChannel ssc = ServerSocketChannel.open();
304 SocketChannel sc = SocketChannel.open();
    [all...]
  /bionic/libc/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
59 __asm__(__USER_LABEL_PREFIX__ "open");
63 int open(const char *pathname, int flags, ...) { function
  /bootable/recovery/tools/ota/
convert-to-bmp.py 16 im = Image.open(infile)
67 f = open(outfile, "wb")
  /dalvik/dx/src/com/android/dx/io/
DexHasher.java 2 * Copyright (C) 2011 The Android Open Source Project
70 dex.open(SIGNATURE_OFFSET).write(signature);
73 dex.open(CHECKSUM_OFFSET).writeInt(checksum);
  /development/tools/findunused/
findunusedtranslations 41 open(IN, "<$ARGV[0]");
61 open(IN, "<$match");
97 open(OUT, ">$match");
  /external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.py 16 cStream = antlr3.StringStream(open(inputPath).read())
25 testOutput = open(outputPath).read()
44 ## input = open(inputPath).read()
t020fuzzy.py 16 stream = antlr3.StringStream(open(inputPath).read())
28 testOutput = open(outputPath).read()
  /external/chromium/chrome/browser/importer/
firefox_profile_lock_posix.cc 72 lock_fd_ = open(old_lock_file_.value().c_str(), O_CREAT | O_EXCL, 0644);
96 lock_fd_ = open(lock_file_.value().c_str(), O_WRONLY | O_CREAT | O_TRUNC,
  /external/clang/utils/analyzer/
SATestAdd.py 49 PMapFile = open(ProjectMapPath, "r+b")
52 PMapFile = open(ProjectMapPath, "w+b")
reducer.pl 21 open(OUT, ">$scriptFile") or die "$prog: cannot create '$scriptFile'\n";
41 open(IN, "$reduceOut") or exit(\$BAD);
  /external/compiler-rt/BlocksRuntime/tests/
testfilerunner.h 4 // This file is distributed under the University of Illinois Open Source
91 bool open; // this problem is still open - e.g. unresolved variable
99 @property bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, wants64; variable
  /external/eigen/bench/spbench/
spbenchsolver.cpp 51 statbuf.open(statFile.c_str(), std::ios::out);
58 std::cerr << "Unable to open the provided file for writting... \n";
81 statbuf.open(statFile.c_str(), std::ios::app);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassLoaderResourceLoader.java 44 * loader.open("my-template.cs");
45 * loader.open("subdir/my-template.cs");
66 public Reader open(String name) throws IOException { method in class:ClassLoaderResourceLoader
74 Reader reader = open(name);
ClassResourceLoader.java 39 * loader.open("my-template.cs");
40 * loader.open("subdir/my-template.cs");
45 * loader.open("my-template.cs");
71 public Reader open(String name) throws IOException { method in class:ClassResourceLoader
78 Reader reader = open(name);
FileSystemResourceLoader.java 45 public Reader open(String name) throws IOException { method in class:FileSystemResourceLoader
58 Reader reader = open(name);
InMemoryResourceLoader.java 40 public Reader open(String name) throws IOException { method in class:InMemoryResourceLoader
47 Reader reader = open(name);
  /external/libvpx/libvpx/examples/includes/
vp8_doc_tools.php 135 * @param $open str - Opening expression to match
141 function do_geshi($blob, $open = '<pre>',
145 $regexp = '|' . $open . '(.*?)' . $close . '|si';
  /external/marisa-trie/tests/
io-test.cc 24 writer.open("io-test.dat");
35 writer.open("io-test.dat", false, 4, SEEK_SET);
42 writer.open("io-test.dat", false, 0, SEEK_END);
49 reader.open("io-test.dat");
66 mapper.open("io-test.dat");
83 writer.open("io-test.dat");
88 reader.open("io-test.dat");
127 int fd = ::open("io-test.dat", O_RDONLY);
  /external/marisa-trie/v0_1_5/tests/
io-test.cc 25 writer.open("io-test.dat");
36 writer.open("io-test.dat", false, 4, SEEK_SET);
43 writer.open("io-test.dat", false, 0, SEEK_END);
50 reader.open("io-test.dat");
67 mapper.open("io-test.dat");
84 writer.open("io-test.dat");
89 reader.open("io-test.dat");
128 int fd = ::open("io-test.dat", O_RDONLY);
  /external/openssl/apps/
CA.pl.in 95 open OUT, ">${CATOP}/index.txt";
97 open OUT, ">${CATOP}/crlnumber";
176 open IN, $infile;
177 open OUT, ">$outfile";
  /external/qemu/distrib/sdl-1.2.15/Xcode/SDL/pkg-support/devel-resources/
install.sh 75 # open up the README file
76 sudo -u $USER open ~/"Readme SDL Developer.txt"
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_ataridevmouse.c 61 handle = open(mousedev, 0);
66 handle = open(DEVICE_NAME, 0);
  /external/valgrind/main/none/tests/
rlimit64_nofile.c 89 if (open("/dev/null", O_RDONLY) < 0)
91 perror("open");
95 if ((fd = open("/dev/null", O_RDONLY)) >= 0)
97 fprintf(stderr, "open succeeded with fd %d - it should have failed!\n", fd);
101 perror("open");
rlimit_nofile.c 86 if (open("/dev/null", O_RDONLY) < 0)
88 perror("open");
92 if ((fd = open("/dev/null", O_RDONLY)) >= 0)
94 fprintf(stderr, "open succeeded with fd %d - it should have failed!\n", fd);
98 perror("open");
  /external/webkit/LayoutTests/http/tests/appcache/resources/
offline-access.js 9 req.open("GET", "/resources/network-simulator.php?path=/appcache/resources/simple.txt", false);

Completed in 767 milliseconds

<<11121314151617181920>>