To: eliz AT is DOT elta DOT co DOT il Cc: djgpp AT delorie DOT com References: <2 DOT 7 DOT 9 DOT 191MP DOT H3U9EW AT pauzner DOT dnttm DOT ru> <6480-Sat12Oct2002112321+0200-eliz AT is DOT elta DOT co DOT il> Message-Id: <2.7.9.GKAP.H3VJYA@pauzner.dnttm.ru> From: "Leonid Pauzner" Date: Sat, 12 Oct 2002 19:20:34 +0400 (MSD) X-Mailer: dMail [Demos Mail for DOS v2.7.9] Subject: Re: profiling with DJGPP MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com 12-Oct-2002 11:23 Eli Zaretskii wrote: >> From: "Leonid Pauzner" >> >> 4) I was unable to link my program with profiled libc version > You don't need to do that. Just pull the sources of the functions you > want to profile from the library, put them into your program, and > rebuild with -pg. Waw! Thanks for a hint! getenv.o ctime.o gettimeofday.o putenv.o were linked, see below. >> I am curious about the profile (attached below) I get from my program: >> a lot of time spent in getenv, days_to_years, timesub etc. > It's impossible to tell anything specific without seeing your > program, or at least having a vague idea about what it does. The program is a lynx text browser runned on djgppfaq.htm (~800Kb)... [ It calls gettimeofday(&tv, (struct timezone *)0) several times, seems tcp library (watt-32) also uses gettimeofday havily - have not checked the sources yet. ] > In general, time functions _are_ heavy, since the computations are > non-trivial and require iterations in some cases. You shoulod try to > avoid calling time functions in inner loops of your program. That is about clock()/CLOCKS_PER_SECOND - is it portable across UNIXes and shows correct number of seconds in true multitasking environment? clock() seems to be not a heavy function compared to gettimeofday(). >> Looking the libc sources (djlsr203.zip) I got an impression that >> 1) getenv implemented ineffectively - no hashing > How many environment variables do you have on your system? Unless you > have many thousands, I think hashing will not improve things in any > significant manner. I have ~70 environment variables, including ones from djgpp.env file. Just indexing by the first letter of the environment variable name may speeds up getenv by the factor of 10. >> 2) getenv heavily used by timer functions for timezone info >> (TZ, TZDIR, etc. - seems things are stored in static >> variables but probably not in all places?) > Only once: the time functions cache the values of environment > variables. If your program changes the environment a lot (by calling > putenv or setenv, for example), then caching could be ineffective, > since each time the environment changes, time functions must see if > some of their variables changed as well, and take note. This is so > that setting TZ to a different value is correctly handled. No! The profile shows - each tzset force calling tzsetwall (TZ variable is not set in my environment). No putenv calls found in the profile, aside from crt0_load_environment_file on startup. ----------------------------------------------- 0.06 1.50 119341/119341 localsub [13] [20] 5.3 0.06 1.50 119341 __tzset [20] 1.44 0.00 119341/119394 getenv [21] 0.06 0.00 119341/119341 tzsetwall [77] ----------------------------------------------- I attach a nearly complete profile since numbers may be informative, sorry, 100Kb. Flat profile: Each sample counts as 0.0555556 seconds. % cumulative self self total time seconds seconds calls s/call s/call name 11.37 3.56 3.56 6107 0.00 0.00 HTAnchor_findChild 10.83 6.94 3.39 13284 0.00 0.00 split_line 8.35 9.56 2.61 634316 0.00 0.00 HTML_put_character 6.75 11.67 2.11 top1 5.68 13.44 1.78 mcount 5.33 15.11 1.67 5008606 0.00 0.00 HTIdentical 5.15 16.72 1.61 __dpmi_int 4.62 18.17 1.44 119394 0.00 0.00 getenv 3.73 19.33 1.17 _doprnt 3.55 20.44 1.11 620254 0.00 0.00 HText_appendCharacter 3.37 21.50 1.06 check_WrapSource 3.37 22.56 1.06 putc 2.31 23.28 0.72 119341 0.00 0.00 days_to_years 2.13 23.94 0.67 821570 0.00 0.00 SGML_character 1.95 24.56 0.61 119341 0.00 0.00 timesub 1.87 25.14 0.58 after_switch 1.60 25.64 0.50 237682 0.00 0.00 strcasecomp 1.60 26.14 0.50 3425 0.00 0.00 LYUCFullyTranslateString 0.98 26.44 0.31 S_comment_put_c 0.89 26.72 0.28 __dpmi_simulate_real_mode_interrupt 0.89 27.00 0.28 malloc 0.71 27.22 0.22 107046 0.00 0.00 HTChunkPutc 0.71 27.44 0.22 free 0.71 27.67 0.22 memset 0.53 27.83 0.17 115830 0.00 0.00 tmcomp 0.53 28.00 0.17 69137 0.00 0.00 HTSACopy 0.53 28.17 0.17 34184 0.00 0.00 scan 0.53 28.33 0.17 22846 0.00 0.00 SGMLFindTag 0.53 28.50 0.17 14144 0.00 0.00 start_element 0.53 28.67 0.17 3510 0.00 0.00 time2 0.36 28.78 0.11 623324 0.00 0.00 HText_setLastChar 0.36 28.89 0.11 119341 0.00 0.00 localsub 0.36 29.00 0.11 32092 0.00 0.00 HTChunkTerminate 0.36 29.11 0.11 17092 0.00 0.00 HTParse 0.36 29.22 0.11 12316 0.00 0.00 set_style_by_embedded_chars 0.36 29.33 0.11 8385 0.00 0.00 HText_TrueLineSize 0.36 29.44 0.11 7204 0.00 0.00 HTList_addObject 0.36 29.56 0.11 201 0.00 0.00 SGML_write 0.36 29.67 0.11 __bb_exit_func 0.36 29.78 0.11 _int86 0.36 29.89 0.11 fgets 0.36 30.00 0.11 top0a 0.18 30.06 0.06 119341 0.00 0.00 __tzset 0.18 30.11 0.06 119341 0.00 0.00 tzsetwall 0.18 30.17 0.06 46553 0.00 0.00 strncasecomp 0.18 30.22 0.06 14144 0.00 0.00 HTML_start_element 0.18 30.28 0.06 13227 0.00 0.00 HTML_end_element 0.18 30.33 0.06 10717 0.00 0.00 LYCheckForID 0.18 30.39 0.06 8689 0.00 0.00 end_element 0.18 30.44 0.06 6066 0.00 0.00 convert_to_spaces 0.18 30.50 0.06 3420 0.00 0.00 HText_beginAnchor 0.18 30.56 0.06 3420 0.00 0.00 HText_endAnchor 0.18 30.61 0.06 3186 0.00 0.00 HTAnchor_address 0.18 30.67 0.06 3173 0.00 0.00 is_url 0.18 30.72 0.06 3171 0.00 0.00 LYFillLocalFileURL 0.18 30.78 0.06 3169 0.00 0.00 HASH_FUNCTION 0.18 30.83 0.06 4 0.01 0.01 safeUCGetLYhndl_byMIME 0.18 30.89 0.06 __dj_movedata 0.18 30.94 0.06 __dosmemput 0.18 31.00 0.06 __dpmi_yield 0.18 31.06 0.06 fprintf 0.18 31.11 0.06 localeconv 0.18 31.17 0.06 select_s 0.18 31.22 0.06 strchr 0.18 31.28 0.06 strncpy 0.00 31.28 0.00 99068 0.00 0.00 HText_getLastChar 0.00 31.28 0.00 64679 0.00 0.00 HTChunkPutUtf8Char 0.00 31.28 0.00 36953 0.00 0.00 compare_type 0.00 31.28 0.00 26568 0.00 0.00 LY_check_calloc 0.00 31.28 0.00 26568 0.00 0.00 mem_is_avail 0.00 31.28 0.00 18520 0.00 0.00 element_valid_within 0.00 31.28 0.00 10530 0.00 0.00 normalize 0.00 31.28 0.00 10360 0.00 0.00 LYGetHiTextStr 0.00 31.28 0.00 9035 0.00 0.00 LYSkipBlanks 0.00 31.28 0.00 8859 0.00 0.00 is_on_stack 0.00 31.28 0.00 8690 0.00 0.00 HText_LastLineSize 0.00 31.28 0.00 8224 0.00 0.00 HTSACat 0.00 31.28 0.00 7322 0.00 0.00 LYTrimTrailing 0.00 31.28 0.00 7144 0.00 0.00 HTAtom_for 0.00 31.28 0.00 6600 0.00 0.00 LYTrimHead 0.00 31.28 0.00 5479 0.00 0.00 blank_lines 0.00 31.28 0.00 4556 0.00 0.00 can_close 0.00 31.28 0.00 4547 0.00 0.00 do_close_stacked 0.00 31.28 0.00 4488 0.00 0.00 HText_appendParagraph 0.00 31.28 0.00 4105 0.00 0.00 handle_attribute_name 0.00 31.28 0.00 4103 0.00 0.00 handle_attribute_value 0.00 31.28 0.00 3807 0.00 0.00 LYoverride_default_alignment 0.00 31.28 0.00 3786 0.00 0.00 LYHandlePlike 0.00 31.28 0.00 3623 0.00 0.00 SNACopy 0.00 31.28 0.00 3623 0.00 0.00 remove_special_attr_chars 0.00 31.28 0.00 3510 0.00 0.00 mktime 0.00 31.28 0.00 3510 0.00 0.00 time1 0.00 31.28 0.00 3510 0.00 0.00 tmnormalize 0.00 31.28 0.00 3506 0.00 0.00 __gettimeofday 0.00 31.28 0.00 3486 0.00 0.00 next_anchor 0.00 31.28 0.00 3438 0.00 0.00 HTAnchor_followMainLink 0.00 31.28 0.00 3428 0.00 0.00 LYTrimTail 0.00 31.28 0.00 3427 0.00 0.00 HTChildAnchor_new 0.00 31.28 0.00 3425 0.00 0.00 LYUCTranslateHTMLString 0.00 31.28 0.00 3425 0.00 0.00 UCCanTranslateFromTo 0.00 31.28 0.00 3425 0.00 0.00 UCNeedNotTranslate 0.00 31.28 0.00 3420 0.00 0.00 HTAnchor_findChildAndLink 0.00 31.28 0.00 3420 0.00 0.00 HText_endAnchor0 0.00 31.28 0.00 3420 0.00 0.00 LYSetHiText 0.00 31.28 0.00 3420 0.00 0.00 add_link_number 0.00 31.28 0.00 3172 0.00 0.00 LYTrimStartfile 0.00 31.28 0.00 3169 0.00 0.00 HTAnchor_findAddress 0.00 31.28 0.00 3169 0.00 0.00 LYLegitimizeHREF 0.00 31.28 0.00 3169 0.00 0.00 LYRemoveNewlines 0.00 31.28 0.00 3169 0.00 0.00 LYTrimLeading 0.00 31.28 0.00 3168 0.00 0.00 HTAnchor_link 0.00 31.28 0.00 2682 0.00 0.00 LYisLocalFile 0.00 31.28 0.00 2644 0.00 0.00 LYSafeGets 0.00 31.28 0.00 2057 0.00 0.00 con_insert_unipair_str 0.00 31.28 0.00 1985 0.00 0.00 LYEnsureSingleSpace 0.00 31.28 0.00 1257 0.00 0.00 conv_uni_to_pc 0.00 31.28 0.00 1051 0.00 0.00 HTMLGetEntityUCValue 0.00 31.28 0.00 1051 0.00 0.00 handle_entity 0.00 31.28 0.00 1051 0.00 0.00 put_special_unicodes 0.00 31.28 0.00 991 0.00 0.00 HText_setStyle 0.00 31.28 0.00 991 0.00 0.00 actually_set_style 0.00 31.28 0.00 990 0.00 0.00 change_paragraph_style 0.00 31.28 0.00 883 0.00 0.00 LYwaddnstr 0.00 31.28 0.00 805 0.00 0.00 con_insert_unipair 0.00 31.28 0.00 528 0.00 0.00 HTList_new 0.00 31.28 0.00 480 0.00 0.00 get_color_pair 0.00 31.28 0.00 428 0.00 0.00 StrAllocVsprintf 0.00 31.28 0.00 413 0.00 0.00 HTParentAnchor_new 0.00 31.28 0.00 408 0.00 0.00 lynx_set_color 0.00 31.28 0.00 402 0.00 0.00 sprint_bytes 0.00 31.28 0.00 325 0.00 0.00 LYindex2MBM 0.00 31.28 0.00 235 0.00 0.00 LYmove 0.00 31.28 0.00 232 0.00 0.00 HTAlloc 0.00 31.28 0.00 230 0.00 0.00 LYclrtoeol 0.00 31.28 0.00 227 0.00 0.00 HTSprintf0 0.00 31.28 0.00 224 0.00 0.00 UCTransUniChar 0.00 31.28 0.00 218 0.00 0.00 LYstrncpy 0.00 31.28 0.00 209 0.00 0.00 HText_PreviousLineSize 0.00 31.28 0.00 208 0.00 0.00 LYrefresh 0.00 31.28 0.00 206 0.00 0.00 HText_RemovePreviousLine 0.00 31.28 0.00 204 0.00 0.00 lynx_start_status_color 0.00 31.28 0.00 204 0.00 0.00 lynx_stop_status_color 0.00 31.28 0.00 204 0.00 0.00 statusline 0.00 31.28 0.00 203 0.00 0.00 LYAddHiText 0.00 31.28 0.00 202 0.00 0.00 HTReadProgress 0.00 31.28 0.00 201 0.00 0.00 DontCheck 0.00 31.28 0.00 201 0.00 0.00 HTCheckForInterrupt 0.00 31.28 0.00 201 0.00 0.00 HTSprintf 0.00 31.28 0.00 201 0.00 0.00 LYHaveCmdScript 0.00 31.28 0.00 200 0.00 0.00 HTDisplayPartial 0.00 31.28 0.00 200 0.00 0.00 LYGetNewline 0.00 31.28 0.00 171 0.00 0.00 HText_inLineOne 0.00 31.28 0.00 137 0.00 0.00 HTSetSuffix5 0.00 31.28 0.00 117 0.00 0.00 HText_NegateLineOne 0.00 31.28 0.00 114 0.00 0.00 Stbl_finishCellInTable 0.00 31.28 0.00 111 0.00 0.00 update_sumcols0 0.00 31.28 0.00 90 0.00 0.00 HText_LastLineOffset 0.00 31.28 0.00 78 0.00 0.00 lookup_config 0.00 31.28 0.00 72 0.00 0.00 HTList_objectAt 0.00 31.28 0.00 71 0.00 0.00 LYsetWAttr 0.00 31.28 0.00 66 0.00 0.00 Stbl_finishCellInRow 0.00 31.28 0.00 60 0.00 0.00 LYsubAttr 0.00 31.28 0.00 60 0.00 0.00 LYsubWAttr 0.00 31.28 0.00 51 0.00 0.00 Stbl_getFixupPositions 0.00 31.28 0.00 51 0.00 0.00 free_rowinfo 0.00 31.28 0.00 50 0.00 0.00 HTStyleNamed 0.00 31.28 0.00 50 0.00 0.00 HTStyleNew 0.00 31.28 0.00 45 0.00 0.00 HText_endStblTD 0.00 31.28 0.00 45 0.00 0.00 HText_startStblTD 0.00 31.28 0.00 45 0.00 0.00 Stbl_addCellToRow 0.00 31.28 0.00 45 0.00 0.00 Stbl_addCellToTable 0.00 31.28 0.00 45 0.00 0.00 move_anchors_in_region 0.00 31.28 0.00 42 0.00 0.00 get_fixup_positions 0.00 31.28 0.00 38 0.00 0.00 UC_Charset_Setup 0.00 31.28 0.00 38 0.00 0.00 UC_FindGN_byMIME 0.00 31.28 0.00 38 0.00 0.00 UC_Register_with_LYCharSets 0.00 31.28 0.00 36 0.00 0.00 UC_setup_LYCharSets_repl 0.00 31.28 0.00 34 0.00 0.00 HTSetConversion 0.00 31.28 0.00 27 0.00 0.00 LYLowercaseA_OL_String 0.00 31.28 0.00 24 0.00 0.00 Stbl_finishRowInTable 0.00 31.28 0.00 24 0.00 0.00 html_src_parse_tagspec 0.00 31.28 0.00 23 0.00 0.00 display_line 0.00 31.28 0.00 23 0.00 0.00 lookup_config 0.00 31.28 0.00 22 0.00 0.00 HTRegisterProtocol 0.00 31.28 0.00 21 0.00 0.00 HText_endStblTR 0.00 31.28 0.00 21 0.00 0.00 HText_startStblTR 0.00 31.28 0.00 21 0.00 0.00 LYEnsureDoubleSpace 0.00 31.28 0.00 21 0.00 0.00 Stbl_addRowToTable 0.00 31.28 0.00 21 0.00 0.00 insert_blanks_in_line 0.00 31.28 0.00 18 0.00 0.00 LYSetHilite 0.00 31.28 0.00 16 0.00 0.00 LYIsUIPage3 0.00 31.28 0.00 15 0.00 0.00 HTAnchor_getUCInfoStage 0.00 31.28 0.00 14 0.00 0.00 HTAnchor_getUCLYhndl 0.00 31.28 0.00 14 0.00 0.00 append_close_tag 0.00 31.28 0.00 14 0.00 0.00 html_src_tag_index 0.00 31.28 0.00 12 0.00 0.00 LYGetEnv 0.00 31.28 0.00 11 0.00 0.00 LYSetConfigValue 0.00 31.28 0.00 11 0.00 0.00 LYaddAttr 0.00 31.28 0.00 11 0.00 0.00 LYaddWAttr 0.00 31.28 0.00 10 0.00 0.00 __putenv 0.00 31.28 0.00 9 0.00 0.00 UCGetLYhndl_byMIME 0.00 31.28 0.00 8 0.00 0.00 HTAnchor_title 0.00 31.28 0.00 8 0.00 0.00 HTChunkInit 0.00 31.28 0.00 8 0.00 0.00 LYgetEnum 0.00 31.28 0.00 8 0.00 0.00 getBool 0.00 31.28 0.00 8 0.00 0.00 lynx_map_color 0.00 31.28 0.00 7 0.00 0.00 HTList_count 0.00 31.28 0.00 7 0.00 0.00 UC_Charset_NoUctb_Setup 0.00 31.28 0.00 7 0.00 0.00 UC_NoUctb_Register_with_LYCharSets 0.00 31.28 0.00 7 0.00 0.00 append_open_tag 0.00 31.28 0.00 6 0.00 0.00 LYstrsep 0.00 31.28 0.00 6 0.00 0.00 conv_uni_to_str 0.00 31.28 0.00 5 0.00 0.00 HTSimplify 0.00 31.28 0.00 5 0.00 0.00 Home_Dir 0.00 31.28 0.00 5 0.00 0.00 LYAddPathToHome 0.00 31.28 0.00 4 0.00 0.00 HTAnchor_physical 0.00 31.28 0.00 4 0.00 0.00 HTAnchor_setUCInfoStage 0.00 31.28 0.00 4 0.00 0.00 HText_getTitle 0.00 31.28 0.00 4 0.00 0.00 HText_hasToolbar 0.00 31.28 0.00 4 0.00 0.00 LYCloseInput 0.00 31.28 0.00 4 0.00 0.00 LYGetHiliteStr 0.00 31.28 0.00 4 0.00 0.00 copy_plus 0.00 31.28 0.00 4 0.00 0.00 set_inverse_transl 0.00 31.28 0.00 3 0.00 0.00 Current_Dir 0.00 31.28 0.00 3 0.00 0.00 HTChunkClear 0.00 31.28 0.00 3 0.00 0.00 HTEscapeUnsafe 0.00 31.28 0.00 3 0.00 0.00 HTFindPresentation 0.00 31.28 0.00 3 0.00 0.00 HTStat 0.00 31.28 0.00 3 0.00 0.00 HText_cancelStbl 0.00 31.28 0.00 3 0.00 0.00 HText_endStblTABLE 0.00 31.28 0.00 3 0.00 0.00 HText_insertBlanksInStblLines 0.00 31.28 0.00 3 0.00 0.00 HText_startStblTABLE 0.00 31.28 0.00 3 0.00 0.00 LYCanReadFile 0.00 31.28 0.00 3 0.00 0.00 LYConfigCookies 0.00 31.28 0.00 3 0.00 0.00 LYEscapeStartfile 0.00 31.28 0.00 3 0.00 0.00 LYHandleMETA 0.00 31.28 0.00 3 0.00 0.00 LYLastPathSep 0.00 31.28 0.00 3 0.00 0.00 LYisAbsPath 0.00 31.28 0.00 3 0.00 0.00 LYscreenWidth 0.00 31.28 0.00 3 0.00 0.00 Stbl_finishTABLE 0.00 31.28 0.00 3 0.00 0.00 Stbl_free 0.00 31.28 0.00 3 0.00 0.00 Stbl_getAlignment 0.00 31.28 0.00 3 0.00 0.00 Stbl_getStartLine 0.00 31.28 0.00 3 0.00 0.00 Stbl_startTABLE 0.00 31.28 0.00 3 0.00 0.00 UCCanUniTranslateFrom 0.00 31.28 0.00 3 0.00 0.00 UCSetTransParams 0.00 31.28 0.00 3 0.00 0.00 UCTransUniCharStr 0.00 31.28 0.00 3 0.00 0.00 change_chartrans_handling 0.00 31.28 0.00 3 0.00 0.00 cookie_domain_flag_set 0.00 31.28 0.00 3 0.00 0.00 ena_csi 0.00 31.28 0.00 3 0.00 0.00 tildeExpand 0.00 31.28 0.00 2 0.00 0.00 HTAddGotoURL 0.00 31.28 0.00 2 0.00 0.00 HTAnchor_isIndex 0.00 31.28 0.00 2 0.00 0.00 HTCompressFileType 0.00 31.28 0.00 2 0.00 0.00 HTDOS_name 0.00 31.28 0.00 2 0.00 0.00 HTDOS_slashes 0.00 31.28 0.00 2 0.00 0.00 HTDOS_wwwName 0.00 31.28 0.00 2 0.00 0.00 HTHostName 0.00 31.28 0.00 2 0.00 0.00 HTList_delete 0.00 31.28 0.00 2 0.00 0.00 HTList_removeObject 0.00 31.28 0.00 2 0.00 0.00 HTLoadExtensionsConfigFile 0.00 31.28 0.00 2 0.00 0.00 HTLoadTypesConfigFile 0.00 31.28 0.00 2 0.00 0.00 HTLoadedDocumentURL 0.00 31.28 0.00 2 0.00 0.01 HTMLSetCharacterHandling 0.00 31.28 0.00 2 0.00 0.00 HTReorderPresentation 0.00 31.28 0.00 2 0.00 0.00 HTUnEscape 0.00 31.28 0.00 2 0.00 0.00 HText_getNumOfLines 0.00 31.28 0.00 2 0.00 0.00 HText_pageDisplay 0.00 31.28 0.00 2 0.00 0.00 HText_setKcode 0.00 31.28 0.00 2 0.00 0.00 HText_trimHightext 0.00 31.28 0.00 2 0.00 0.00 LYAddHtmlSep 0.00 31.28 0.00 2 0.00 0.00 LYCleanupTemp 0.00 31.28 0.00 2 0.00 0.00 LYCloseCloset 0.00 31.28 0.00 2 0.00 0.00 LYCloseTracelog 0.00 31.28 0.00 2 0.00 0.00 LYConvertToURL 0.00 31.28 0.00 2 0.00 0.00 LYEnsureAbsoluteURL 0.00 31.28 0.00 2 0.00 0.00 LYGetChartransInfo 0.00 31.28 0.00 2 0.00 0.00 LYLowerCase 0.00 31.28 0.00 2 0.00 0.00 LYOpenCFG 0.00 31.28 0.00 2 0.00 0.00 LYReadCmdKey 0.00 31.28 0.00 2 0.00 0.00 LYWriteCmdKey 0.00 31.28 0.00 2 0.00 0.00 LYgetXDisplay 0.00 31.28 0.00 2 0.00 0.00 LYgetch_for 0.00 31.28 0.00 2 0.00 0.00 ProcessMailcapFile 0.00 31.28 0.00 2 0.00 0.00 UCTransParams_clear 0.00 31.28 0.00 2 0.00 0.00 UC_con_set_unimap_str 0.00 31.28 0.00 2 0.00 0.00 actual_filename 0.00 31.28 0.00 2 0.00 0.00 cleanup_files 0.00 31.28 0.00 2 0.00 0.00 con_clear_unimap 0.00 31.28 0.00 2 0.00 0.00 con_clear_unimap_str 0.00 31.28 0.00 2 0.00 0.00 display_page 0.00 31.28 0.00 2 0.00 0.00 display_title 0.00 31.28 0.00 2 0.00 0.00 get_host_details 0.00 31.28 0.00 2 0.00 0.00 is_true 0.00 31.28 0.00 2 0.00 0.00 lynx_nl2crlf 0.00 31.28 0.00 2 0.00 0.00 lynx_start_title_color 0.00 31.28 0.00 2 0.00 0.00 lynx_stop_title_color 0.00 31.28 0.00 2 0.00 0.00 parse_arg 0.00 31.28 0.00 2 0.00 0.00 tzload 0.00 31.28 0.00 2 0.00 0.00 user_message 0.00 31.28 0.00 2 0.00 0.00 whichRecall 0.00 31.28 0.00 2 0.00 0.00 wwwName 0.00 31.28 0.00 1 0.00 0.00 CacheThru_new 0.00 31.28 0.00 1 0.00 0.00 CheckDir 0.00 31.28 0.00 1 0.00 0.00 DefaultStyle 0.00 31.28 0.00 1 0.00 0.00 HTAA_clearProtections 0.00 31.28 0.00 1 0.00 0.00 HTAccessInit 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_copyUCInfoStage 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_document 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_owner 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_parent 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_protocol 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_setDocument 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_setPhysical 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_setProtocol 0.00 31.28 0.00 1 0.00 0.00 HTAnchor_setTitle 0.00 31.28 0.00 1 0.00 0.00 HTCharsetFormat 0.00 31.28 0.00 1 0.00 0.00 HTChunkCreate 0.00 31.28 0.00 1 0.00 0.00 HTChunkFree 0.00 31.28 0.00 1 0.00 0.00 HTConfirmDefault 0.00 31.28 0.00 1 0.00 0.00 HTEditable 0.00 31.28 0.00 1 0.00 1.15 HTFileCopy 0.00 31.28 0.00 1 0.00 0.00 HTFileFormat 0.00 31.28 0.00 1 0.00 0.00 HTFileInit 0.00 31.28 0.00 1 0.00 0.00 HTFilterPresentations 0.00 31.28 0.00 1 0.00 0.00 HTFinishDisplayPartial 0.00 31.28 0.00 1 0.00 0.00 HTFormatInit 0.00 31.28 0.00 1 0.00 0.00 HTList_appendObject 0.00 31.28 0.00 1 0.00 1.15 HTLoad 0.00 31.28 0.00 1 0.00 1.15 HTLoadAbsolute 0.00 31.28 0.00 1 0.00 1.15 HTLoadDocument 0.00 31.28 0.00 1 0.00 1.15 HTLoadFile 0.00 31.28 0.00 1 0.00 0.00 HTLoadedDocumentIsHEAD 0.00 31.28 0.00 1 0.00 0.00 HTLoadedDocumentIsSafe 0.00 31.28 0.00 1 0.00 0.00 HTLoadedDocumentPost_data 0.00 31.28 0.00 1 0.00 0.00 HTMLPresent 0.00 31.28 0.00 1 0.00 0.00 HTMLSRC_init_caches 0.00 31.28 0.00 1 0.00 0.00 HTMLSetDisplayCharsetMatchLocale 0.00 31.28 0.00 1 0.00 0.00 HTMLSetHaveCJKCharacterSet 0.00 31.28 0.00 1 0.00 0.00 HTMLSetRawModeDefault 0.00 31.28 0.00 1 0.00 0.01 HTMLUseCharacterSet 0.00 31.28 0.00 1 0.00 0.00 HTML_free 0.00 31.28 0.00 1 0.00 0.00 HTML_new 0.00 31.28 0.00 1 0.00 1.15 HTParseFile 0.00 31.28 0.00 1 0.00 0.00 HTStreamStack 0.00 31.28 0.00 1 0.00 0.00 HTStyleSheetNew 0.00 31.28 0.00 1 0.00 0.00 HTSwitchDTD 0.00 31.28 0.00 1 0.00 0.00 HTTranslate 0.00 31.28 0.00 1 0.00 0.00 HTdocument_settings_changed 0.00 31.28 0.00 1 0.00 0.00 HText_beginAppend 0.00 31.28 0.00 1 0.00 0.00 HText_canScrollDown 0.00 31.28 0.00 1 0.00 0.00 HText_endAppend 0.00 31.28 0.00 1 0.00 0.00 HText_getChartransInfo 0.00 31.28 0.00 1 0.00 0.00 HText_getOwner 0.00 31.28 0.00 1 0.00 0.00 HText_getTopOfScreen 0.00 31.28 0.00 1 0.00 0.00 HText_new 0.00 31.28 0.00 1 0.00 0.00 HText_new2 0.00 31.28 0.00 1 0.00 0.00 HText_sourceAnchors 0.00 31.28 0.00 1 0.00 0.00 HTisDocumentSource 0.00 31.28 0.00 1 0.00 0.00 HTnameOfFile_WWW 0.00 31.28 0.00 1 0.00 0.00 HomeEnv 0.00 31.28 0.00 1 0.00 0.00 LYAddPathSep 0.00 31.28 0.00 1 0.00 0.00 LYAddVisitedLink 0.00 31.28 0.00 1 0.00 0.00 LYCharSetsDeclared 0.00 31.28 0.00 1 0.00 0.00 LYCheckForContentBase 0.00 31.28 0.00 1 0.00 0.00 LYCheckUserAgent 0.00 31.28 0.00 1 0.00 0.00 LYCloseCmdLogfile 0.00 31.28 0.00 1 0.00 0.00 LYCompleteExit 0.00 31.28 0.00 1 0.00 0.00 LYEditmapDeclared 0.00 31.28 0.00 1 0.00 0.00 LYFakeZap 0.00 31.28 0.00 1 0.00 0.00 LYFixCursesOnForAccess 0.00 31.28 0.00 1 0.00 0.00 LYLoadCookies 0.00 31.28 0.00 1 0.00 0.00 LYMainLoop_pageDisplay 0.00 31.28 0.00 1 0.00 0.00 LYMoveToLink 0.00 31.28 0.00 1 0.00 0.00 LYOpenTraceLog 0.00 31.28 0.00 1 0.00 0.00 LYPathLeaf 0.00 31.28 0.00 1 0.00 0.00 LYPathOffHomeOK 0.00 31.28 0.00 1 0.00 0.00 LYRegisterLynxProtocols 0.00 31.28 0.00 1 0.00 0.00 LYStoreCookies 0.00 31.28 0.00 1 0.00 0.00 LYTrimRelFromAbsPath 0.00 31.28 0.00 1 0.00 0.00 LYUCPopAssumed 0.00 31.28 0.00 1 0.00 0.00 LYZero_OL_Counter 0.00 31.28 0.00 1 0.00 0.00 LY_get_ctrl_break 0.00 31.28 0.00 1 0.00 0.00 LY_set_ctrl_break 0.00 31.28 0.00 1 0.00 0.00 LYatexit 0.00 31.28 0.00 1 0.00 0.00 LYexit 0.00 31.28 0.00 1 0.00 0.00 LYformTitle 0.00 31.28 0.00 1 0.00 0.00 LYgetch 0.00 31.28 0.00 1 0.00 0.00 LYgetch_single 0.00 31.28 0.00 1 0.00 0.00 LYhighlight 0.00 31.28 0.00 1 0.00 0.00 LYmbcsstrlen 0.00 31.28 0.00 1 0.00 0.00 LYscreenHeight 0.00 31.28 0.00 1 0.00 0.00 SGML_free 0.00 31.28 0.00 1 0.00 0.00 SGML_new 0.00 31.28 0.00 1 0.00 0.00 UCCanTranslateUniTo 0.00 31.28 0.00 1 0.00 0.00 UCGetLYhndl_byAnyName 0.00 31.28 0.00 1 0.00 0.00 UCInit 0.00 31.28 0.00 1 0.00 0.00 UC_con_set_unimap 0.00 31.28 0.00 1 0.00 0.00 UC_valid_UC_charset 0.00 31.28 0.00 1 0.00 0.00 UCconsole_map_init 0.00 31.28 0.00 1 0.00 0.00 UCreset_allocated_LYCharSets 0.00 31.28 0.00 1 0.00 0.00 are_different 0.00 31.28 0.00 1 0.00 0.00 argncmp 0.00 31.28 0.00 1 0.00 0.00 asctime 0.00 31.28 0.00 1 0.00 0.01 assume_charset_fun 0.00 31.28 0.00 1 0.00 0.00 cleanup 0.00 31.28 0.00 1 0.00 0.00 clear_objectdata 0.00 31.28 0.00 1 0.00 0.00 con_set_default_unimap 0.00 31.28 0.00 1 0.00 0.00 copy_address 0.00 31.28 0.00 1 0.00 0.00 ctime 0.00 31.28 0.00 1 0.00 0.01 do_read_cfg 0.00 31.28 0.00 1 0.00 0.00 dumbterm 0.00 31.28 0.00 1 0.00 0.00 get_display_charset 0.00 31.28 0.00 1 0.00 0.00 get_editor 0.00 31.28 0.00 1 0.00 0.00 get_physical 0.00 31.28 0.00 1 0.00 0.00 get_styles 0.00 31.28 0.00 1 0.00 0.00 getfile 0.00 31.28 0.00 1 0.00 0.00 gmtload 0.00 31.28 0.00 1 0.00 0.00 handle_LYK_QUIT 0.00 31.28 0.00 1 0.00 0.00 inlocaldomain 0.00 31.28 0.00 1 0.00 0.00 localtime 0.00 31.28 0.00 1 0.00 0.00 lynx_enable_mouse 0.00 31.28 0.00 1 0.00 0.00 lynx_init_colors 0.00 31.28 0.00 1 0.00 0.00 lynx_setup_colors 0.00 31.28 0.00 1 0.00 0.00 lynx_start_link_color 0.00 31.28 0.00 1 0.00 0.00 lynx_stop_all_colors 0.00 31.28 0.00 1 0.00 0.00 lynx_stop_link_color 0.00 31.28 0.00 1 0.00 0.05 main 0.00 31.28 0.00 1 0.00 0.00 mainloop 0.00 31.28 0.00 1 0.00 0.00 move_to_glyph 0.00 31.28 0.00 1 0.00 0.00 override_proxy 0.00 31.28 0.00 1 0.00 0.01 read_cfg 0.00 31.28 0.00 1 0.00 0.00 read_rc 0.00 31.28 0.00 1 0.00 0.00 reset_break 0.00 31.28 0.00 1 0.00 0.00 set_address 0.00 31.28 0.00 1 0.00 0.00 set_chartrans_handling 0.00 31.28 0.00 1 0.00 0.00 set_default_bookmark_page 0.00 31.28 0.00 1 0.00 0.00 set_numbers_as_arrows 0.00 31.28 0.00 1 0.00 0.00 settzname 0.00 31.28 0.00 1 0.00 0.00 setup 0.00 31.28 0.00 1 0.00 0.00 show_main_statusline 0.00 31.28 0.00 1 0.00 0.00 start_curses 0.00 31.28 0.00 1 0.00 0.00 status_link 0.00 31.28 0.00 1 0.00 0.00 stop_curses 0.00 31.28 0.00 1 0.00 0.00 turn_trace_back_on 0.00 31.28 0.00 1 0.00 0.00 tzdir 0.00 31.28 0.00 1 0.00 0.00 tzparse % the percentage of the total running time of the time program used by this function. cumulative a running sum of the number of seconds accounted seconds for by this function and those listed above it. self the number of seconds accounted for by this seconds function alone. This is the major sort for this listing. calls the number of times this function was invoked, if this function is profiled, else blank. self the average number of milliseconds spent in this ms/call function per call, if this function is profiled, else blank. total the average number of milliseconds spent in this ms/call function and its descendents per call, if this function is profiled, else blank. name the name of the function. This is the minor sort for this listing. The index shows the location of the function in the gprof listing. If the index is in parenthesis it shows where it would appear in the gprof listing if it were to be printed. Call graph (explanation follows) granularity: each sample hit covers 4 byte(s) for 0.19% of 29.50 seconds index % time self children called name ... ----------------------------------------------- 0.00 0.00 4/3510 _file_time_stamp [109] 0.00 3.24 3506/3510 __gettimeofday [12] [9] 11.0 0.00 3.24 3510 mktime [9] 0.00 3.24 3510/3510 time1 [10] ----------------------------------------------- 0.00 3.24 3510/3510 mktime [9] [10] 11.0 0.00 3.24 3510 time1 [10] 0.17 3.08 3510/3510 time2 [11] ----------------------------------------------- 0.17 3.08 3510/3510 time1 [10] [11] 11.0 0.17 3.08 3510 time2 [11] 0.11 2.80 115830/119341 localsub [13] 0.17 0.00 115830/115830 tmcomp [61] 0.00 0.00 3510/3510 tmnormalize [239] ----------------------------------------------- 0.00 0.00 2/3506 time [114] 0.00 0.19 201/3506 DontCheck [57] 0.00 0.19 202/3506 HTReadProgress [56] 0.00 2.87 3101/3506 select_s [14] [12] 11.0 0.00 3.24 3506 __gettimeofday [12] 0.00 3.24 3506/3510 mktime [9] ----------------------------------------------- 0.00 0.00 1/119341 localtime [172] 0.00 0.08 3510/119341 label [72] 0.11 2.80 115830/119341 time2 [11] [13] 10.2 0.11 2.89 119341 localsub [13] 0.06 1.50 119341/119341 __tzset [20] 0.61 0.72 119341/119341 timesub [22] ----------------------------------------------- [14] 9.9 0.06 2.87 select_s [14] 0.00 2.87 3101/3506 __gettimeofday [12] ----------------------------------------------- [15] 9.1 1.06 1.64 check_WrapSource [15] 1.57 0.05 6158/13284 split_line [8] 0.00 0.01 6158/7144 HTAtom_for [98] ----------------------------------------------- 2687 HTAnchor_findAddress [16] 0.00 0.00 1/3169 HTLoadAbsolute [26] 0.00 2.65 3168/3169 HTAnchor_findChildAndLink [5] [16] 9.0 0.00 2.65 3169+2687 HTAnchor_findAddress [16] 1.56 0.76 2687/6107 HTAnchor_findChild [6] 0.06 0.20 8543/17092 HTParse [39] 0.06 0.00 3169/3169 HASH_FUNCTION [83] 0.01 0.00 19363/5008606 HTIdentical [18] 0.01 0.00 413/7204 HTList_addObject [67] 0.00 0.00 413/69137 HTSACopy [60] 0.00 0.00 413/413 HTParentAnchor_new [261] 0.00 0.00 99/528 HTList_new [258] 2687 HTAnchor_findAddress [16] ----------------------------------------------- 0.00 0.00 36/620254 LYEnsureDoubleSpace [140] 0.00 0.00 1030/620254 LYEnsureSingleSpace [97] 0.01 0.00 3967/620254 HTML_end_element [45] 0.01 0.01 5057/620254 HTML_start_element [3] 1.09 0.68 610164/620254 HTML_put_character [7] [17] 6.1 1.11 0.69 620254 HText_appendCharacter [17] 0.67 0.02 2619/13284 split_line [8] ----------------------------------------------- 0.01 0.00 19363/5008606 HTAnchor_findAddress [16] 1.66 0.00 4989243/5008606 HTAnchor_findChild [6] [18] 5.6 1.67 0.00 5008606 HTIdentical [18] ----------------------------------------------- [19] 5.5 1.61 0.00 __dpmi_int [19] ----------------------------------------------- 0.06 1.50 119341/119341 localsub [13] [20] 5.3 0.06 1.50 119341 __tzset [20] 1.44 0.00 119341/119394 getenv [21] 0.06 0.00 119341/119341 tzsetwall [77] ----------------------------------------------- 0.00 0.00 1/119394 pkt_eth_init [190] 0.00 0.00 1/119394 tcp_config [191] 0.00 0.00 1/119394 PDC_get_columns [187] 0.00 0.00 1/119394 override_proxy [159] 0.00 0.00 1/119394 __crt0_setup_arguments [188] 0.00 0.00 1/119394 _npxsetup [189] 0.00 0.00 2/119394 PDC_get_rows [175] 0.00 0.00 2/119394 tzdir [174] 0.00 0.00 3/119394 PDC_scr_open [166] 0.00 0.00 7/119394 _use_lfn [157] 0.00 0.00 8/119394 _preserve_fncase [155] 0.00 0.00 12/119394 LYGetEnv [153] 0.00 0.00 13/119394 __crt0_load_environment_file [151] 1.44 0.00 119341/119394 __tzset [20] [21] 4.9 1.44 0.00 119394 getenv [21] ----------------------------------------------- 0.61 0.72 119341/119341 localsub [13] [22] 4.5 0.61 0.72 119341 timesub [22] 0.72 0.00 119341/119341 days_to_years [36] ----------------------------------------------- 0.00 0.23 991/5479 HText_setStyle [52] 0.00 1.04 4488/5479 HText_appendParagraph [33] [23] 4.3 0.00 1.27 5479 blank_lines [23] 1.15 0.04 4506/13284 split_line [8] 0.05 0.00 3727/8385 HText_TrueLineSize [71] 0.00 0.04 5479/8690 HText_LastLineSize [75] ----------------------------------------------- [24] 4.0 1.17 0.00 _doprnt [24] ----------------------------------------------- [25] 3.9 0.00 1.15 Try_Redirected_URL [25] 0.00 1.15 1/1 HTLoadAbsolute [26] 0.00 0.00 1/3173 is_url [50] 0.00 0.00 2/17092 HTParse [39] 0.00 0.00 1/2 user_message [178] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 2/46553 strncasecomp [78] 0.00 0.00 2/2 HTLoadedDocumentURL [358] 0.00 0.00 1/1 HTLoadedDocumentPost_data [402] 0.00 0.00 1/1 HTLoadedDocumentIsHEAD [400] ----------------------------------------------- 0.00 1.15 1/1 Try_Redirected_URL [25] [26] 3.9 0.00 1.15 1 HTLoadAbsolute [26] 0.00 1.15 1/1 HTLoadDocument [28] 0.00 0.00 1/3169 HTAnchor_findAddress [16] 0.00 0.00 1/7144 HTAtom_for [98] 0.00 0.00 1/1 HTAnchor_parent [392] ----------------------------------------------- 0.00 1.15 1/1 HTLoadDocument [28] [27] 3.9 0.00 1.15 1 HTLoad [27] 0.00 1.15 1/1 HTLoadFile [29] 0.00 0.00 1/1 get_physical [127] 0.00 0.00 2/4 HTAnchor_physical [320] 0.00 0.00 1/1 LYUCPopAssumed [429] 0.00 0.00 1/1 LYFixCursesOnForAccess [422] 0.00 0.00 1/1 HTAnchor_protocol [393] ----------------------------------------------- 0.00 1.15 1/1 HTLoadAbsolute [26] [28] 3.9 0.00 1.15 1 HTLoadDocument [28] 0.00 1.15 1/1 HTLoad [27] 0.00 0.00 1/4 HTAnchor_physical [320] 0.00 0.00 1/1 HTAnchor_document [390] ----------------------------------------------- 0.00 1.15 1/1 HTLoad [27] [29] 3.9 0.00 1.15 1 HTLoadFile [29] 0.00 1.15 1/1 HTParseFile [30] 0.00 0.00 1/1 HTnameOfFile_WWW [154] 0.00 0.00 3/17092 HTParse [39] 0.00 0.00 2/2 HTCompressFileType [199] 0.00 0.00 2/7144 HTAtom_for [98] 0.00 0.00 1/1 HTFileFormat [206] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 1/1 HTCharsetFormat [211] 0.00 0.00 1/237682 strcasecomp [42] 0.00 0.00 1/2 HTUnEscape [359] 0.00 0.00 1/3 HTStat [332] 0.00 0.00 1/1 HTEditable [398] ----------------------------------------------- 0.00 1.15 1/1 HTLoadFile [29] [30] 3.9 0.00 1.15 1 HTParseFile [30] 0.00 1.15 1/1 HTFileCopy [31] 0.00 0.00 1/1 SGML_free [145] 0.00 0.00 1/1 HTStreamStack [161] ----------------------------------------------- 0.00 1.15 1/1 HTParseFile [30] [31] 3.9 0.00 1.15 1 HTFileCopy [31] 0.11 0.67 201/201 SGML_write [35] 0.00 0.19 202/202 HTReadProgress [56] 0.00 0.19 201/201 HTCheckForInterrupt [58] 0.00 0.00 200/200 HTDisplayPartial [148] 0.00 0.00 1/1 HTFinishDisplayPartial [399] ----------------------------------------------- [32] 3.6 1.06 0.00 putc [32] ----------------------------------------------- 0.00 0.41 1754/4488 LYHandlePlike [44] 0.00 0.64 2734/4488 HTML_start_element [3] [33] 3.5 0.00 1.04 4488 HText_appendParagraph [33] 0.00 1.04 4488/5479 blank_lines [23] ----------------------------------------------- 0.00 0.79 3169/3169 HTML_start_element [3] [34] 2.7 0.00 0.79 3169 LYLegitimizeHREF [34] 0.00 0.46 3169/3425 LYUCTranslateHTMLString [41] 0.06 0.21 3169/3173 is_url [50] 0.05 0.00 5856/6066 convert_to_spaces [80] 0.00 0.01 3169/3172 LYTrimStartfile [106] 0.01 0.00 2687/69137 HTSACopy [60] 0.00 0.00 3169/3169 LYRemoveNewlines [249] 0.00 0.00 3169/3169 LYTrimLeading [250] 0.00 0.00 3169/7322 LYTrimTrailing [233] 0.00 0.00 2687/8224 HTSACat [232] ----------------------------------------------- 0.11 0.67 201/201 HTFileCopy [31] [35] 2.6 0.11 0.67 201 SGML_write [35] 0.67 0.00 821570/821570 SGML_character [37] ----------------------------------------------- 0.72 0.00 119341/119341 timesub [22] [36] 2.4 0.72 0.00 119341 days_to_years [36] ----------------------------------------------- 0.67 0.00 821570/821570 SGML_write [35] [37] 2.3 0.67 0.00 821570 SGML_character [37] ----------------------------------------------- [38] 2.0 0.58 0.00 after_switch [38] ----------------------------------------------- 0.00 0.00 1/17092 get_physical [127] 0.00 0.00 2/17092 try_again [99] 0.00 0.00 2/17092 Try_Redirected_URL [25] 0.00 0.00 2/17092 override_proxy [159] 0.00 0.00 3/17092 HTLoadFile [29] 0.00 0.00 3/17092 HTnameOfFile_WWW [154] 0.00 0.00 4/17092 LYEnsureAbsoluteURL [134] 0.02 0.07 3168/17092 HTAnchor_findChildAndLink [5] 0.03 0.13 5364/17092 LYisLocalFile [62] 0.06 0.20 8543/17092 HTAnchor_findAddress [16] [39] 1.7 0.11 0.40 17092 HTParse [39] 0.17 0.11 34184/34184 scan [47] 0.12 0.00 51276/69137 HTSACopy [60] 0.00 0.00 501/237682 strcasecomp [42] 0.00 0.00 13/46553 strncasecomp [78] 0.00 0.00 4/5 HTSimplify [319] ----------------------------------------------- 0.50 0.00 3425/3425 LYUCTranslateHTMLString [41] [40] 1.7 0.50 0.00 3425 LYUCFullyTranslateString [40] 0.00 0.00 3425/3425 UCNeedNotTranslate [245] 0.00 0.00 3425/3425 UCCanTranslateFromTo [244] 0.00 0.00 3421/6600 LYTrimHead [234] 0.00 0.00 3421/3428 LYTrimTail [242] ----------------------------------------------- 0.00 0.00 4/3425 LYHandleMETA [123] 0.00 0.04 252/3425 HTML_start_element [3] 0.00 0.46 3169/3425 LYLegitimizeHREF [34] [41] 1.7 0.00 0.50 3425 LYUCTranslateHTMLString [41] 0.50 0.00 3425/3425 LYUCFullyTranslateString [40] ----------------------------------------------- 0.00 0.00 1/237682 HTLoadFile [29] 0.00 0.00 1/237682 override_proxy [159] 0.00 0.00 2/237682 HTFileFormat [206] 0.00 0.00 2/237682 HTnameOfFile_WWW [154] 0.00 0.00 2/237682 get_physical [127] 0.00 0.00 4/237682 HTCompressFileType [199] 0.00 0.00 6/237682 dumbterm [185] 0.00 0.00 6/237682 LYEnsureAbsoluteURL [134] 0.00 0.00 8/237682 LYgetEnum [164] 0.00 0.00 18/237682 LYHandleMETA [123] 0.00 0.00 31/237682 HTFilterPresentations [150] 0.00 0.00 110/237682 HTML_start_element [3] 0.00 0.00 123/237682 lookup_config [147] 0.00 0.00 125/237682 lookup_config [146] 0.00 0.00 184/237682 UCGetLYhndl_byMIME [128] 0.00 0.00 328/237682 read_rc [121] 0.00 0.00 501/237682 HTParse [39] 0.02 0.00 7334/237682 HTAtom_for [98] 0.02 0.00 9412/237682 handle_attribute_name [96] 0.03 0.00 14144/237682 start_element [2] 0.11 0.00 53676/237682 scan [47] 0.32 0.00 151664/237682 SGMLFindTag [43] [42] 1.7 0.50 0.00 237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 14/22846 html_src_tag_index [139] 0.06 0.12 8688/22846 S_comment_put_c [4] 0.10 0.20 14144/22846 top1 [1] [43] 1.6 0.17 0.32 22846 SGMLFindTag [43] 0.32 0.00 151664/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.22 1893/3786 HTML_end_element [45] 0.00 0.22 1893/3786 HTML_start_element [3] [44] 1.5 0.00 0.45 3786 LYHandlePlike [44] 0.00 0.41 1754/4488 HText_appendParagraph [33] 0.00 0.02 107/991 actually_set_style [51] 0.00 0.02 1930/1985 LYEnsureSingleSpace [97] 0.00 0.00 21/21 LYEnsureDoubleSpace [140] 0.00 0.00 3786/3807 LYoverride_default_alignment [236] ----------------------------------------------- 0.02 0.13 4547/13227 do_close_stacked [63] 0.04 0.25 8680/13227 end_element [46] [45] 1.5 0.06 0.38 13227 HTML_end_element [45] 0.00 0.22 1893/3786 LYHandlePlike [44] 0.00 0.09 385/991 actually_set_style [51] 0.06 0.00 3420/3420 HText_endAnchor [82] 0.01 0.00 3967/620254 HText_appendCharacter [17] 0.00 0.00 55/1985 LYEnsureSingleSpace [97] 0.00 0.00 1/32092 HTChunkTerminate [59] 0.00 0.00 1/1 HTAnchor_setTitle [210] 0.00 0.00 492/990 change_paragraph_style [255] 0.00 0.00 36/117 HText_NegateLineOne [279] 0.00 0.00 1/3 HTChunkClear [329] 0.00 0.00 1/4 HText_hasToolbar [323] ----------------------------------------------- 0.00 0.00 1/8689 top1 [1] 0.06 0.29 8688/8689 S_comment_put_c [4] [46] 1.2 0.06 0.29 8689 end_element [46] 0.04 0.25 8680/13227 HTML_end_element [45] 0.00 0.01 170/4547 do_close_stacked [63] 0.00 0.00 8859/8859 is_on_stack [231] 0.00 0.00 178/4556 can_close [235] ----------------------------------------------- 0.17 0.11 34184/34184 HTParse [39] [47] 0.9 0.17 0.11 34184 scan [47] 0.11 0.00 53676/237682 strcasecomp [42] ----------------------------------------------- [48] 0.9 0.28 0.00 __dpmi_simulate_real_mode_interrupt [48] ----------------------------------------------- [49] 0.9 0.28 0.00 malloc [49] ----------------------------------------------- 0.00 0.00 1/3173 Try_Redirected_URL [25] 0.00 0.00 1/3173 LYPathOffHomeOK [156] 0.00 0.00 2/3173 LYEnsureAbsoluteURL [134] 0.06 0.21 3169/3173 LYLegitimizeHREF [34] [50] 0.9 0.06 0.21 3173 is_url [50] 0.00 0.16 2681/2682 LYisLocalFile [62] 0.00 0.04 36953/36953 compare_type [94] 0.00 0.00 3166/9035 LYSkipBlanks [230] ----------------------------------------------- 0.00 0.00 3/991 End_Object [115] 0.00 0.02 107/991 LYHandlePlike [44] 0.00 0.09 385/991 HTML_end_element [45] 0.00 0.12 496/991 HTML_start_element [3] [51] 0.8 0.00 0.23 991 actually_set_style [51] 0.00 0.23 991/991 HText_setStyle [52] 0.00 0.00 1/1 HText_new2 [180] 0.00 0.00 1/2 LYGetChartransInfo [367] 0.00 0.00 1/15 HTAnchor_getUCInfoStage [306] 0.00 0.00 1/14 HTAnchor_getUCLYhndl [307] 0.00 0.00 1/3 UCSetTransParams [345] 0.00 0.00 1/1 HText_beginAppend [408] 0.00 0.00 1/1 LYCheckForContentBase [416] ----------------------------------------------- 0.00 0.23 991/991 actually_set_style [51] [52] 0.8 0.00 0.23 991 HText_setStyle [52] 0.00 0.23 991/5479 blank_lines [23] ----------------------------------------------- 0.00 0.00 19/107046 HTML_put_character [7] 0.07 0.00 32092/107046 HTChunkTerminate [59] 0.07 0.00 36021/107046 top1 [1] 0.08 0.00 38914/107046 S_comment_put_c [4] [53] 0.8 0.22 0.00 107046 HTChunkPutc [53] ----------------------------------------------- [54] 0.8 0.22 0.00 free [54] ----------------------------------------------- [55] 0.8 0.22 0.00 memset [55] ----------------------------------------------- 0.00 0.19 202/202 HTFileCopy [31] [56] 0.6 0.00 0.19 202 HTReadProgress [56] 0.00 0.19 202/3506 __gettimeofday [12] 0.00 0.00 201/204 statusline [113] 0.00 0.00 402/402 sprint_bytes [263] 0.00 0.00 201/227 HTSprintf0 [268] 0.00 0.00 201/201 HTSprintf [275] 0.00 0.00 201/8224 HTSACat [232] ----------------------------------------------- 0.00 0.19 201/201 HTCheckForInterrupt [58] [57] 0.6 0.00 0.19 201 DontCheck [57] 0.00 0.19 201/3506 __gettimeofday [12] 0.00 0.00 201/201 LYHaveCmdScript [276] ----------------------------------------------- 0.00 0.19 201/201 HTFileCopy [31] [58] 0.6 0.00 0.19 201 HTCheckForInterrupt [58] 0.00 0.19 201/201 DontCheck [57] ----------------------------------------------- 0.00 0.00 1/32092 HTML_end_element [45] 0.05 0.03 15195/32092 top1 [1] 0.06 0.04 16896/32092 S_comment_put_c [4] [59] 0.6 0.11 0.07 32092 HTChunkTerminate [59] 0.07 0.00 32092/107046 HTChunkPutc [53] ----------------------------------------------- 0.00 0.00 1/69137 Home_Dir [183] 0.00 0.00 1/69137 copy_address [214] 0.00 0.00 1/69137 LYAddVisitedLink [177] 0.00 0.00 1/69137 LYformTitle [213] 0.00 0.00 1/69137 HTLoadFile [29] 0.00 0.00 1/69137 HTCharsetFormat [211] 0.00 0.00 1/69137 HTnameOfFile_WWW [154] 0.00 0.00 1/69137 HTAnchor_setTitle [210] 0.00 0.00 1/69137 set_address [216] 0.00 0.00 1/69137 Try_Redirected_URL [25] 0.00 0.00 1/69137 HTTranslate [212] 0.00 0.00 1/69137 HTAnchor_setPhysical [209] 0.00 0.00 1/69137 get_physical [127] 0.00 0.00 1/69137 get_host_details [208] 0.00 0.00 1/69137 LYPathOffHomeOK [156] 0.00 0.00 1/69137 assume_charset_fun [103] 0.00 0.00 1/69137 get_editor [215] 0.00 0.00 2/69137 display_title [204] 0.00 0.00 2/69137 initialize [200] 0.00 0.00 2/69137 parse_arg [168] 0.00 0.00 2/69137 LYEnsureAbsoluteURL [134] 0.00 0.00 2/69137 HTAddGotoURL [167] 0.00 0.00 3/69137 LYEscapeStartfile [184] 0.00 0.00 3/69137 cookie_domain_flag_set [202] 0.00 0.00 3/69137 set_default_bookmark_page [203] 0.00 0.00 5/69137 LYAddPathToHome [170] 0.00 0.00 5/69137 LYConvertToURL [193] 0.00 0.00 6/69137 try_again [99] 0.00 0.00 6/69137 LYHandleMETA [123] 0.00 0.00 6/69137 LYSetConfigValue [102] 0.00 0.00 12/69137 HTMLSRC_init_caches [133] 0.00 0.00 34/69137 main [91] 0.00 0.00 58/69137 read_rc [121] 0.00 0.00 203/69137 LYAddHiText [125] 0.00 0.00 271/69137 HTSetSuffix5 [111] 0.00 0.00 413/69137 HTAnchor_findAddress [16] 0.01 0.00 2687/69137 LYLegitimizeHREF [34] 0.01 0.00 3168/69137 HTAnchor_address [73] 0.01 0.00 3421/69137 HTML_start_element [3] 0.01 0.00 3427/69137 HTAnchor_findChild [6] 0.01 0.00 4103/69137 handle_attribute_value [105] 0.12 0.00 51276/69137 HTParse [39] [60] 0.6 0.17 0.00 69137 HTSACopy [60] ----------------------------------------------- 0.17 0.00 115830/115830 time2 [11] [61] 0.6 0.17 0.00 115830 tmcomp [61] ----------------------------------------------- 0.00 0.00 1/2682 try_again [99] 0.00 0.16 2681/2682 is_url [50] [62] 0.5 0.00 0.16 2682 LYisLocalFile [62] 0.03 0.13 5364/17092 HTParse [39] ----------------------------------------------- 0.00 0.01 170/4547 end_element [46] 0.00 0.14 4377/4547 start_element [2] [63] 0.5 0.00 0.15 4547 do_close_stacked [63] 0.02 0.13 4547/13227 HTML_end_element [45] ----------------------------------------------- [64] 0.4 0.11 0.00 __bb_exit_func [64] 0.00 0.00 1/1 ctime [171] ----------------------------------------------- 0.00 0.00 18/623324 LYEnsureDoubleSpace [140] 0.00 0.00 1030/623324 LYEnsureSingleSpace [97] 0.00 0.00 3198/623324 HTML_start_element [3] 0.11 0.00 619078/623324 HTML_put_character [7] [65] 0.4 0.11 0.00 623324 HText_setLastChar [65] ----------------------------------------------- 0.11 0.00 12316/12316 split_line [8] [66] 0.4 0.11 0.00 12316 set_style_by_embedded_chars [66] ----------------------------------------------- 0.00 0.00 1/7204 HTList_appendObject [182] 0.00 0.00 1/7204 HText_new [179] 0.00 0.00 2/7204 HTAddGotoURL [167] 0.00 0.00 2/7204 HTReorderPresentation [169] 0.00 0.00 22/7204 HTRegisterProtocol [131] 0.00 0.00 34/7204 HTSetConversion [124] 0.00 0.00 134/7204 HTSetSuffix5 [111] 0.01 0.00 413/7204 HTAnchor_findAddress [16] 0.05 0.00 3168/7204 HTAnchor_link [93] 0.05 0.00 3427/7204 HTAnchor_findChild [6] [67] 0.4 0.11 0.00 7204 HTList_addObject [67] ----------------------------------------------- [68] 0.4 0.11 0.00 _int86 [68] ----------------------------------------------- [69] 0.4 0.11 0.00 fgets [69] ----------------------------------------------- [70] 0.4 0.11 0.00 top0a [70] ----------------------------------------------- 0.00 0.00 21/8385 HText_insertBlanksInStblLines [142] 0.00 0.00 209/8385 HText_PreviousLineSize [112] 0.05 0.00 3727/8385 blank_lines [23] 0.06 0.00 4428/8385 HText_LastLineSize [75] [71] 0.4 0.11 0.00 8385 HText_TrueLineSize [71] ----------------------------------------------- [72] 0.3 0.00 0.09 label [72] 0.00 0.08 3510/119341 localsub [13] ----------------------------------------------- 0.00 0.00 18/3186 display_page [130] 0.06 0.01 3168/3186 HTAnchor_findChildAndLink [5] [73] 0.2 0.06 0.01 3186 HTAnchor_address [73] 0.01 0.00 3168/69137 HTSACopy [60] 0.00 0.00 18/227 HTSprintf0 [268] ----------------------------------------------- 0.00 0.00 2/3171 main [91] 0.06 0.00 3169/3171 HTML_start_element [3] [74] 0.2 0.06 0.00 3171 LYFillLocalFileURL [74] 0.00 0.00 3171/46553 strncasecomp [78] ----------------------------------------------- 0.00 0.00 21/8690 LYEnsureDoubleSpace [140] 0.00 0.00 21/8690 End_Object [115] 0.00 0.00 45/8690 HText_startStblTD [136] 0.00 0.00 45/8690 HText_endStblTD [135] 0.00 0.01 1094/8690 HTML_start_element [3] 0.00 0.01 1985/8690 LYEnsureSingleSpace [97] 0.00 0.04 5479/8690 blank_lines [23] [75] 0.2 0.00 0.06 8690 HText_LastLineSize [75] 0.06 0.00 4428/8385 HText_TrueLineSize [71] ----------------------------------------------- 0.01 0.00 1/4 main [91] 0.01 0.00 1/4 assume_charset_fun [103] 0.03 0.00 2/4 HTMLSetCharacterHandling [95] [76] 0.2 0.06 0.00 4 safeUCGetLYhndl_byMIME [76] 0.00 0.00 4/9 UCGetLYhndl_byMIME [128] ----------------------------------------------- 0.06 0.00 119341/119341 __tzset [20] [77] 0.2 0.06 0.00 119341 tzsetwall [77] 0.00 0.00 1/2 tzload [173] 0.00 0.00 1/1 gmtload [186] 0.00 0.00 1/1 settzname [466] ----------------------------------------------- 0.00 0.00 2/46553 Try_Redirected_URL [25] 0.00 0.00 2/46553 is_true [217] 0.00 0.00 2/46553 HTMLSetDisplayCharsetMatchLocale [218] 0.00 0.00 3/46553 LYAddVisitedLink [177] 0.00 0.00 7/46553 HTFilterPresentations [150] 0.00 0.00 13/46553 HTParse [39] 0.00 0.00 14/46553 getBool [181] 0.00 0.00 17/46553 LYgetEnum [164] 0.00 0.00 25/46553 read_rc [121] 0.00 0.00 3171/46553 LYFillLocalFileURL [74] 0.01 0.00 6344/46553 LYTrimStartfile [106] 0.04 0.00 36953/46553 compare_type [94] [78] 0.2 0.06 0.00 46553 strncasecomp [78] ----------------------------------------------- 0.06 0.00 10717/10717 HTML_start_element [3] [79] 0.2 0.06 0.00 10717 LYCheckForID [79] ----------------------------------------------- 0.00 0.00 6/6066 LYHandleMETA [123] 0.00 0.00 204/6066 statusline [113] 0.05 0.00 5856/6066 LYLegitimizeHREF [34] [80] 0.2 0.06 0.00 6066 convert_to_spaces [80] ----------------------------------------------- 0.06 0.00 3420/3420 HTML_start_element [3] [81] 0.2 0.06 0.00 3420 HText_beginAnchor [81] 0.00 0.00 3420/3438 HTAnchor_followMainLink [241] 0.00 0.00 3420/3420 add_link_number [248] ----------------------------------------------- 0.06 0.00 3420/3420 HTML_end_element [45] [82] 0.2 0.06 0.00 3420 HText_endAnchor [82] 0.00 0.00 3420/3420 HText_endAnchor0 [246] ----------------------------------------------- 0.06 0.00 3169/3169 HTAnchor_findAddress [16] [83] 0.2 0.06 0.00 3169 HASH_FUNCTION [83] ----------------------------------------------- [84] 0.2 0.06 0.00 __dj_movedata [84] ----------------------------------------------- [85] 0.2 0.06 0.00 __dosmemput [85] ----------------------------------------------- [86] 0.2 0.06 0.00 __dpmi_yield [86] ----------------------------------------------- [87] 0.2 0.06 0.00 fprintf [87] ----------------------------------------------- [88] 0.2 0.06 0.00 localeconv [88] ----------------------------------------------- [89] 0.2 0.06 0.00 strchr [89] ----------------------------------------------- [90] 0.2 0.06 0.00 strncpy [90] ----------------------------------------------- 0.00 0.05 1/1 __crt1_startup [92] [91] 0.2 0.00 0.05 1 main [91] 0.00 0.01 1/1 read_cfg [101] 0.00 0.01 1/1 HTMLUseCharacterSet [104] 0.01 0.00 1/4 safeUCGetLYhndl_byMIME [76] 0.00 0.00 1/1 HTFileInit [110] 0.00 0.00 1/1 LYCharSetsDeclared [116] 0.00 0.00 1/1 read_rc [121] 0.00 0.00 1/1 HTFormatInit [122] 0.00 0.00 1/1 HTMLSRC_init_caches [133] 0.00 0.00 2/2 LYEnsureAbsoluteURL [134] 0.00 0.00 8/12 LYGetEnv [153] 0.00 0.00 1/1 LYPathOffHomeOK [156] 0.00 0.00 34/69137 HTSACopy [60] 0.00 0.00 2/3171 LYFillLocalFileURL [74] 0.00 0.00 1/1 setup [165] 0.00 0.00 2/2 parse_arg [168] 0.00 0.00 2/5 LYAddPathToHome [170] 0.00 0.00 1/3 LYEscapeStartfile [184] 0.00 0.00 1/2 HTHostName [207] 0.00 0.00 5/8224 HTSACat [232] 0.00 0.00 3/3 tildeExpand [349] 0.00 0.00 2/2 LYCloseCloset [365] 0.00 0.00 2/10 __putenv [310] 0.00 0.00 1/1 cleanup [449] 0.00 0.00 1/1 LYexit [434] 0.00 0.00 1/1 LYCheckUserAgent [417] 0.00 0.00 1/1 set_numbers_as_arrows [465] 0.00 0.00 1/1 inlocaldomain [455] 0.00 0.00 1/3 ena_csi [348] 0.00 0.00 1/1 mainloop [462] 0.00 0.00 1/1 LY_get_ctrl_break [431] 0.00 0.00 1/1 LYatexit [433] 0.00 0.00 1/3 LYLastPathSep [336] 0.00 0.00 1/1 argncmp [447] 0.00 0.00 1/1 LYAddPathSep [415] 0.00 0.00 1/2 HTDOS_name [351] 0.00 0.00 1/3 HTStat [332] 0.00 0.00 1/1 LYOpenTraceLog [425] 0.00 0.00 1/3 LYCanReadFile [335] 0.00 0.00 1/1 LYEditmapDeclared [420] 0.00 0.00 1/1 lynx_setup_colors [458] 0.00 0.00 1/3 Current_Dir [328] 0.00 0.00 1/218 LYstrncpy [270] 0.00 0.00 1/1 HTSwitchDTD [406] 0.00 0.00 1/1 LYLoadCookies [423] 0.00 0.00 1/1 LYPathLeaf [426] 0.00 0.00 1/2 LYAddHtmlSep [363] ----------------------------------------------- [92] 0.2 0.00 0.05 __crt1_startup [92] 0.00 0.05 1/1 main [91] ----------------------------------------------- 0.00 0.05 3168/3168 HTAnchor_findChildAndLink [5] [93] 0.2 0.00 0.05 3168 HTAnchor_link [93] 0.05 0.00 3168/7204 HTList_addObject [67] 0.00 0.00 413/528 HTList_new [258] ----------------------------------------------- 0.00 0.04 36953/36953 is_url [50] [94] 0.1 0.00 0.04 36953 compare_type [94] 0.04 0.00 36953/46553 strncasecomp [78] ----------------------------------------------- 0.00 0.01 1/2 try_again [99] 0.00 0.01 1/2 HTMLUseCharacterSet [104] [95] 0.1 0.00 0.03 2 HTMLSetCharacterHandling [95] 0.03 0.00 2/4 safeUCGetLYhndl_byMIME [76] 0.00 0.00 2/3 ena_csi [348] ----------------------------------------------- 0.00 0.02 4105/4105 S_comment_put_c [4] [96] 0.1 0.00 0.02 4105 handle_attribute_name [96] 0.02 0.00 9412/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 55/1985 HTML_end_element [45] 0.00 0.02 1930/1985 LYHandlePlike [44] [97] 0.1 0.00 0.02 1985 LYEnsureSingleSpace [97] 0.00 0.01 1985/8690 HText_LastLineSize [75] 0.00 0.00 1030/620254 HText_appendCharacter [17] 0.00 0.00 1030/623324 HText_setLastChar [65] 0.00 0.00 78/117 HText_NegateLineOne [279] ----------------------------------------------- 0.00 0.00 1/7144 try_again [99] 0.00 0.00 1/7144 HTMLPresent [160] 0.00 0.00 1/7144 HText_new [179] 0.00 0.00 1/7144 HTLoadAbsolute [26] 0.00 0.00 2/7144 HTLoadFile [29] 0.00 0.00 2/7144 HTML_new [205] 0.00 0.00 4/7144 HTFormatInit [122] 0.00 0.00 44/7144 HTFilterPresentations [150] 0.00 0.00 68/7144 HTSetConversion [124] 0.00 0.00 284/7144 HTSetSuffix5 [111] 0.00 0.00 578/7144 UC_setup_LYCharSets_repl [120] 0.00 0.01 6158/7144 check_WrapSource [15] [98] 0.1 0.00 0.02 7144 HTAtom_for [98] 0.02 0.00 7334/237682 strcasecomp [42] ----------------------------------------------- [99] 0.0 0.00 0.01 try_again [99] 0.00 0.01 1/2 HTMLSetCharacterHandling [95] 0.00 0.00 1/2 HText_pageDisplay [129] 0.00 0.00 2/17092 HTParse [39] 0.00 0.00 1/2682 LYisLocalFile [62] 0.00 0.00 1/1 LYAddVisitedLink [177] 0.00 0.00 1/2 HTAddGotoURL [167] 0.00 0.00 6/69137 HTSACopy [60] 0.00 0.00 1/1 show_main_statusline [196] 0.00 0.00 1/1 copy_address [214] 0.00 0.00 1/7144 HTAtom_for [98] 0.00 0.00 4/4 HText_getTitle [322] 0.00 0.00 1/8224 HTSACat [232] 0.00 0.00 1/1 HTdocument_settings_changed [407] 0.00 0.00 1/1 HText_canScrollDown [409] 0.00 0.00 1/1 HText_getTopOfScreen [412] 0.00 0.00 1/1 LYhighlight [437] 0.00 0.00 1/1 LYgetch [435] 0.00 0.00 1/1 turn_trace_back_on [469] 0.00 0.00 1/1 HText_getOwner [411] 0.00 0.00 1/1 HTLoadedDocumentIsSafe [401] 0.00 0.00 1/1 getfile [454] ----------------------------------------------- 1 do_read_cfg [100] 0.00 0.01 1/1 read_cfg [101] [100] 0.0 0.00 0.01 1+1 do_read_cfg [100] 0.00 0.01 11/11 LYSetConfigValue [102] 0.00 0.00 12/23 lookup_config [146] 0.00 0.00 2/3 LYConfigCookies [201] 0.00 0.00 2335/2644 LYSafeGets [251] 0.00 0.00 2333/9035 LYSkipBlanks [230] 0.00 0.00 162/7322 LYTrimTrailing [233] 0.00 0.00 2/2 LYOpenCFG [369] 0.00 0.00 2/4 LYCloseInput [324] 1 do_read_cfg [100] ----------------------------------------------- 0.00 0.01 1/1 main [91] [101] 0.0 0.00 0.01 1 read_cfg [101] 0.00 0.01 1/1 do_read_cfg [100] ----------------------------------------------- 0.00 0.01 11/11 do_read_cfg [100] [102] 0.0 0.00 0.01 11 LYSetConfigValue [102] 0.00 0.01 1/1 assume_charset_fun [103] 0.00 0.00 11/23 lookup_config [146] 0.00 0.00 6/69137 HTSACopy [60] 0.00 0.00 1/8 LYgetEnum [164] 0.00 0.00 2/2 is_true [217] ----------------------------------------------- 0.00 0.01 1/1 LYSetConfigValue [102] [103] 0.0 0.00 0.01 1 assume_charset_fun [103] 0.01 0.00 1/4 safeUCGetLYhndl_byMIME [76] 0.00 0.00 1/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.01 1/1 main [91] [104] 0.0 0.00 0.01 1 HTMLUseCharacterSet [104] 0.00 0.01 1/2 HTMLSetCharacterHandling [95] 0.00 0.00 1/1 HTMLSetDisplayCharsetMatchLocale [218] 0.00 0.00 1/1 HTMLSetRawModeDefault [404] 0.00 0.00 1/1 HTMLSetHaveCJKCharacterSet [403] ----------------------------------------------- 0.00 0.01 4103/4103 S_comment_put_c [4] [105] 0.0 0.00 0.01 4103 handle_attribute_value [105] 0.01 0.00 4103/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.00 3/3172 LYEscapeStartfile [184] 0.00 0.01 3169/3172 LYLegitimizeHREF [34] [106] 0.0 0.00 0.01 3172 LYTrimStartfile [106] 0.01 0.00 6344/46553 strncasecomp [78] 0.00 0.00 3172/6600 LYTrimHead [234] ----------------------------------------------- 0.00 0.01 1051/1051 top1 [1] [107] 0.0 0.00 0.01 1051 handle_entity [107] 0.00 0.01 1051/1051 put_special_unicodes [108] 0.00 0.00 229/634316 HTML_put_character [7] 0.00 0.00 1051/1051 HTMLGetEntityUCValue [254] 0.00 0.00 224/224 UCTransUniChar [269] 0.00 0.00 3/3 UCTransUniCharStr [346] ----------------------------------------------- 0.00 0.01 1051/1051 handle_entity [107] [108] 0.0 0.00 0.01 1051 put_special_unicodes [108] 0.00 0.00 827/634316 HTML_put_character [7] ----------------------------------------------- [109] 0.0 0.00 0.00 _file_time_stamp [109] 0.00 0.00 4/3510 mktime [9] ----------------------------------------------- 0.00 0.00 1/1 main [91] [110] 0.0 0.00 0.00 1 HTFileInit [110] 0.00 0.00 137/137 HTSetSuffix5 [111] 0.00 0.00 1/5 LYAddPathToHome [170] 0.00 0.00 2/2 HTLoadExtensionsConfigFile [356] 0.00 0.00 1/3 LYCanReadFile [335] ----------------------------------------------- 0.00 0.00 137/137 HTFileInit [110] [111] 0.0 0.00 0.00 137 HTSetSuffix5 [111] 0.00 0.00 134/7204 HTList_addObject [67] 0.00 0.00 271/69137 HTSACopy [60] 0.00 0.00 284/7144 HTAtom_for [98] 0.00 0.00 1/528 HTList_new [258] ----------------------------------------------- 0.00 0.00 3/209 LYEnsureDoubleSpace [140] 0.00 0.00 206/209 HTML_start_element [3] [112] 0.0 0.00 0.00 209 HText_PreviousLineSize [112] 0.00 0.00 209/8385 HText_TrueLineSize [71] ----------------------------------------------- 0.00 0.00 1/204 HTConfirmDefault [194] 0.00 0.00 2/204 user_message [178] 0.00 0.00 201/204 HTReadProgress [56] [113] 0.0 0.00 0.00 204 statusline [113] 0.00 0.00 204/6066 convert_to_spaces [80] 0.00 0.00 204/218 LYstrncpy [270] 0.00 0.00 204/235 LYmove [265] 0.00 0.00 204/230 LYclrtoeol [267] 0.00 0.00 204/204 lynx_start_status_color [273] 0.00 0.00 204/883 LYwaddnstr [256] 0.00 0.00 204/204 lynx_stop_status_color [274] 0.00 0.00 204/208 LYrefresh [271] ----------------------------------------------- [114] 0.0 0.00 0.00 time [114] 0.00 0.00 2/3506 __gettimeofday [12] ----------------------------------------------- [115] 0.0 0.00 0.00 End_Object [115] 0.00 0.00 3/991 actually_set_style [51] 0.00 0.00 45/45 HText_endStblTD [135] 0.00 0.00 3/3 HText_endStblTABLE [141] 0.00 0.00 21/8690 HText_LastLineSize [75] 0.00 0.00 21/21 HText_endStblTR [300] 0.00 0.00 3/990 change_paragraph_style [255] ----------------------------------------------- 0.00 0.00 1/1 main [91] [116] 0.0 0.00 0.00 1 LYCharSetsDeclared [116] 0.00 0.00 1/1 UCInit [117] ----------------------------------------------- 0.00 0.00 1/1 LYCharSetsDeclared [116] [117] 0.0 0.00 0.00 1 UCInit [117] 0.00 0.00 38/38 UC_Charset_Setup [118] 0.00 0.00 4/9 UCGetLYhndl_byMIME [128] 0.00 0.00 7/7 UC_Charset_NoUctb_Setup [315] 0.00 0.00 1/1 UCreset_allocated_LYCharSets [445] 0.00 0.00 1/1 UCconsole_map_init [444] ----------------------------------------------- 0.00 0.00 38/38 UCInit [117] [118] 0.0 0.00 0.00 38 UC_Charset_Setup [118] 0.00 0.00 38/38 UC_Register_with_LYCharSets [119] 0.00 0.00 38/38 UC_FindGN_byMIME [296] ----------------------------------------------- 0.00 0.00 38/38 UC_Charset_Setup [118] [119] 0.0 0.00 0.00 38 UC_Register_with_LYCharSets [119] 0.00 0.00 36/36 UC_setup_LYCharSets_repl [120] ----------------------------------------------- 0.00 0.00 36/36 UC_Register_with_LYCharSets [119] [120] 0.0 0.00 0.00 36 UC_setup_LYCharSets_repl [120] 0.00 0.00 578/7144 HTAtom_for [98] ----------------------------------------------- 0.00 0.00 1/1 main [91] [121] 0.0 0.00 0.00 1 read_rc [121] 0.00 0.00 328/237682 strcasecomp [42] 0.00 0.00 78/78 lookup_config [147] 0.00 0.00 58/69137 HTSACopy [60] 0.00 0.00 7/8 LYgetEnum [164] 0.00 0.00 25/46553 strncasecomp [78] 0.00 0.00 8/8 getBool [181] 0.00 0.00 1/1 set_default_bookmark_page [203] 0.00 0.00 1/5 LYAddPathToHome [170] 0.00 0.00 1/1 get_editor [215] 0.00 0.00 1/3 LYConfigCookies [201] 0.00 0.00 367/7322 LYTrimTrailing [233] 0.00 0.00 367/9035 LYSkipBlanks [230] 0.00 0.00 325/325 LYindex2MBM [264] 0.00 0.00 309/2644 LYSafeGets [251] 0.00 0.00 2/8224 HTSACat [232] 0.00 0.00 1/1 get_display_charset [452] 0.00 0.00 1/4 LYCloseInput [324] ----------------------------------------------- 0.00 0.00 1/1 main [91] [122] 0.0 0.00 0.00 1 HTFormatInit [122] 0.00 0.00 34/34 HTSetConversion [124] 0.00 0.00 1/1 HTFilterPresentations [150] 0.00 0.00 2/2 HTReorderPresentation [169] 0.00 0.00 1/2 LYgetXDisplay [176] 0.00 0.00 4/7144 HTAtom_for [98] 0.00 0.00 1/5 LYAddPathToHome [170] 0.00 0.00 2/2 HTLoadTypesConfigFile [357] 0.00 0.00 1/3 LYCanReadFile [335] ----------------------------------------------- 0.00 0.00 3/3 HTML_start_element [3] [123] 0.0 0.00 0.00 3 LYHandleMETA [123] 0.00 0.00 4/3425 LYUCTranslateHTMLString [41] 0.00 0.00 6/6066 convert_to_spaces [80] 0.00 0.00 18/237682 strcasecomp [42] 0.00 0.00 6/69137 HTSACopy [60] 0.00 0.00 7/6600 LYTrimHead [234] 0.00 0.00 7/3428 LYTrimTail [242] 0.00 0.00 1/2 LYLowerCase [368] 0.00 0.00 1/2 HText_setKcode [361] ----------------------------------------------- 0.00 0.00 34/34 HTFormatInit [122] [124] 0.0 0.00 0.00 34 HTSetConversion [124] 0.00 0.00 34/7204 HTList_addObject [67] 0.00 0.00 68/7144 HTAtom_for [98] 0.00 0.00 1/528 HTList_new [258] ----------------------------------------------- 0.00 0.00 203/203 re_parse [126] [125] 0.0 0.00 0.00 203 LYAddHiText [125] 0.00 0.00 203/69137 HTSACopy [60] ----------------------------------------------- [126] 0.0 0.00 0.00 re_parse [126] 0.00 0.00 203/203 LYAddHiText [125] 0.00 0.00 10304/10360 LYGetHiTextStr [229] 0.00 0.00 3623/3623 remove_special_attr_chars [238] 0.00 0.00 3623/7322 LYTrimTrailing [233] 0.00 0.00 3464/3486 next_anchor [240] 0.00 0.00 3420/3420 LYSetHiText [247] 0.00 0.00 203/3623 SNACopy [237] ----------------------------------------------- 0.00 0.00 1/1 HTLoad [27] [127] 0.0 0.00 0.00 1 get_physical [127] 0.00 0.00 1/1 HTAccessInit [132] 0.00 0.00 1/1 override_proxy [159] 0.00 0.00 1/17092 HTParse [39] 0.00 0.00 2/237682 strcasecomp [42] 0.00 0.00 1/1 HTTranslate [212] 0.00 0.00 1/1 HTAnchor_setPhysical [209] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 20/72 HTList_objectAt [283] 0.00 0.00 1/7 HTList_count [314] 0.00 0.00 1/1 HTAnchor_setProtocol [395] 0.00 0.00 1/4 HTAnchor_physical [320] ----------------------------------------------- 0.00 0.00 1/9 set_chartrans_handling [163] 0.00 0.00 4/9 UCInit [117] 0.00 0.00 4/9 safeUCGetLYhndl_byMIME [76] [128] 0.0 0.00 0.00 9 UCGetLYhndl_byMIME [128] 0.00 0.00 184/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 1/2 try_again [99] 0.00 0.00 1/2 LYMainLoop_pageDisplay [149] [129] 0.0 0.00 0.00 2 HText_pageDisplay [129] 0.00 0.00 2/2 display_page [130] 0.00 0.00 2/2 HTAnchor_isIndex [350] 0.00 0.00 1/2 HText_trimHightext [362] ----------------------------------------------- 0.00 0.00 2/2 HText_pageDisplay [129] [130] 0.0 0.00 0.00 2 display_page [130] 0.00 0.00 18/3186 HTAnchor_address [73] 0.00 0.00 2/2 display_title [204] 0.00 0.00 56/10360 LYGetHiTextStr [229] 0.00 0.00 23/235 LYmove [265] 0.00 0.00 23/23 display_line [299] 0.00 0.00 22/3486 next_anchor [240] 0.00 0.00 18/18 LYSetHilite [304] 0.00 0.00 18/3438 HTAnchor_followMainLink [241] 0.00 0.00 2/208 LYrefresh [271] ----------------------------------------------- 0.00 0.00 5/22 LYRegisterLynxProtocols [158] 0.00 0.00 17/22 HTAccessInit [132] [131] 0.0 0.00 0.00 22 HTRegisterProtocol [131] 0.00 0.00 22/7204 HTList_addObject [67] 0.00 0.00 1/528 HTList_new [258] ----------------------------------------------- 0.00 0.00 1/1 get_physical [127] [132] 0.0 0.00 0.00 1 HTAccessInit [132] 0.00 0.00 17/22 HTRegisterProtocol [131] 0.00 0.00 1/1 LYRegisterLynxProtocols [158] ----------------------------------------------- 0.00 0.00 1/1 main [91] [133] 0.0 0.00 0.00 1 HTMLSRC_init_caches [133] 0.00 0.00 24/24 html_src_parse_tagspec [137] 0.00 0.00 12/69137 HTSACopy [60] 0.00 0.00 12/218 LYstrncpy [270] ----------------------------------------------- 0.00 0.00 2/2 main [91] [134] 0.0 0.00 0.00 2 LYEnsureAbsoluteURL [134] 0.00 0.00 2/3173 is_url [50] 0.00 0.00 4/17092 HTParse [39] 0.00 0.00 6/237682 strcasecomp [42] 0.00 0.00 2/2 LYConvertToURL [193] 0.00 0.00 2/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.00 45/45 End_Object [115] [135] 0.0 0.00 0.00 45 HText_endStblTD [135] 0.00 0.00 45/8690 HText_LastLineSize [75] 0.00 0.00 45/90 HText_LastLineOffset [282] 0.00 0.00 45/114 Stbl_finishCellInTable [280] ----------------------------------------------- 0.00 0.00 45/45 HTML_start_element [3] [136] 0.0 0.00 0.00 45 HText_startStblTD [136] 0.00 0.00 45/8690 HText_LastLineSize [75] 0.00 0.00 45/90 HText_LastLineOffset [282] 0.00 0.00 45/45 Stbl_addCellToTable [293] ----------------------------------------------- 0.00 0.00 24/24 HTMLSRC_init_caches [133] [137] 0.0 0.00 0.00 24 html_src_parse_tagspec [137] 0.00 0.00 7/7 append_open_tag [152] 0.00 0.00 7/14 append_close_tag [138] ----------------------------------------------- 0.00 0.00 7/14 append_open_tag [152] 0.00 0.00 7/14 html_src_parse_tagspec [137] [138] 0.0 0.00 0.00 14 append_close_tag [138] 0.00 0.00 14/14 html_src_tag_index [139] ----------------------------------------------- 0.00 0.00 14/14 append_close_tag [138] [139] 0.0 0.00 0.00 14 html_src_tag_index [139] 0.00 0.00 14/22846 SGMLFindTag [43] ----------------------------------------------- 0.00 0.00 21/21 LYHandlePlike [44] [140] 0.0 0.00 0.00 21 LYEnsureDoubleSpace [140] 0.00 0.00 21/8690 HText_LastLineSize [75] 0.00 0.00 36/620254 HText_appendCharacter [17] 0.00 0.00 3/209 HText_PreviousLineSize [112] 0.00 0.00 18/623324 HText_setLastChar [65] 0.00 0.00 3/117 HText_NegateLineOne [279] ----------------------------------------------- 0.00 0.00 3/3 End_Object [115] [141] 0.0 0.00 0.00 3 HText_endStblTABLE [141] 0.00 0.00 3/3 HText_insertBlanksInStblLines [142] 0.00 0.00 3/3 Stbl_finishTABLE [339] 0.00 0.00 3/3 Stbl_free [340] ----------------------------------------------- 0.00 0.00 3/3 HText_endStblTABLE [141] [142] 0.0 0.00 0.00 3 HText_insertBlanksInStblLines [142] 0.00 0.00 21/8385 HText_TrueLineSize [71] 0.00 0.00 51/51 Stbl_getFixupPositions [288] 0.00 0.00 21/21 insert_blanks_in_line [303] 0.00 0.00 3/3 Stbl_getStartLine [342] 0.00 0.00 3/3 Stbl_getAlignment [341] ----------------------------------------------- 0.00 0.00 1/1 SGML_free [145] [143] 0.0 0.00 0.00 1 HTML_free [143] 0.00 0.00 1/1 HText_endAppend [144] 0.00 0.00 1/1 HText_sourceAnchors [413] 0.00 0.00 1/1 clear_objectdata [450] ----------------------------------------------- 0.00 0.00 1/1 HTML_free [143] [144] 0.0 0.00 0.00 1 HText_endAppend [144] 0.00 0.00 1/13284 split_line [8] 0.00 0.00 1/2 HText_trimHightext [362] ----------------------------------------------- 0.00 0.00 1/1 HTParseFile [30] [145] 0.0 0.00 0.00 1 SGML_free [145] 0.00 0.00 1/1 HTML_free [143] 0.00 0.00 1/1 HTChunkFree [397] ----------------------------------------------- 0.00 0.00 11/23 LYSetConfigValue [102] 0.00 0.00 12/23 do_read_cfg [100] [146] 0.0 0.00 0.00 23 lookup_config [146] 0.00 0.00 125/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 78/78 read_rc [121] [147] 0.0 0.00 0.00 78 lookup_config [147] 0.00 0.00 123/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 200/200 HTFileCopy [31] [148] 0.0 0.00 0.00 200 HTDisplayPartial [148] 0.00 0.00 1/1 LYMainLoop_pageDisplay [149] 0.00 0.00 200/200 LYGetNewline [277] 0.00 0.00 2/2 HText_getNumOfLines [360] ----------------------------------------------- 0.00 0.00 1/1 HTDisplayPartial [148] [149] 0.0 0.00 0.00 1 LYMainLoop_pageDisplay [149] 0.00 0.00 1/2 HText_pageDisplay [129] ----------------------------------------------- 0.00 0.00 1/1 HTFormatInit [122] [150] 0.0 0.00 0.00 1 HTFilterPresentations [150] 0.00 0.00 44/7144 HTAtom_for [98] 0.00 0.00 31/237682 strcasecomp [42] 0.00 0.00 7/46553 strncasecomp [78] 0.00 0.00 41/72 HTList_objectAt [283] 0.00 0.00 1/7 HTList_count [314] ----------------------------------------------- [151] 0.0 0.00 0.00 __crt0_load_environment_file [151] 0.00 0.00 13/119394 getenv [21] 0.00 0.00 8/10 __putenv [310] ----------------------------------------------- 0.00 0.00 7/7 html_src_parse_tagspec [137] [152] 0.0 0.00 0.00 7 append_open_tag [152] 0.00 0.00 7/14 append_close_tag [138] ----------------------------------------------- 0.00 0.00 1/12 HomeEnv [192] 0.00 0.00 1/12 setup [165] 0.00 0.00 2/12 LYgetXDisplay [176] 0.00 0.00 8/12 main [91] [153] 0.0 0.00 0.00 12 LYGetEnv [153] 0.00 0.00 12/119394 getenv [21] ----------------------------------------------- 0.00 0.00 1/1 HTLoadFile [29] [154] 0.0 0.00 0.00 1 HTnameOfFile_WWW [154] 0.00 0.00 3/17092 HTParse [39] 0.00 0.00 2/237682 strcasecomp [42] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 1/2 HTHostName [207] 0.00 0.00 1/2 HTUnEscape [359] 0.00 0.00 1/2 HTDOS_name [351] ----------------------------------------------- [155] 0.0 0.00 0.00 _preserve_fncase [155] 0.00 0.00 8/119394 getenv [21] ----------------------------------------------- 0.00 0.00 1/1 main [91] [156] 0.0 0.00 0.00 1 LYPathOffHomeOK [156] 0.00 0.00 1/3173 is_url [50] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 1/5 HTSimplify [319] ----------------------------------------------- [157] 0.0 0.00 0.00 _use_lfn [157] 0.00 0.00 7/119394 getenv [21] ----------------------------------------------- 0.00 0.00 1/1 HTAccessInit [132] [158] 0.0 0.00 0.00 1 LYRegisterLynxProtocols [158] 0.00 0.00 5/22 HTRegisterProtocol [131] ----------------------------------------------- 0.00 0.00 1/1 get_physical [127] [159] 0.0 0.00 0.00 1 override_proxy [159] 0.00 0.00 2/17092 HTParse [39] 0.00 0.00 1/119394 getenv [21] 0.00 0.00 1/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 1/1 HTStreamStack [161] [160] 0.0 0.00 0.00 1 HTMLPresent [160] 0.00 0.00 1/1 SGML_new [162] 0.00 0.00 1/1 HTML_new [205] 0.00 0.00 1/7144 HTAtom_for [98] 0.00 0.00 1/1 CacheThru_new [385] ----------------------------------------------- 0.00 0.00 1/1 HTParseFile [30] [161] 0.0 0.00 0.00 1 HTStreamStack [161] 0.00 0.00 1/1 HTMLPresent [160] 0.00 0.00 1/3 HTFindPresentation [331] ----------------------------------------------- 0.00 0.00 1/1 HTMLPresent [160] [162] 0.0 0.00 0.00 1 SGML_new [162] 0.00 0.00 1/1 set_chartrans_handling [163] 0.00 0.00 1/1 HTChunkCreate [396] 0.00 0.00 1/2 UCTransParams_clear [374] 0.00 0.00 1/14 HTAnchor_getUCLYhndl [307] 0.00 0.00 1/15 HTAnchor_getUCInfoStage [306] ----------------------------------------------- 0.00 0.00 1/1 SGML_new [162] [163] 0.0 0.00 0.00 1 set_chartrans_handling [163] 0.00 0.00 1/9 UCGetLYhndl_byMIME [128] 0.00 0.00 2/14 HTAnchor_getUCLYhndl [307] 0.00 0.00 2/4 HTAnchor_setUCInfoStage [321] 0.00 0.00 1/15 HTAnchor_getUCInfoStage [306] 0.00 0.00 1/3 UCSetTransParams [345] ----------------------------------------------- 0.00 0.00 1/8 LYSetConfigValue [102] 0.00 0.00 7/8 read_rc [121] [164] 0.0 0.00 0.00 8 LYgetEnum [164] 0.00 0.00 17/46553 strncasecomp [78] 0.00 0.00 8/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 1/1 main [91] [165] 0.0 0.00 0.00 1 setup [165] 0.00 0.00 1/1 dumbterm [185] 0.00 0.00 1/2 LYgetXDisplay [176] 0.00 0.00 1/12 LYGetEnv [153] 0.00 0.00 1/1 start_curses [467] 0.00 0.00 1/1 LYscreenHeight [439] 0.00 0.00 1/3 LYscreenWidth [338] ----------------------------------------------- [166] 0.0 0.00 0.00 PDC_scr_open [166] 0.00 0.00 3/119394 getenv [21] ----------------------------------------------- 0.00 0.00 1/2 try_again [99] 0.00 0.00 1/2 parse_arg [168] [167] 0.0 0.00 0.00 2 HTAddGotoURL [167] 0.00 0.00 2/7204 HTList_addObject [67] 0.00 0.00 2/69137 HTSACopy [60] 0.00 0.00 1/528 HTList_new [258] ----------------------------------------------- 0.00 0.00 2/2 main [91] [168] 0.0 0.00 0.00 2 parse_arg [168] 0.00 0.00 1/2 HTAddGotoURL [167] 0.00 0.00 2/3 LYEscapeStartfile [184] 0.00 0.00 2/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.00 2/2 HTFormatInit [122] [169] 0.0 0.00 0.00 2 HTReorderPresentation [169] 0.00 0.00 2/7204 HTList_addObject [67] 0.00 0.00 2/3 HTFindPresentation [331] 0.00 0.00 2/2 HTList_removeObject [355] ----------------------------------------------- 0.00 0.00 1/5 HTFormatInit [122] 0.00 0.00 1/5 HTFileInit [110] 0.00 0.00 1/5 read_rc [121] 0.00 0.00 2/5 main [91] [170] 0.0 0.00 0.00 5 LYAddPathToHome [170] 0.00 0.00 5/5 Home_Dir [183] 0.00 0.00 5/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.00 1/1 __bb_exit_func [64] [171] 0.0 0.00 0.00 1 ctime [171] 0.00 0.00 1/1 localtime [172] 0.00 0.00 1/1 asctime [448] ----------------------------------------------- 0.00 0.00 1/1 ctime [171] [172] 0.0 0.00 0.00 1 localtime [172] 0.00 0.00 1/119341 localsub [13] ----------------------------------------------- 0.00 0.00 1/2 tzsetwall [77] 0.00 0.00 1/2 gmtload [186] [173] 0.0 0.00 0.00 2 tzload [173] 0.00 0.00 1/1 tzdir [174] ----------------------------------------------- 0.00 0.00 1/1 tzload [173] [174] 0.0 0.00 0.00 1 tzdir [174] 0.00 0.00 2/119394 getenv [21] ----------------------------------------------- [175] 0.0 0.00 0.00 PDC_get_rows [175] 0.00 0.00 2/119394 getenv [21] ----------------------------------------------- 0.00 0.00 1/2 setup [165] 0.00 0.00 1/2 HTFormatInit [122] [176] 0.0 0.00 0.00 2 LYgetXDisplay [176] 0.00 0.00 2/12 LYGetEnv [153] ----------------------------------------------- 0.00 0.00 1/1 try_again [99] [177] 0.0 0.00 0.00 1 LYAddVisitedLink [177] 0.00 0.00 1/1 HTList_appendObject [182] 0.00 0.00 3/46553 strncasecomp [78] 0.00 0.00 1/69137 HTSACopy [60] 0.00 0.00 1/1 LYformTitle [213] 0.00 0.00 14/16 LYIsUIPage3 [305] 0.00 0.00 1/528 HTList_new [258] ----------------------------------------------- 0.00 0.00 1/2 status_link [197] 0.00 0.00 1/2 Try_Redirected_URL [25] [178] 0.0 0.00 0.00 2 user_message [178] 0.00 0.00 2/204 statusline [113] 0.00 0.00 2/227 HTSprintf0 [268] ----------------------------------------------- 0.00 0.00 1/1 HText_new2 [180] [179] 0.0 0.00 0.00 1 HText_new [179] 0.00 0.00 1/7204 HTList_addObject [67] 0.00 0.00 1/7144 HTAtom_for [98] 0.00 0.00 2/16 LYIsUIPage3 [305] 0.00 0.00 1/528 HTList_new [258] 0.00 0.00 1/7 HTList_count [314] 0.00 0.00 1/1 HTAnchor_setDocument [394] 0.00 0.00 1/1 HText_getChartransInfo [410] 0.00 0.00 1/3 UCSetTransParams [345] 0.00 0.00 1/15 HTAnchor_getUCInfoStage [306] 0.00 0.00 1/2 HText_setKcode [361] ----------------------------------------------- 0.00 0.00 1/1 actually_set_style [51] [180] 0.0 0.00 0.00 1 HText_new2 [180] 0.00 0.00 1/1 HText_new [179] ----------------------------------------------- 0.00 0.00 8/8 read_rc [121] [181] 0.0 0.00 0.00 8 getBool [181] 0.00 0.00 14/46553 strncasecomp [78] ----------------------------------------------- 0.00 0.00 1/1 LYAddVisitedLink [177] [182] 0.0 0.00 0.00 1 HTList_appendObject [182] 0.00 0.00 1/7204 HTList_addObject [67] ----------------------------------------------- 0.00 0.00 5/5 LYAddPathToHome [170] [183] 0.0 0.00 0.00 5 Home_Dir [183] 0.00 0.00 1/1 HomeEnv [192] 0.00 0.00 1/69137 HTSACopy [60] ----------------------------------------------- 0.00 0.00 1/3 main [91] 0.00 0.00 2/3 parse_arg [168] [184] 0.0 0.00 0.00 3 LYEscapeStartfile [184] 0.00 0.00 3/69137 HTSACopy [60] 0.00 0.00 3/3172 LYTrimStartfile [106] 0.00 0.00 3/3 HTEscapeUnsafe [330] ----------------------------------------------- 0.00 0.00 1/1 setup [165] [185] 0.0 0.00 0.00 1 dumbterm [185] 0.00 0.00 6/237682 strcasecomp [42] ----------------------------------------------- 0.00 0.00 1/1 tzsetwall [77] [186] 0.0 0.00 0.00 1 gmtload [186] 0.00 0.00 1/2 tzload [173] 0.00 0.00 1/1 tzparse [470] ----------------------------------------------- [187] 0.0 0.00 0.00 PDC_get_columns [187] 0.00 0.00 1/119394 getenv [21] ----------------------------------------------- [188] 0.0 0.00 0.00 __crt0_setup_arguments [188] 0.00 0.00 1/119394 getenv [21] ----------------------------------------------- [189] 0.0 0.00 0.00 _npxsetup [189] 0.00 0.00 1/119394 getenv [21] ----------------------------------------------- [190] 0.0 0.00 0.00 pkt_eth_init [190] 0.00 0.00 1/119394 getenv [21] ----------------------------------------------- [191] 0.0 0.00 0.00 tcp_config [191] 0.00 0.00 1/119394 getenv [21] ----------------------------------------------- ...