Searched defs:new_string (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/instrument/
H A DEncodingSupport.c94 convertUtf8ToModifiedUtf8(char *string, int length, char *new_string, int new_length) argument
109 new_string[j++] = (char)0xC0;
110 new_string[j++] = (char)0x80;
113 new_string[j++] = byte1;
116 new_string[j++] = byte1;
117 new_string[j++] = string[++i];
119 new_string[j++] = byte1;
120 new_string[j++] = string[++i];
121 new_string[j++] = string[++i];
136 new_string[
[all...]
/openjdk7/jdk/src/share/back/
H A DinStream.c385 char *new_string; local
387 new_string = jvmtiAllocate(new_length+1);
390 (jbyte*)new_string, new_length);
392 return new_string;
H A DoutStream.c318 char *new_string; local
320 new_string = jvmtiAllocate(new_length+1);
323 (jbyte*)new_string, new_length);
325 error = writeBytes(stream, (jbyte *)new_string, new_length);
326 jvmtiDeallocate(new_string);

Completed in 67 milliseconds