Searched defs:info (Results 201 - 225 of 292) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.cpp909 os::page_info info; local
910 if (os::get_page_info(p, &info)) {
911 if (info.size > 0) {
912 if (info.size > (size_t)os::vm_page_size()) {
917 if (info.lgrp_id == lgrp_id()) {
918 space_stats()->_local_space += info.size;
920 space_stats()->_remote_space += info.size;
922 p += info.size;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp509 FieldAccessInfo info; variable
516 LinkResolver::resolve_field(info, pool, get_index_u2_cpcache(thread, bytecode),
524 TosState state = as_TosState(info.field_type());
537 instanceKlass *klass = instanceKlass::cast(info.klass()->as_klassOop());
544 if (is_put || !info.access_flags().is_final()) {
552 info.klass(),
553 info.field_index(),
554 info.field_offset(),
556 info.access_flags().is_final(),
557 info
677 CallInfo info; local
737 CallInfo info; local
764 CallInfo info; local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp234 CodeEmitInfo* info = visitor.info_at(j); local
236 allocator()->compute_debug_info(info, op->id());
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp398 siginfo_t* info,
410 // JVM_handle_bsd_signal() might be invoked with junk info/ucVoid. To
416 if (os::Bsd::chained_handler(sig, info, ucVoid)) {
442 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
444 info = NULL;
446 assert(sig == info->si_signo, "bad siginfo");
455 if (info != NULL && uc != NULL && thread != NULL) {
471 address addr = (address) info
397 JVM_handle_bsd_signal(int sig, siginfo_t* info, void* ucVoid, int abort_if_unrecognized) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp545 siginfo_t* info,
561 // JVM_handle_linux_signal() might be invoked with junk info/ucVoid. To
567 if (os::Linux::chained_handler(sig, info, ucVoid)) {
598 if (info != NULL && uc != NULL && thread != NULL) {
606 if ((sig == SIGSEGV) && checkSerializePage(thread, (address)info->si_addr)) {
618 if (checkOverflow(uc, pc, (address)info->si_addr, thread, &stub)) {
634 if ((sig == SIGSEGV) && checkPollingPage(pc, (address)info->si_addr, &stub)) {
643 checkVerifyOops(pc, (address)info->si_addr, &stub)) {
655 if ((sig == SIGFPE) && checkFPFault(pc, info->si_code, thread, &stub)) {
660 checkNullPointer(pc, (intptr_t)info
544 JVM_handle_linux_signal(int sig, siginfo_t* info, void* ucVoid, int abort_if_unrecognized) argument
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp312 JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid, argument
321 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
353 } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
362 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
364 info = NULL;
366 assert(sig == info->si_signo, "bad siginfo");
376 if (info != NULL && uc != NULL && thread != NULL) {
396 if (sig == SIGSEGV && info
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp364 JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid, argument
369 if (sig == SIGILL && info->si_addr == (caddr_t)sse_check) {
381 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
414 } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
423 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
425 info = NULL;
427 assert(sig == info->si_signo, "bad siginfo");
436 if (info !
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CodeStubs.hpp55 virtual CodeEmitInfo* info() const { return NULL; } function in class:CodeStub
100 CounterOverflowStub(CodeEmitInfo* info, int bci, LIR_Opr method) : _info(info), _bci(bci), _method(method) { argument
154 RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, bool throw_index_out_of_bounds_exception = false);
156 virtual CodeEmitInfo* info() const { return _info; } function in class:RangeCheckStub
175 DivByZeroStub(CodeEmitInfo* info) argument
176 : _info(info), _offset(-1) {
178 DivByZeroStub(int offset, CodeEmitInfo* info) argument
179 : _info(info), _offset(offset) {
182 virtual CodeEmitInfo* info() cons function in class:DivByZeroStub
200 ImplicitNullCheckStub(int offset, CodeEmitInfo* info) argument
204 virtual CodeEmitInfo* info() const { return _info; } function in class:ImplicitNullCheckStub
226 virtual CodeEmitInfo* info() const { return _info; } function in class:NewInstanceStub
248 virtual CodeEmitInfo* info() const { return _info; } function in class:NewTypeArrayStub
271 virtual CodeEmitInfo* info() const { return _info; } function in class:NewObjectArrayStub
309 virtual CodeEmitInfo* info() const { return _info; } function in class:MonitorEnterStub
384 install(MacroAssembler* masm, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info) argument
418 virtual CodeEmitInfo* info() const { return _info; } function in class:PatchingStub
436 DeoptimizeStub(CodeEmitInfo* info) argument
439 virtual CodeEmitInfo* info() const { return _info; } function in class:DeoptimizeStub
457 SimpleExceptionStub(Runtime1::StubID stub, LIR_Opr obj, CodeEmitInfo* info) argument
466 virtual CodeEmitInfo* info() const { return _info; } function in class:SimpleExceptionStub
484 ArrayStoreExceptionStub(LIR_Opr obj, CodeEmitInfo* info) argument
506 virtual CodeEmitInfo* info() const { return _op->info(); } function in class:ArrayCopyStub
532 G1PreBarrierStub(LIR_Opr addr, LIR_Opr pre_val, LIR_PatchCode patch_code, CodeEmitInfo* info) argument
552 CodeEmitInfo* info() const { return _info; } function in class:G1PreBarrierStub
[all...]
H A Dc1_LIRGenerator.hpp253 LIR_Opr call_runtime(BasicTypeArray* signature, LIRItemList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
254 LIR_Opr call_runtime(BasicTypeArray* signature, LIR_OprList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
257 LIR_Opr call_runtime(Value arg1, address entry, ValueType* result_type, CodeEmitInfo* info);
258 LIR_Opr call_runtime(Value arg1, Value arg2, address entry, ValueType* result_type, CodeEmitInfo* info);
264 void pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val, bool do_load, bool patch, CodeEmitInfo* info);
271 bool do_load, bool patch, CodeEmitInfo* info);
291 void volatile_field_store(LIR_Opr value, LIR_Address* address, CodeEmitInfo* info);
292 void volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info);
303 void arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp, CodeEmitInfo* info = NULL);
309 void jobject2reg_with_patching(LIR_Opr r, ciObject* obj, CodeEmitInfo* info);
364 increment_invocation_counter(CodeEmitInfo *info) argument
369 increment_backedge_counter(CodeEmitInfo* info, int bci) argument
[all...]
/openjdk7/jdk/make/tools/reorder/tools/
H A Dmcount.c192 /*fprintf(stderr, "# mapfile info for %s.\n", fullName);*/
553 Dl_info info; local
560 dladdr(i0, &info);
561 libFileName = info.dli_fname;
565 textOffset = info.dli_fbase;
579 dladdr(i0, &info);
581 info.dli_sname, info.dli_fname);
592 dladdr(i0, &info);
594 info
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DbiasedLocking.cpp113 GrowableArray<MonitorInfo*>* info = thread->cached_monitor_info(); local
114 if (info != NULL) {
115 return info;
118 info = new GrowableArray<MonitorInfo*>();
134 info->append(mon_info);
141 thread->set_cached_monitor_info(info);
142 return info;
H A Ddeoptimization.hpp175 void set_initial_info(intptr_t info) { _initial_info = info; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModelerBase.java116 (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getInput(),
120 error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
126 for (TWSDLExtension extension: info.bindingOperation.getInput().extensions()) {
135 for (TWSDLExtension extension: info.bindingOperation.getOutput().extensions()) {
148 (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getOutput(),
152 error(info.bindingOperation.getOutput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
158 if (info.portTypeOperation.getOutput() == null)
160 return info
727 protected ProcessSOAPOperationInfo info; field in class:WSDLModelerBase
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_PCM.c267 int setStartThresholdNoCommit(AlsaPcmInfo* info, int useThreshold) { argument
278 ret = snd_pcm_sw_params_set_start_threshold(info->handle, info->swParams, threshold);
286 int setStartThreshold(AlsaPcmInfo* info, int useThreshold) { argument
289 if (!setStartThresholdNoCommit(info, useThreshold)) {
294 ret = snd_pcm_sw_params(info->handle, info->swParams);
304 int setHWParams(AlsaPcmInfo* info, argument
314 ret = snd_pcm_hw_params_any(info->handle, info
386 setSWParams(AlsaPcmInfo* info) argument
425 AlsaPcmInfo* info = NULL; local
547 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
615 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
635 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
664 xrun_recovery(AlsaPcmInfo* info, int err) argument
701 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
749 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
798 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
804 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
815 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
839 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
862 estimatePositionFromAvail(AlsaPcmInfo* info, int isSource, INT64 javaBytePos, int availInBytes) argument
880 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_PCM.c267 int setStartThresholdNoCommit(AlsaPcmInfo* info, int useThreshold) { argument
278 ret = snd_pcm_sw_params_set_start_threshold(info->handle, info->swParams, threshold);
286 int setStartThreshold(AlsaPcmInfo* info, int useThreshold) { argument
289 if (!setStartThresholdNoCommit(info, useThreshold)) {
294 ret = snd_pcm_sw_params(info->handle, info->swParams);
304 int setHWParams(AlsaPcmInfo* info, argument
314 ret = snd_pcm_hw_params_any(info->handle, info
386 setSWParams(AlsaPcmInfo* info) argument
425 AlsaPcmInfo* info = NULL; local
547 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
615 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
635 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
664 xrun_recovery(AlsaPcmInfo* info, int err) argument
701 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
749 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
798 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
804 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
815 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
839 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
862 estimatePositionFromAvail(AlsaPcmInfo* info, int isSource, INT64 javaBytePos, int availInBytes) argument
880 AlsaPcmInfo* info = (AlsaPcmInfo*) id; local
[all...]
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c175 CheckFamilyInfo *info = (CheckFamilyInfo*)lParam; local
176 info->isDifferent = wcscmp(lpelfe->elfLogFont.lfFaceName, info->family);
178 /* if (!info->isDifferent) { */
181 /* info->family, */
190 CheckFamilyInfo info; local
197 memset(&info, 0, sizeof(CheckFamilyInfo));
198 info.family = family;
199 info.fullName = fullName;
200 info
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.cpp73 ThreadGraphicsInfo *info = local
75 if (info == NULL) {
76 info = new ThreadGraphicsInfo;
77 ZeroMemory(info, sizeof(ThreadGraphicsInfo));
78 TlsSetValue(threadInfoIndex, (LPVOID)info);
88 ptr_to_jlong(info));
91 HDC oldhDC = info->hDC;
96 (info->wsdo != wsdo) ||
97 (info->wsdoTimeStamp != wsdo->timeStamp) )
105 //(info
185 ThreadGraphicsInfo *info = (ThreadGraphicsInfo*)jlong_to_ptr(tgi); local
233 ThreadGraphicsInfo *info = local
998 ThreadGraphicsInfo *info = GetThreadGraphicsInfo(env, wsdo); local
1004 GDIWinSD_InitDC(JNIEnv *env, GDIWinSDOps *wsdo, ThreadGraphicsInfo *info, jint type, jint *patrop, jobject clip, jobject comp, jint color) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassWriter.java235 protected int write(CPInfo info, ClassOutputStream out) { argument
236 out.writeByte(info.getTag());
237 return info.accept(this, out);
240 public Integer visitClass(CONSTANT_Class_info info, ClassOutputStream out) { argument
241 out.writeShort(info.name_index);
245 public Integer visitDouble(CONSTANT_Double_info info, ClassOutputStream out) { argument
246 out.writeDouble(info.value);
250 public Integer visitFieldref(CONSTANT_Fieldref_info info, ClassOutputStream out) { argument
251 writeRef(info, out);
255 public Integer visitFloat(CONSTANT_Float_info info, ClassOutputStrea argument
260 visitInteger(CONSTANT_Integer_info info, ClassOutputStream out) argument
265 visitInterfaceMethodref(CONSTANT_InterfaceMethodref_info info, ClassOutputStream out) argument
270 visitInvokeDynamic(CONSTANT_InvokeDynamic_info info, ClassOutputStream out) argument
276 visitLong(CONSTANT_Long_info info, ClassOutputStream out) argument
281 visitNameAndType(CONSTANT_NameAndType_info info, ClassOutputStream out) argument
287 visitMethodHandle(CONSTANT_MethodHandle_info info, ClassOutputStream out) argument
293 visitMethodType(CONSTANT_MethodType_info info, ClassOutputStream out) argument
298 visitMethodref(CONSTANT_Methodref_info info, ClassOutputStream out) argument
302 visitString(CONSTANT_String_info info, ClassOutputStream out) argument
307 visitUtf8(CONSTANT_Utf8_info info, ClassOutputStream out) argument
312 writeRef(CPRefInfo info, ClassOutputStream out) argument
433 writeInnerClassesInfo(InnerClasses_attribute.Info info, ClassOutputStream out) argument
611 writeVerificationTypeInfo(verification_type_info info, ClassOutputStream out) argument
[all...]
H A DDependencies.java597 public Void visitClass(CONSTANT_Class_info info, Void p) { argument
599 if (info.getName().startsWith("["))
600 new Signature(info.name_index).getType(constant_pool).accept(this, null);
602 addDependency(info.getBaseName());
609 public Void visitDouble(CONSTANT_Double_info info, Void p) { argument
613 public Void visitFieldref(CONSTANT_Fieldref_info info, Void p) { argument
614 return visitRef(info, p);
617 public Void visitFloat(CONSTANT_Float_info info, Void p) { argument
621 public Void visitInteger(CONSTANT_Integer_info info, Void p) { argument
625 public Void visitInterfaceMethodref(CONSTANT_InterfaceMethodref_info info, Voi argument
629 visitInvokeDynamic(CONSTANT_InvokeDynamic_info info, Void p) argument
633 visitLong(CONSTANT_Long_info info, Void p) argument
637 visitMethodHandle(CONSTANT_MethodHandle_info info, Void p) argument
641 visitMethodType(CONSTANT_MethodType_info info, Void p) argument
645 visitMethodref(CONSTANT_Methodref_info info, Void p) argument
649 visitNameAndType(CONSTANT_NameAndType_info info, Void p) argument
658 visitString(CONSTANT_String_info info, Void p) argument
662 visitUtf8(CONSTANT_Utf8_info info, Void p) argument
666 visitRef(CPRefInfo info, Void p) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DJavapTask.java801 public void write(ClassFileInfo info) { argument
804 classWriter.setFile(info.fo.toUri());
805 classWriter.setLastModified(info.fo.getLastModified());
806 classWriter.setDigest("MD5", info.digest);
807 classWriter.setFileSize(info.size);
810 classWriter.write(info.cf);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_site.c116 SiteInfo *info; local
118 info = (SiteInfo*)table_get_info(gdata->site_table, index);
119 return info;
136 SiteInfo *info; local
138 info = (SiteInfo *)info_ptr;
139 n_alloced_instances = info->n_alloced_instances;
140 n_alloced_bytes = info->n_alloced_bytes;
141 n_live_instances = info->n_live_instances;
142 n_live_bytes = info->n_live_bytes;
173 SiteInfo *info; local
186 SiteInfo *info; local
337 SiteInfo *info; local
420 SiteInfo *info; local
444 SiteInfo *info; local
[all...]
H A Dhprof_trace.c107 TraceInfo * info; local
109 info = (TraceInfo*)table_get_info(gdata->trace_table, index);
110 return info;
117 TraceInfo * info; local
143 info = get_info(index);
144 info->serial_num = gdata->trace_serial_number_counter++;
152 TraceInfo *info; local
160 info = (TraceInfo *)info_ptr;
164 info->serial_num,
172 info
184 TraceInfo *info; local
248 TraceInfo *info; local
336 TraceInfo *info; local
351 TraceInfo *info; local
428 TraceInfo *info; local
440 TraceInfo *info; local
664 TraceInfo *info; local
711 TraceInfo *info; local
737 TraceInfo *info; local
803 TraceInfo *info; local
[all...]
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c155 jvmtiThreadInfo info; local
159 (void)memset(&info,0, sizeof(info));
165 error = (*jvmti)->GetThreadInfo(jvmti, thread, &info);
166 check_jvmti_error(jvmti, error, "Cannot get thread info");
169 if ( info.name != NULL ) {
173 len = (int)strlen(info.name);
175 (void)strcpy(tname, info.name);
179 deallocate(jvmti, (void*)info.name);
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DDirectAudioDevice.c318 void handleGainAndConversion(DAUDIO_Info* info, UINT8* input, UINT8* output, argument
327 int inIsSigned = info->isSigned;
328 int inIsBigEndian = info->isBigEndian;
337 if (info->frameSize <= 0) {
338 ERROR1("DirectAudiODevice: invalid framesize=%d\n", info->frameSize);
341 len /= info->frameSize;
345 (int) info->channels, (int) info->sampleSizeInBits, (int) info->frameSize);
347 (int) inIsSigned, (int) info
501 DAUDIO_Info* info = NULL; local
539 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
555 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
571 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
596 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
665 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
696 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
714 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
731 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
748 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
766 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
782 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
798 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
813 DAUDIO_Info* info = (DAUDIO_Info*) (UINT_PTR) id; local
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java91 * errors can be displayed in a gui viewer. For info on command line args,
427 * Utility class providing easy access to position and other info for a tree node.
636 scroll(body, getMinPos(enclPanel.info, selfPanel.info));
651 private void addHighlight(Highlighter h, Info info, Color c) { argument
652 int start = info.start;
653 int end = info.end;
661 h.addHighlight(info.start, info.end,
663 if (info
732 setInfo(Info info) argument
751 Info info; field in class:CheckAttributedTree.Viewer.InfoPanel
[all...]

Completed in 527 milliseconds

1234567891011>>