Searched defs:theChars (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c119 char* theChars; local
130 theChars = (char*)malloc(len+1);
132 memcpy(theChars, parent, parentEnd);
134 memcpy(theChars+parentEnd, child, cn);
135 theChars[len] = '\0';
137 theChars = (char*)malloc(len+2);
139 memcpy(theChars, parent, parentEnd);
140 theChars[parentEnd] = slash;
142 memcpy(theChars+parentEnd+1, child, cn);
143 theChars[le
[all...]
/openjdk7/jdk/src/windows/instrument/
H A DFileSystemSupport_md.c225 char* theChars; local
263 theChars = (char*)malloc(len+1);
264 memcpy(theChars, parent, parentEnd);
265 memcpy(theChars+parentEnd, child+childStart, (cn-childStart));
266 theChars[len] = '\0';
268 theChars = (char*)malloc(len+2);
269 memcpy(theChars, parent, parentEnd);
270 theChars[parentEnd] = slash;
271 memcpy(theChars+parentEnd+1, child+childStart, (cn-childStart));
272 theChars[le
[all...]

Completed in 29 milliseconds