Searched refs:tmpPtr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c1872 char *tmpPtr; local
1908 tmpPtr = line + strcspn(line, whiteSpace);
1909 if (*tmpPtr == 0) {
1914 *tmpPtr++ = 0;
1915 tmpPtr += strspn(tmpPtr, whiteSpace);
1916 if (*tmpPtr == 0) {
1920 if (!strncmp(tmpPtr, "KNOWN", strlen("KNOWN"))) {
1922 } else if (!strncmp(tmpPtr, "ALIASED_TO", strlen("ALIASED_TO"))) {
1923 tmpPtr
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c1586 char *tmpPtr; local
1615 tmpPtr = line + JLI_StrCSpn(line, whiteSpace);
1616 if (*tmpPtr == 0) {
1620 *tmpPtr++ = 0;
1621 tmpPtr += JLI_StrSpn(tmpPtr, whiteSpace);
1622 if (*tmpPtr == 0) {
1625 if (!JLI_StrCCmp(tmpPtr, "KNOWN")) {
1627 } else if (!JLI_StrCCmp(tmpPtr, "ALIASED_TO")) {
1628 tmpPtr
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp381 void* tmpPtr = 0; local
382 tmpPtr = dlsym(libthread_db_handle, "td_init");
383 if (tmpPtr == 0) {
386 env->SetLongField(this_obj, p_td_init_ID, (jlong)(uintptr_t) tmpPtr);
388 tmpPtr =dlsym(libthread_db_handle, "td_ta_new");
389 if (tmpPtr == 0) {
392 env->SetLongField(this_obj, p_td_ta_new_ID, (jlong)(uintptr_t) tmpPtr);
394 tmpPtr = dlsym(libthread_db_handle, "td_ta_delete");
395 if (tmpPtr == 0) {
398 env->SetLongField(this_obj, p_td_ta_delete_ID, (jlong)(uintptr_t) tmpPtr);
[all...]

Completed in 42 milliseconds