Home
last modified time | relevance | path

Searched refs:att (Results 1 – 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/java/security/
DPKCS12AttributeTest.java107 PKCS12Attribute att = new PKCS12Attribute(PKCS9_EMAIL_ADDRESS_OID, EXAMPLE_EMAIL_ADDRESS); in test_Constructor_String_String_success() local
108 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName()); in test_Constructor_String_String_success()
109 assertEquals(EXAMPLE_EMAIL_ADDRESS, att.getValue()); in test_Constructor_String_String_success()
130 PKCS12Attribute att = in test_Constructor_String_String_wrongOID_throwsException() local
138 PKCS12Attribute att = new PKCS12Attribute(ENCODED_ATTRIBUTE_UTF8_EMAIL_ADDRESS); in test_Constructor_byteArray_success() local
139 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName()); in test_Constructor_byteArray_success()
140 assertEquals(EXAMPLE_EMAIL_ADDRESS, att.getValue()); in test_Constructor_byteArray_success()
160 PKCS12Attribute att = new PKCS12Attribute( in test_Constructor_String_String_sequenceValue() local
162 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName()); in test_Constructor_String_String_sequenceValue()
163 assertEquals(EXAMPLE_SEQUENCE_OF_EMAILS, att.getValue()); in test_Constructor_String_String_sequenceValue()
[all …]
/libcore/ojluni/src/main/java/sun/nio/ch/
DUnixAsynchronousServerSocketChannelImpl.java110 Object att; in implClose() local
117 att = acceptAttachment; in implClose()
129 Invoker.invokeIndirectly(this, handler, att, null, x); in implClose()
200 Object att = acceptAttachment; in onEvent() local
216 Invoker.invoke(this, handler, att, child, exc); in onEvent()
271 Future<AsynchronousSocketChannel> implAccept(Object att, in implAccept() argument
280 Invoker.invoke(this, handler, att, null, e); in implAccept()
317 this.acceptAttachment = att; in implAccept()
353 Invoker.invokeIndirectly(this, handler, att, child, exc); in implAccept()
DUnixAsynchronousSocketChannelImpl.java296 Object att = connectAttachment; in finishConnect() local
302 Invoker.invokeUnchecked(handler, att, null, e); in finishConnect()
304 Invoker.invokeIndirectly(this, handler, att, null, e); in finishConnect()
401 Object att = readAttachment; in finishRead() local
454 Invoker.invokeUnchecked(handler, att, result, exc); in finishRead()
456 Invoker.invokeIndirectly(this, handler, att, result, exc); in finishRead()
464 Object att = null;
472 att = readAttachment;
485 Invoker.invokeIndirectly(ch, handler, att, null, exc);
596 Object att = this.writeAttachment; in finishWrite() local
[all …]
DAsynchronousSocketChannelImpl.java229 A att, in read() argument
236 Invoker.invoke(this, handler, att, null, e); in read()
272 Invoker.invoke(this, handler, att, (V)result, null); in read()
276 return implRead(isScatteringRead, dst, dsts, timeout, unit, att, handler); in read()
338 A att, in write() argument
369 Invoker.invoke(this, handler, att, null, e); in write()
378 Invoker.invoke(this, handler, att, (V)result, null); in write()
382 return implWrite(isGatheringWrite, src, srcs, timeout, unit, att, handler); in write()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DJarOutputStreamTest.java46 Attributes att = man.getMainAttributes(); in test_JarOutputStreamLjava_io_OutputStreamLjava_util_jar_Manifest() local
47 att.put(Attributes.Name.MANIFEST_VERSION, "1.0"); in test_JarOutputStreamLjava_io_OutputStreamLjava_util_jar_Manifest()
48 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo"); in test_JarOutputStreamLjava_io_OutputStreamLjava_util_jar_Manifest()
49 att.put(Attributes.Name.CLASS_PATH, barZip.getName()); in test_JarOutputStreamLjava_io_OutputStreamLjava_util_jar_Manifest()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSelectableChannelTest.java73 public SelectionKey register(Selector sel, int ops, Object att) in register() argument
75 if (null == att) { in register()
/libcore/ojluni/src/main/java/java/nio/channels/spi/
DAbstractSelectableChannel.java200 public final SelectionKey register(Selector sel, int ops, Object att) in register() argument
216 k.attach(att); in register()
220 k = ((AbstractSelector)sel).register(this, ops, att); in register()
DAbstractSelector.java176 int ops, Object att); in register() argument
/libcore/ojluni/src/main/java/java/nio/
DDirect-X-Buffer.java.template64 private final Object att;
67 return att;
138 att = null;
154 att = ob;
164 att = ob;
173 att = null;
189 att = null;
218 att = (attachment == null ? db : attachment);
/libcore/ojluni/src/main/java/java/nio/channels/
DSelectableChannel.java209 public abstract SelectionKey register(Selector sel, int ops, Object att) in register() argument