Searched defs:numBytes (Results 26 - 46 of 46) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DAddress.java86 public long getCIntegerAt (long offset, long numBytes, boolean isUnsigned) argument
118 /** Sets a C integer numBytes in size at the specified offset. Note
122 public void setCIntegerAt(long offset, long numBytes, long value); argument
H A DDebuggerBase.java70 public Page fetchPage(long pageBaseAddress, long numBytes) { argument
76 ReadResult res = readBytesFromProcess(pageBaseAddress, numBytes);
78 return new Page(pageBaseAddress, numBytes);
214 protected final byte[] readBytes(long address, long numBytes) argument
217 return cache.getData(address, numBytes);
219 ReadResult res = readBytesFromProcess(address, numBytes);
228 protected final void writeBytes(long address, long numBytes, byte[] data) argument
231 cache.clear(address, numBytes);
233 writeBytesToProcess(address, numBytes, data);
346 public long readCInteger(long address, long numBytes, boolea argument
444 writeCInteger(long address, long numBytes, long value) argument
508 invalidatePageCache(long startAddress, long numBytes) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
129 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DBsdDebuggerLocal.java95 private native byte[] readBytesFromProcess0(long address, long numBytes) argument
479 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
484 if (numBytes == 8) {
487 utils.checkAlignment(address, numBytes);
489 byte[] data = readBytes(address, numBytes);
566 long numBytes) throws UnmappedAddressException, DebuggerException {
569 byte[] res = readBytesFromProcess0(address, numBytes);
573 long address, numBytes;
576 byte[] res = debugger.readBytesFromProcess0(address, numBytes);
586 task.numBytes
565 readBytesFromProcess(long address, long numBytes) argument
592 writeBytesToProcess(long address, long numBytes, byte[] data) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyAddress.java71 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
129 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DDummyDebugger.java124 public ReadResult readBytesFromProcess(long address, long numBytes) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
129 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DLinuxDebuggerLocal.java93 private native byte[] readBytesFromProcess0(long address, long numBytes) argument
472 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
477 if (numBytes == 8) {
480 utils.checkAlignment(address, numBytes);
482 byte[] data = readBytes(address, numBytes);
559 long numBytes) throws UnmappedAddressException, DebuggerException {
562 byte[] res = readBytesFromProcess0(address, numBytes);
566 long address, numBytes;
569 byte[] res = debugger.readBytesFromProcess0(address, numBytes);
579 task.numBytes
558 readBytesFromProcess(long address, long numBytes) argument
585 writeBytesToProcess(long address, long numBytes, byte[] data) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
125 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DProcDebuggerLocal.java322 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
326 utils.checkAlignment(address, numBytes);
331 if (numBytes == 8) {
334 utils.checkAlignment(address, numBytes);
337 byte[] data = readBytes(address, numBytes);
366 public void writeBytesToProcess(long address, long numBytes, byte[] data) argument
371 writeBytesToProcess0(address, numBytes, data);
374 public synchronized ReadResult readBytesFromProcess(long address, long numBytes) argument
377 byte[] res = readBytesFromProcess0(address, numBytes);
645 private native byte[] readBytesFromProcess0(long address, long numBytes) throw argument
646 writeBytesToProcess0(long address, long numBytes, byte[] data) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
124 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DRemoteDebuggerServer.java69 public ReadResult readBytesFromProcess(long address, long numBytes) throws RemoteException { argument
70 return debugger.readBytesFromProcess(address, numBytes);
H A DRemoteDebuggerClient.java237 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
240 utils.checkAlignment(address, numBytes);
245 if (numBytes == 8) {
248 utils.checkAlignment(address, numBytes);
251 byte[] data = readBytes(address, numBytes);
396 public ReadResult readBytesFromProcess(long address, long numBytes) { argument
398 return remoteDebugger.readBytesFromProcess(address, numBytes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
128 public void setCIntegerAt(long offset, long numBytes, long value) { argument
H A DWindbgDebuggerLocal.java482 public synchronized ReadResult readBytesFromProcess(long address, long numBytes) argument
485 byte[] res = readBytesFromProcess0(address, numBytes);
503 public void writeBytesToProcess(long address, long numBytes, byte[] data) argument
685 private native byte[] readBytesFromProcess0(long address, long numBytes) argument
/openjdk7/hotspot/agent/src/os/win32/windbg/
H A Dsawindbg.cpp794 (JNIEnv *env, jobject obj, jlong address, jlong numBytes) {
795 jbyteArray byteArray = env->NewByteArray((long) numBytes);
808 (ULONG)numBytes, &bytesRead) != S_OK) {
812 if (bytesRead != numBytes) {
793 Java_sun_jvm_hotspot_debugger_windbg_WindbgDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject obj, jlong address, jlong numBytes) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream_1_0.java2197 char[] getConvertedChars(int numBytes, argument
2205 if (bbwi.buflen - bbwi.position() >= numBytes) {
2222 char[] result = converter.getChars(tmpBuf,bbwi.position(),numBytes);
2224 bbwi.position(bbwi.position() + numBytes);
2230 byte[] bytes = new byte[numBytes];
2233 return converter.getChars(bytes, 0, numBytes);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp1076 (JNIEnv *env, jobject this_obj, jlong address, jlong numBytes) {
1078 jbyteArray array = env->NewByteArray(numBytes);
1086 (psaddr_t)address, bufPtr, (size_t)numBytes);
1117 jlong bytesToRead = MIN2(numBytes, usedSize - diff);
1148 (JNIEnv *env, jobject this_obj, jlong address, jlong numBytes, jbyteArray data) {
1154 if (ps_pwrite((struct ps_prochandle*) p_ps_prochandle, address, ptr, numBytes) != PS_OK) {
1075 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong address, jlong numBytes) argument
1147 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_writeBytesToProcess0(JNIEnv *env, jobject this_obj, jlong address, jlong numBytes, jbyteArray data) argument
/openjdk7/jdk/src/share/back/
H A Dutil.c1787 jvmtiAllocate(jint numBytes) argument
1791 if ( numBytes == 0 ) {
1795 (gdata->jvmti, numBytes, (unsigned char**)&ptr);
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c1830 size_t numBytes; local
2037 numBytes = pixelLimit - in;
2038 if (numBytes > data->pixelBuf.byteBufferLength) {
2039 numBytes = data->pixelBuf.byteBufferLength;
2041 memcpy(out, in, numBytes);
2044 numBytes = numBands;
2047 numBytes <= data->pixelBuf.byteBufferLength;
2052 numBytes += numBands;
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c167 unsigned long numBytes)
174 if (numBytes == 0) return 0;
177 if (numBytes > FILEDATACACHESIZE) {
178 bBuffer = (*env)->NewDirectByteBuffer(env, destBuffer, numBytes);
190 bBuffer, offset, numBytes);
206 offset, numBytes);
208 0, numBytes, (jbyte*)destBuffer);
209 return numBytes;
214 offset + numBytes)
218 memcpy(destBuffer, scalerInfo->fontData+(size_t)cacheOffset, numBytes);
164 ReadTTFontFileFunc(FT_Stream stream, unsigned long offset, unsigned char* destBuffer, unsigned long numBytes) argument
[all...]

Completed in 89 milliseconds

12