Lines Matching defs:info

122 // for timer info max values which include all bits
582 processor_info_t info;
583 if (processor_info(next, &info) == 0) {
585 if (info.pi_state == P_ONLINE || info.pi_state == P_NOINTR) {
840 Dl_serinfo _info, *info = &_info;
847 if (dlinfo(RTLD_SELF, RTLD_DI_SERINFOSIZE, (void *)info) == -1) {
852 info = (Dl_serinfo*)malloc(_info.dls_size);
853 if (info == NULL) {
855 "init_system_properties_values info");
857 info->dls_size = _info.dls_size;
858 info->dls_cnt = _info.dls_cnt;
861 if (dlinfo(RTLD_SELF, RTLD_DI_SERINFO, (void *)info) == -1) {
862 free(info);
866 path = &info->dls_serpath[0];
895 free(info);
904 bufsize = info->dls_size + strlen(common_path);
907 free(info);
921 if (info->dls_cnt == 0) { // Not sure this can happen, but allow for it
925 for (i = 0; i < info->dls_cnt; i++, path++) {
948 free(info);
1090 // Store info on the Solaris thread into the OSThread
1347 // Store info on the Solaris thread into the OSThread
1979 Elf64_Sym * info;
1981 Elf32_Sym * info;
1983 if (dladdr1_func((void *)addr, &dlinfo, (void **)&info,
1985 if ((char *)dlinfo.dli_saddr + info->st_size > (char *)addr) {
3044 bool os::get_page_info(char *start, page_info* info) {
3054 info->size = 0;
3055 info->lgrp_id = -1;
3059 info->lgrp_id = outdata[0];
3062 info->size = outdata[1];
3070 // the one described in the info parameter is encountered.
4624 void signalHandler(int sig, siginfo_t* info, void* ucVoid) {
4625 JVM_handle_solaris_signal(sig, info, ucVoid, true);
4633 extern "C" void sigINTRHandler(int sig, siginfo_t* info, void* ucVoid) {