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

/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.winnt.c172 char *fullkey = NULL; local
180 fullkey = (char *)MemAlloc(sizeof(RES_BUNDLE_NAME) + strlen(lc) + strlen(key
184 strcpy(fullkey, RES_BUNDLE_NAME);
187 strcat(fullkey, "_");
188 strcat(fullkey, lc);
190 strcat(fullkey, "_");
191 strcat(fullkey, key);
192 if ((sym = (message_t)GetProcAddress(NULL, fullkey)) == NULL)
214 free(fullkey);
215 fullkey
[all...]
H A Djava_md.unix.c197 char *fullkey = NULL; local
204 fullkey = (char *)MemAlloc(sizeof(RES_BUNDLE_NAME) + strlen(lc) + strlen(key) + 3);
207 strcpy(fullkey, RES_BUNDLE_NAME);
210 strcat(fullkey, "_");
211 strcat(fullkey, lc);
213 strcat(fullkey, "_");
214 strcat(fullkey, key);
215 if ((sym = (message_t)dlsym(dlopen(NULL, RTLD_NOW + RTLD_GLOBAL), fullkey)) == NULL)
237 free(fullkey);
238 fullkey
[all...]

Completed in 13 milliseconds