Searched refs:pin (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAudioProcessor.java39 public void setInput(int pin, SoftAudioBuffer input); argument
41 public void setOutput(int pin, SoftAudioBuffer output); argument
H A DSoftLimiter.java50 public void setInput(int pin, SoftAudioBuffer input) { argument
51 if (pin == 0)
53 if (pin == 1)
57 public void setOutput(int pin, SoftAudioBuffer output) { argument
58 if (pin == 0)
60 if (pin == 1)
H A DSoftChorus.java320 public void setInput(int pin, SoftAudioBuffer input) { argument
321 if (pin == 0)
329 public void setOutput(int pin, SoftAudioBuffer output) { argument
330 if (pin == 0)
332 if (pin == 1)
334 if (pin == 2)
H A DSoftReverb.java263 public void setInput(int pin, SoftAudioBuffer input) { argument
264 if (pin == 0)
268 public void setOutput(int pin, SoftAudioBuffer output) { argument
269 if (pin == 0)
271 if (pin == 1)
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DPaddingTest.java151 BufferedInputStream pin = null;
157 pin = new BufferedInputStream(new FileInputStream(pinfile));
161 while ((len = pin.read(input, 0, bufferLen)) > 0) {
213 if (pin != null)
214 pin.close();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DWeakRef.java35 * several ways. The methods pin() and unpin() can be used to set
71 public synchronized void pin() { method in class:WeakRef
H A DTarget.java208 weakImpl.pin();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp424 void pin(PinReason reason) { _pin_state |= reason; } function in class:Instruction
425 void pin() { _pin_state |= PinUnknown; } function in class:Instruction
670 pin();
722 // pin of all instructions with memory access
723 pin();
784 pin();
808 pin(); // instruction with side effect (null exception or range check throwing)
911 pin();
989 if (can_trap()) pin();
1097 pin(Instructio
[all...]
H A Dc1_ValueStack.cpp109 v->pin(Instruction::PinStackForStateSplit);
H A Dc1_ValueMap.cpp126 f->pin(Instruction::PinGlobalValueNumbering);
H A Dc1_IR.cpp385 // pin the instruction so that LIRGenerator doesn't recurse
387 t->pin();
H A Dc1_Optimizer.cpp1000 x->pin(Instruction::PinExplicitNullCheck);
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DDataHandler.java261 PipedInputStream pin = new PipedInputStream(pos);
277 ins = pin;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java1120 // get the pin if necessary
1122 char[] pin = null;
1152 pin = pcall.getPassword();
1154 if (pin == null) {
1156 debug.println("caller passed NULL pin");
1167 // pin is NULL if using CKF_PROTECTED_AUTHENTICATION_PATH
1168 p11.C_Login(session.id(), CKU_USER, pin);
1190 if (pin != null) {
1191 Arrays.fill(pin, ' ');
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java374 // get the offset, and pin to that vector to get the length.
697 boolean pin(double lo, double hi, LineInfo result) { method in class:LayoutPathImpl.SegmentPath.LineInfo
730 * parameters to pass to pin(double, double, LineInfo).
732 boolean pin(int ix, LineInfo result) { method in class:LayoutPathImpl.SegmentPath.LineInfo
747 return pin(lo, hi, result);
795 if (li.pin(ix, temp)) {
796 if (LOGMAP) LOG.format("pin: %g, %g to %g, %g\n", temp.sx, temp.sy, temp.lx, temp.ly);

Completed in 148 milliseconds