Searched defs:data (Results 551 - 575 of 871) sorted by relevance

<<21222324252627282930>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java145 public void processingInstruction(String target, String data) throws SAXException { argument
148 storeStructureString(data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferCreator.java205 public void writeCData(String data) throws XMLStreamException { argument
207 storeContentString(data);
237 public void writeProcessingInstruction(String target, String data) throws XMLStreamException { argument
238 storeProcessingInstruction(target, data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDelegatingXMLStreamWriter.java104 public void writeComment(String data) throws XMLStreamException { argument
105 writer.writeComment(data);
112 public void writeProcessingInstruction(String target, String data) throws XMLStreamException { argument
113 writer.writeProcessingInstruction(target, data);
116 public void writeCData(String data) throws XMLStreamException { argument
117 writer.writeCData(data);
H A DDomSerializer.java271 public void processingInstruction(String target, String data) throws org.xml.sax.SAXException{ argument
272 Node node = _document.createProcessingInstruction(target, data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/policy/
H A DManagedServiceAssertion.java92 public ManagedServiceAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters) argument
94 super(MANAGED_SERVICE_QNAME, data, assertionParameters);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java186 * Fields for the control flow and data flow graph analysis algorithms (used
375 * @param data the bytecode of the method.
389 final byte[] data)
411 int opcode = data[reference - 1] & 0xFF;
414 data[reference - 1] = (byte) (opcode + 49);
417 data[reference - 1] = (byte) (opcode + 20);
421 data[reference++] = (byte) (offset >>> 8);
422 data[reference] = (byte) offset;
425 data[reference++] = (byte) (offset >>> 24);
426 data[referenc
386 resolve( final MethodWriter owner, final int position, final byte[] data) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DAssertionData.java41 * Wrapper class for possible data that each "assertion" and "assertion parameter content" policy source model node may
44 * This data, when stored in an 'assertion' model node, is intended to be used as input parameter when creating
64 * Constructs assertion data wrapper instance for an assertion that does not
78 * Constructs assertion data wrapper instance for an assertion parameter that
92 * Constructs assertion data wrapper instance for an assertion that does
110 * Constructs assertion data wrapper instance for an assertion parameter that
126 * Constructs assertion data wrapper instance for an assertion or assertion parameter that contains a value or
127 * some attributes. Whether the data wrapper is constructed for assertion or assertion parameter node is distinguished by
133 * @param type specifies whether the data will belong to the assertion or assertion parameter node. This is
167 * @param data Th
169 AssertionData(final AssertionData data) argument
[all...]
H A DModelNode.java149 private ModelNode(Type type, PolicySourceModel parentModel, AssertionData data) { argument
152 this.nodeData = data;
155 private ModelNode(PolicySourceModel parentModel, PolicyReferenceData data) { argument
158 this.referenceData = data;
231 * @param nodeData The policy assertion data.
262 * @param nodeData The assertion parameter data.
278 * @param referenceData The PolicyReference data.
352 * Returns the data for this policy source model node (if any). The model node data are expected to be not {@code null} only in
355 * @return the data o
[all...]
H A DPolicyModelTranslator.java447 private PolicyAssertion createPolicyAssertion(final AssertionData data, final Collection<PolicyAssertion> assertionParameters, final AssertionSet nestedAlternative) throws AssertionCreationException { argument
448 final String assertionNamespace = data.getName().getNamespaceURI();
453 return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
455 return domainSpecificPAC.createAssertion(data, assertionParameters, nestedAlternative, defaultCreator);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamWriterFilter.java79 public void writeCData(String data) throws XMLStreamException { argument
80 writer.writeCData(data);
87 public void writeComment(String data) throws XMLStreamException { argument
88 writer.writeComment(data);
151 public void writeProcessingInstruction(String target, String data) throws XMLStreamException { argument
152 writer.writeProcessingInstruction(target, data);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_UNIXToolkit.c113 /* Copy the data array into a Java structure so we can pass it back. */
114 jbyteArray data = (*env)->NewByteArray(env, (row_stride * height)); local
115 (*env)->SetByteArrayRegion(env, data, 0, (row_stride * height),
122 (*env)->CallVoidMethod(env, this, icon_upcall_method, data,
/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java284 private static native void socketSend(int fd, byte[] data, int offset, int length, argument
H A DDualStackPlainSocketImpl.java243 void socketSendUrgentData(int data) throws IOException { argument
245 sendOOB(nativefd, data);
296 static native void sendOOB(int fd, int data) throws IOException; argument
H A DTwoStacksPlainSocketImpl.java242 native void socketSendUrgentData(int data) throws IOException; argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java147 byte[] data = ras.getDataStorage();
165 printBand(hdc, data, imageOffset,
205 protected native void printBand(long hdc, byte[] data, int offset, argument
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java97 * data retrieved as a stream. On completion these are always closed
113 /* buffer length for printing raw data */
161 /* Closes any stream already retrieved for the data.
173 Object data = null;
176 data = doc.getPrintData();
197 else if (data instanceof InputStream) {
199 ((InputStream)data).close();
203 else if (data instanceof Reader) {
205 ((Reader)data).close();
214 * we will perform the clean up of any data strea
733 printRawData(byte[] data, int count) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSACipher.java50 * more data via calls to update() or doFinal(), we throw an
85 // buffer for the data
274 byte[] data = buffer;
277 return encryptDecrypt(data, bufOfs,
281 return encryptDecrypt(data, bufOfs,
285 return encryptDecrypt(data, bufOfs,
289 return encryptDecrypt(data, bufOfs,
456 * Encrypt/decrypt a data buffer using Microsoft Crypto API with HCRYPTKEY.
457 * It expects and returns ciphertext data in big-endian form.
459 private native static byte[] encryptDecrypt(byte[] data, in argument
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_MidiIn.cpp133 ** data/routines for opening MIDI input (MidiIn) device by separate thread
143 static inline BOOL isInitialized() { return data.threadHandle != NULL; }
147 /* data class */
152 // public data to access from parent class
158 // data to process; (handle == null) is command to thread terminating
161 } static data; member in class:MidiIn_OpenHelper
169 MidiIn_OpenHelper::Data MidiIn_OpenHelper::data; member in class:MidiIn_OpenHelper
197 ::WaitForSingleObject(data.doEvent, INFINITE);
198 if (data.handle == NULL) {
199 // (data
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DDualStackPlainDatagramSocketImpl.c337 /* truncate the data if the packet's length is too small */
345 * data..
402 (JNIEnv *env, jclass clazz, jint fd, jbyteArray data, jint offset, jint length,
437 (*env)->GetByteArrayRegion(env, data, offset, length,
401 Java_java_net_DualStackPlainDatagramSocketImpl_socketSend(JNIEnv *env, jclass clazz, jint fd, jbyteArray data, jint offset, jint length, jobject iaObj, jint port, jboolean connected) argument
H A DDualStackPlainSocketImpl.c448 (JNIEnv *env, jclass clazz, jint fd, jint data) {
450 unsigned char d = (unsigned char) data & 0xff;
452 n = send(fd, (char *)&data, 1, MSG_OOB);
447 Java_java_net_DualStackPlainSocketImpl_sendOOB(JNIEnv *env, jclass clazz, jint fd, jint data) argument
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsSelectorImpl.c222 char data[8]; local
226 n = recv(s, (char*)&data, sizeof(data), MSG_OOB);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Clipboard.cpp361 JNU_ThrowIOException(env, "system clipboard data unavailable");
389 JNU_ThrowIOException(env, "failed to get system clipboard data");
458 LPVOID data = ::GlobalLock(handle); local
459 env->SetByteArrayRegion(bytes, 0, size, (jbyte *)data);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DXObjectInputStream.java111 public int read(byte[] data, int offset, int length) throws IOException { argument
112 return dis.read(data, offset, length);
150 public void readFully(byte[] data) throws IOException { argument
153 public void readFully(byte[] data, int offset, int size) throws IOException { argument
H A DXObjectOutputStream.java228 * Write the data and fields to the specified ObjectOutput stream.
244 public void write(int data) throws IOException { argument
250 * @param b the data to be written
259 * @param b the data to be written
260 * @param off the start offset in the data
268 public void writeBoolean(boolean data) throws IOException { argument
271 public void writeByte(int data) throws IOException { argument
274 public void writeShort(int data) throws IOException { argument
277 public void writeChar(int data) throws IOException { argument
279 public void writeInt(int data) throw argument
280 writeLong(long data) argument
281 writeFloat(float data) argument
282 writeDouble(double data) argument
283 writeBytes(String data) argument
284 writeChars(String data) argument
285 writeUTF(String data) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DSelectorTest.java204 ByteBuffer data; field in class:RemoteEntity
228 // Prepare the data buffer to write out from this entity
231 data = ByteBuffer.allocateDirect(100);
233 data = ByteBuffer.allocate(100);
238 data.put(source.getBytes("8859_1"));
239 data.flip();
308 data.limit(newWriteTarget);
309 int bytesWritten = sc.write(data);
344 // Process channels with data
390 byte[] data
[all...]

Completed in 72 milliseconds

<<21222324252627282930>>