Searched refs:open (Results 1 - 25 of 72) sorted by relevance

123

/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DSourceDataLine.java22 void open(AudioFormat format) throws LineUnavailableException; method in interface:SourceDataLine
24 void open(AudioFormat format, int bufferSize) method in interface:SourceDataLine
H A DTargetDataLine.java22 void open(AudioFormat format) throws LineUnavailableException; method in interface:TargetDataLine
24 void open(AudioFormat format, int bufferSize) method in interface:TargetDataLine
H A DClip.java31 void open(AudioFormat format, byte[] data, int offset, int bufferSize) method in interface:Clip
34 void open(AudioInputStream stream) throws LineUnavailableException, method in interface:Clip
H A DLine.java57 void open() throws LineUnavailableException; method in interface:Line
/dalvik/vm/alloc/TEST/HeapBitmapTest/include/cutils/
H A Dashmem.h11 return open("/dev/zero", O_RDWR);
/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DServerSocketChannel.java32 * A server-socket channel is open but not bound when created by the {@code
33 * open()} method. Calling {@code accept} before bound will cause a
50 * Creates an open and unbound server-socket channel.
55 * @return the new channel which is open but unbound.
59 public static ServerSocketChannel open() throws IOException { method in class:ServerSocketChannel
H A DSocketChannel.java34 * A socket channel is open but not connected when created by {@code open()}.
79 * Creates an open and unconnected socket channel.
84 * @return the new channel which is open but unconnected.
88 public static SocketChannel open() throws IOException { method in class:SocketChannel
95 * This method performs a call to {@code open()} followed by a call to
118 public static SocketChannel open(SocketAddress address) throws IOException { method in class:SocketChannel
119 SocketChannel socketChannel = open();
H A DPipe.java95 public static Pipe open() throws IOException { method in class:Pipe
H A DSelector.java47 public static Selector open() throws IOException { method in class:Selector
75 * Indicates whether this selector is open.
H A DDatagramChannel.java35 * A datagram channel is open but not connected when created with the
36 * {@code open()} method. After it is connected, it will keep the connected
69 * @return the new channel which is open but not connected.
73 public static DatagramChannel open() throws IOException { method in class:DatagramChannel
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DPipeTest.java45 * @tests java.nio.channels.Pipe#open()
50 method = "open",
54 Pipe pipe = Pipe.open();
68 Pipe pipe = Pipe.open();
83 Pipe pipe = Pipe.open();
H A DSelectorTest.java78 ssc = ServerSocketChannel.open();
83 selector = Selector.open();
101 * @tests java.nio.channels.Selector#open()
106 method = "open",
164 SocketChannel sc = SocketChannel.open();
205 SocketChannel sc = SocketChannel.open();
350 selector = Selector.open();
464 SocketChannel sc = SocketChannel.open();
488 final Pipe pipe = Pipe.open();
534 SocketChannel sc = SocketChannel.open();
[all...]
H A DSelectableChannelTest.java61 msc.register(Selector.open(), SelectionKey.OP_ACCEPT);
/dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
H A DAndroidClip.java65 public void open(AudioFormat format, byte[] data, int offset, int bufferSize) method in class:AndroidClip
69 open();
78 public void open(AudioInputStream stream) throws LineUnavailableException, IOException { method in class:AndroidClip
79 open();
102 throw new IllegalStateException("Clip must be open");
156 throw new IllegalStateException("Clip must be open");
197 throw new IllegalStateException("Clip must be open");
236 public void open() throws LineUnavailableException { method in class:AndroidClip
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/regex/
H A DNativeRegEx.java24 public static native int open(String pattern, int flags); method in class:NativeRegEx
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DRuleBasedNumberFormat.java75 public void open(RBNFType type) { method in class:RuleBasedNumberFormat
87 public void open(RBNFType type, Locale locale) { method in class:RuleBasedNumberFormat
104 public void open(String rule) { method in class:RuleBasedNumberFormat
119 public void open(String rule, Locale locale) { method in class:RuleBasedNumberFormat
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DExceptionTest.java53 db.open(dbFile.getName(), 0);
/dalvik/libcore-disabled/SoundTest/src/com/android/tests/soundtest/
H A DSoundTest.java92 InputStream is = getAssets().open("fx_foghorn.mp3");
103 sdl.open(af);
131 InputStream is = getAssets().open("Dancing_Queen.mid");
134 s.open();
/dalvik/vm/compiler/template/
H A Dgen-template.py95 stub_fp = open(tokens[1])
153 opcode_fp = open("%s/%s" % (target_arch, interp_defs_file))
230 # Append the file specified by "source" to the open "outfp". Each line will
246 infp = open(source, "r")
347 config_fp = open("config-%s" % target_arch)
349 print "Unable to open config file 'config-%s'" % target_arch
356 asm_fp = open("%s/CompilerTemplateAsm-%s.S" % (output_dir, target_arch), "w")
358 print "Unable to open output files"
362 # failed to open we probably won't be able to remove them either.
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DAbstractSelectableChannelTest.java172 SocketChannel sc = SocketChannel.open();
186 SocketChannel channel = SocketChannel.open();
188 Selector selector = Selector.open();
277 SocketChannel sc = SocketChannel.open();
319 SocketChannel sc = SocketChannel.open();
347 SocketChannel sc = SocketChannel.open();
/dalvik/vm/mterp/
H A Dgen-mterp.py97 stub_fp = open(tokens[1])
158 opcode_fp = open(interp_defs_file)
282 # Append the file specified by "source" to the open "outfp". Each line will
298 infp = open(source, "r")
399 config_fp = open("config-%s" % target_arch)
401 print "Unable to open config file 'config-%s'" % target_arch
408 c_fp = open("%s/InterpC-%s.c" % (output_dir, target_arch), "w")
409 asm_fp = open("%s/InterpAsm-%s.S" % (output_dir, target_arch), "w")
411 print "Unable to open output files"
415 # failed to open w
[all...]
/dalvik/libcore-disabled/sound/src/test/java/android/core/
H A DSoundTest.java80 Assert.assertFalse("Sequencer must not be open", sequencer.isOpen());
81 sequencer.open();
82 Assert.assertTrue("Sequencer must be open", sequencer.isOpen());
101 Assert.assertFalse("Sequencer must not be open", sequencer.isOpen());
119 Assert.assertFalse("Clip must not be open", clip.isOpen());
120 clip.open(stream);
121 Assert.assertTrue("Clip must be open", clip.isOpen());
136 Assert.assertFalse("Clip must not be open", clip.isOpen());
/dalvik/libdex/
H A DCmdUtils.c46 fprintf(stderr, "Unable to open '%s' as zip archive\n",
53 fd = open(outFileName, O_WRONLY | O_CREAT | O_EXCL, 0600);
154 * Pop open the (presumed) DEX file.
156 fd = open(fileName, O_RDONLY);
159 fprintf(stderr, "ERROR: unable to open '%s': %s\n",
/dalvik/libcore/archive/src/main/native/
H A Dhy2sie.h94 #define hyfile_open(a, b, c) open(a, b, c)
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIFileSystem.java104 public int open(byte[] fileName, int mode) throws FileNotFoundException; method in interface:IFileSystem

Completed in 1763 milliseconds

123