├── README.md ├── clr ├── dac.mk ├── project.mk └── src │ ├── bcl │ ├── makefile │ ├── makefile.inc │ ├── microsoft │ │ └── win32 │ │ │ ├── fusionwrap.cs │ │ │ ├── safehandles │ │ │ ├── safefilehandle.cs │ │ │ ├── safefilemappinghandle.cs │ │ │ ├── safefindhandle.cs │ │ │ ├── safefusionhandle.cs │ │ │ ├── safenativememoryhandle.cs │ │ │ ├── safepefilehandle.cs │ │ │ ├── safeviewoffilehandle.cs │ │ │ ├── safewaithandle.cs │ │ │ └── win32safehandles.cs │ │ │ └── win32native.cs │ ├── mscorlib.txt │ ├── native.rc │ ├── sources │ └── system │ │ ├── __filters.cs │ │ ├── __hresults.cs │ │ ├── _localdatastore.cs │ │ ├── _localdatastoremgr.cs │ │ ├── accessviolationexception.cs │ │ ├── activationarguments.cs │ │ ├── activator.cs │ │ ├── appdomain.cs │ │ ├── appdomainattributes.cs │ │ ├── appdomainmanager.cs │ │ ├── appdomainsetup.cs │ │ ├── appdomainunloadedexception.cs │ │ ├── applicationactivator.cs │ │ ├── applicationexception.cs │ │ ├── applicationid.cs │ │ ├── argiterator.cs │ │ ├── argumentexception.cs │ │ ├── argumentnullexception.cs │ │ ├── argumentoutofrangeexception.cs │ │ ├── arithmeticexception.cs │ │ ├── array.cs │ │ ├── arraysegment.cs │ │ ├── arraytypemismatchexception.cs │ │ ├── asynccallback.cs │ │ ├── attribute.cs │ │ ├── attributetargets.cs │ │ ├── attributeusageattribute.cs │ │ ├── badimageformatexception.cs │ │ ├── bcldebug.cs │ │ ├── bitconverter.cs │ │ ├── boolean.cs │ │ ├── buffer.cs │ │ ├── byte.cs │ │ ├── cannotunloadappdomainexception.cs │ │ ├── cfgparser.cs │ │ ├── char.cs │ │ ├── charenumerator.cs │ │ ├── clscompliantattribute.cs │ │ ├── collections │ │ ├── arraylist.cs │ │ ├── bitarray.cs │ │ ├── caseinsensitivecomparer.cs │ │ ├── caseinsensitivehashcodeprovider.cs │ │ ├── collectionbase.cs │ │ ├── comparer.cs │ │ ├── compatiblecomparer.cs │ │ ├── dictionarybase.cs │ │ ├── dictionaryentry.cs │ │ ├── emptyreadonlydictionaryinternal.cs │ │ ├── generic │ │ │ ├── arraysorthelper.cs │ │ │ ├── comparer.cs │ │ │ ├── debugview.cs │ │ │ ├── dictionary.cs │ │ │ ├── equalitycomparer.cs │ │ │ ├── functor.cs │ │ │ ├── icollection.cs │ │ │ ├── icomparer.cs │ │ │ ├── idictionary.cs │ │ │ ├── ienumerable.cs │ │ │ ├── ienumerator.cs │ │ │ ├── iequalitycomparer.cs │ │ │ ├── ilist.cs │ │ │ ├── keynotfoundexception.cs │ │ │ ├── keyvaluepair.cs │ │ │ └── list.cs │ │ ├── hashtable.cs │ │ ├── icollection.cs │ │ ├── icomparer.cs │ │ ├── idictionary.cs │ │ ├── idictionaryenumerator.cs │ │ ├── ienumerable.cs │ │ ├── ienumerator.cs │ │ ├── iequalitycomparer.cs │ │ ├── ihashcodeprovider.cs │ │ ├── ilist.cs │ │ ├── keyvaluepairs.cs │ │ ├── listdictionaryinternal.cs │ │ ├── objectmodel │ │ │ ├── collection.cs │ │ │ ├── keyedcollection.cs │ │ │ └── readonlycollection.cs │ │ ├── queue.cs │ │ ├── readonlycollectionbase.cs │ │ ├── sortedlist.cs │ │ └── stack.cs │ │ ├── cominterfaces.cs │ │ ├── compatibilityflags.cs │ │ ├── complusmethodframegeneric.cs │ │ ├── configuration │ │ └── assemblies │ │ │ ├── assemblyhash.cs │ │ │ ├── assemblyhashalgorithm.cs │ │ │ └── assemblyversioncompatibility.cs │ │ ├── console.cs │ │ ├── consolecanceleventargs.cs │ │ ├── consolespecialkey.cs │ │ ├── contextboundobject.cs │ │ ├── contextmarshalexception.cs │ │ ├── contextstaticattribute.cs │ │ ├── convert.cs │ │ ├── currency.cs │ │ ├── currenttimezone.cs │ │ ├── datamisalignedexception.cs │ │ ├── datetime.cs │ │ ├── datetimekind.cs │ │ ├── dayofweek.cs │ │ ├── dbnull.cs │ │ ├── decimal.cs │ │ ├── defaultbinder.cs │ │ ├── delegate.cs │ │ ├── delegateserializationholder.cs │ │ ├── diagnostics │ │ ├── assert.cs │ │ ├── assertfilter.cs │ │ ├── assertfilters.cs │ │ ├── codeanalysis │ │ │ └── suppressmessageattribute.cs │ │ ├── conditionalattribute.cs │ │ ├── debugger.cs │ │ ├── debuggerattributes.cs │ │ ├── log.cs │ │ ├── logginglevels.cs │ │ ├── logswitch.cs │ │ ├── stackframe.cs │ │ ├── stacktrace.cs │ │ └── symbolstore │ │ │ ├── isymbinder.cs │ │ │ ├── isymdocument.cs │ │ │ ├── isymdocumentwriter.cs │ │ │ ├── isymmethod.cs │ │ │ ├── isymnamespace.cs │ │ │ ├── isymreader.cs │ │ │ ├── isymscope.cs │ │ │ ├── isymvariable.cs │ │ │ ├── isymwriter.cs │ │ │ ├── symaddresskind.cs │ │ │ ├── symdocumenttype.cs │ │ │ ├── symlanguagetype.cs │ │ │ ├── symlanguagevendor.cs │ │ │ └── token.cs │ │ ├── dividebyzeroexception.cs │ │ ├── dllnotfoundexception.cs │ │ ├── double.cs │ │ ├── duplicatewaitobjectexception.cs │ │ ├── empty.cs │ │ ├── entrypointnotfoundexception.cs │ │ ├── enum.cs │ │ ├── environment.cs │ │ ├── eventargs.cs │ │ ├── eventhandler.cs │ │ ├── exception.cs │ │ ├── executionengineexception.cs │ │ ├── fieldaccessexception.cs │ │ ├── flagsattribute.cs │ │ ├── formatexception.cs │ │ ├── gc.cs │ │ ├── globalization │ │ ├── baseinfotable.cs │ │ ├── bidicategory.cs │ │ ├── calendar.cs │ │ ├── calendaralgorithmtype.cs │ │ ├── calendartable.cs │ │ ├── calendartabledata.cs │ │ ├── calendarweekrule.cs │ │ ├── charunicodeinfo.cs │ │ ├── chineselunisolarcalendar.cs │ │ ├── compareinfo.cs │ │ ├── cultureinfo.cs │ │ ├── culturetable.cs │ │ ├── culturetabledata.cs │ │ ├── culturetableheader.cs │ │ ├── culturetablerecord.cs │ │ ├── culturetypes.cs │ │ ├── datetimeformat.cs │ │ ├── datetimeformatinfo.cs │ │ ├── datetimeformatinfoscanner.cs │ │ ├── datetimeparse.cs │ │ ├── datetimestyles.cs │ │ ├── daylighttime.cs │ │ ├── digitshapes.cs │ │ ├── eastasianlunisolarcalendar.cs │ │ ├── encodingdataitem.cs │ │ ├── encodingtable.cs │ │ ├── globalizationassembly.cs │ │ ├── gregoriancalendar.cs │ │ ├── gregoriancalendarhelper.cs │ │ ├── gregoriancalendartypes.cs │ │ ├── hebrewcalendar.cs │ │ ├── hebrewnumber.cs │ │ ├── hijricalendar.cs │ │ ├── idnmapping.cs │ │ ├── japanesecalendar.cs │ │ ├── japaneselunisolarcalendar.cs │ │ ├── juliancalendar.cs │ │ ├── koreancalendar.cs │ │ ├── koreanlunisolarcalendar.cs │ │ ├── memorymapfile.cs │ │ ├── numberformatinfo.cs │ │ ├── numberstyles.cs │ │ ├── persiancalendar.cs │ │ ├── regioninfo.cs │ │ ├── sortkey.cs │ │ ├── stringinfo.cs │ │ ├── tables │ │ │ ├── big5.nlp │ │ │ ├── big5be.nlp │ │ │ ├── bopomofo.nlp │ │ │ ├── bopomofobe.nlp │ │ │ ├── charinfo.nlp │ │ │ ├── charinfobe.nlp │ │ │ ├── codepages.nlp │ │ │ ├── codepagesbe.nlp │ │ │ ├── culture.nlp │ │ │ ├── culturebe.nlp │ │ │ ├── ksc.nlp │ │ │ ├── kscbe.nlp │ │ │ ├── l_except.nlp │ │ │ ├── l_exceptbe.nlp │ │ │ ├── l_intl.nlp │ │ │ ├── l_intlbe.nlp │ │ │ ├── normidna.nlp │ │ │ ├── normidnabe.nlp │ │ │ ├── normnfc.nlp │ │ │ ├── normnfcbe.nlp │ │ │ ├── normnfd.nlp │ │ │ ├── normnfdbe.nlp │ │ │ ├── normnfkc.nlp │ │ │ ├── normnfkcbe.nlp │ │ │ ├── normnfkd.nlp │ │ │ ├── normnfkdbe.nlp │ │ │ ├── prc.nlp │ │ │ ├── prcbe.nlp │ │ │ ├── prcp.nlp │ │ │ ├── prcpbe.nlp │ │ │ ├── sortkey.nlp │ │ │ ├── sortkeybe.nlp │ │ │ ├── sorttbls.nlp │ │ │ ├── sorttblsbe.nlp │ │ │ ├── xjis.nlp │ │ │ └── xjisbe.nlp │ │ ├── taiwancalendar.cs │ │ ├── taiwanlunisolarcalendar.cs │ │ ├── textelementenumerator.cs │ │ ├── textinfo.cs │ │ ├── thaibuddhistcalendar.cs │ │ ├── umalquracalendar.cs │ │ └── unicodecategory.cs │ │ ├── guid.cs │ │ ├── iappdomain.cs │ │ ├── iappdomainsetup.cs │ │ ├── iasyncresult.cs │ │ ├── icloneable.cs │ │ ├── icomparable.cs │ │ ├── iconvertible.cs │ │ ├── icustomformatter.cs │ │ ├── idisposable.cs │ │ ├── iequatable.cs │ │ ├── iformatprovider.cs │ │ ├── iformattable.cs │ │ ├── indexoutofrangeexception.cs │ │ ├── insufficientmemoryexception.cs │ │ ├── int16.cs │ │ ├── int32.cs │ │ ├── int64.cs │ │ ├── internal.cs │ │ ├── intptr.cs │ │ ├── invalidcastexception.cs │ │ ├── invalidoperationexception.cs │ │ ├── invalidprogramexception.cs │ │ ├── io │ │ ├── __consolestream.cs │ │ ├── __debugoutputtextwriter.cs │ │ ├── __error.cs │ │ ├── __hresults.cs │ │ ├── binaryreader.cs │ │ ├── binarywriter.cs │ │ ├── bufferedstream.cs │ │ ├── directory.cs │ │ ├── directoryinfo.cs │ │ ├── directorynotfoundexception.cs │ │ ├── driveinfo.cs │ │ ├── drivenotfoundexception.cs │ │ ├── endofstreamexception.cs │ │ ├── file.cs │ │ ├── fileaccess.cs │ │ ├── fileattributes.cs │ │ ├── fileinfo.cs │ │ ├── fileloadexception.cs │ │ ├── filemode.cs │ │ ├── filenotfoundexception.cs │ │ ├── fileoptions.cs │ │ ├── fileshare.cs │ │ ├── filestream.cs │ │ ├── filesysteminfo.cs │ │ ├── ioexception.cs │ │ ├── isolatedstorage │ │ │ ├── __hresults.cs │ │ │ ├── inormalizeforisolatedstorage.cs │ │ │ ├── isolatedstorage.cs │ │ │ ├── isolatedstorageexception.cs │ │ │ ├── isolatedstoragefile.cs │ │ │ └── isolatedstoragefilestream.cs │ │ ├── memorystream.cs │ │ ├── path.cs │ │ ├── pathtoolongexception.cs │ │ ├── pinnedbuffermemorystream.cs │ │ ├── searchoption.cs │ │ ├── seekorigin.cs │ │ ├── stream.cs │ │ ├── streamreader.cs │ │ ├── streamwriter.cs │ │ ├── stringreader.cs │ │ ├── stringwriter.cs │ │ ├── textreader.cs │ │ ├── textwriter.cs │ │ ├── unmanagedmemorystream.cs │ │ └── unmanagedmemorystreamwrapper.cs │ │ ├── iserviceobjectprovider.cs │ │ ├── marshalbyrefobject.cs │ │ ├── math.cs │ │ ├── mda.cs │ │ ├── memberaccessexception.cs │ │ ├── methodaccessexception.cs │ │ ├── midpointrounding.cs │ │ ├── missingfieldexception.cs │ │ ├── missingmemberexception.cs │ │ ├── missingmethodexception.cs │ │ ├── multicastdelegate.cs │ │ ├── multicastnotsupportedexception.cs │ │ ├── ndirectmethodframeex.cs │ │ ├── nonserializedattribute.cs │ │ ├── notfinitenumberexception.cs │ │ ├── notimplementedexception.cs │ │ ├── notsupportedexception.cs │ │ ├── nullable.cs │ │ ├── nullreferenceexception.cs │ │ ├── number.cs │ │ ├── object.cs │ │ ├── objectdisposedexception.cs │ │ ├── obsoleteattribute.cs │ │ ├── oleautbinder.cs │ │ ├── operatingsystem.cs │ │ ├── operationcanceledexception.cs │ │ ├── outofmemoryexception.cs │ │ ├── overflowexception.cs │ │ ├── paramarrayattribute.cs │ │ ├── parsenumbers.cs │ │ ├── platformid.cs │ │ ├── platformnotsupportedexception.cs │ │ ├── random.cs │ │ ├── rankexception.cs │ │ ├── reflection │ │ ├── __filters.cs │ │ ├── ambiguousmatchexception.cs │ │ ├── assembly.cs │ │ ├── assemblyattributes.cs │ │ ├── assemblyname.cs │ │ ├── assemblynameflags.cs │ │ ├── assemblynameproxy.cs │ │ ├── binder.cs │ │ ├── bindingflags.cs │ │ ├── cache │ │ │ ├── cacheobjtype.cs │ │ │ ├── clearcacheeventargs.cs │ │ │ ├── clearcachehandler.cs │ │ │ ├── internalcache.cs │ │ │ ├── internalcacheitem.cs │ │ │ ├── typenamecache.cs │ │ │ └── typenamestruct.cs │ │ ├── callingconventions.cs │ │ ├── cominterfaces.cs │ │ ├── customattribute.cs │ │ ├── customattributeformatexception.cs │ │ ├── defaultmemberattribute.cs │ │ ├── emit │ │ │ ├── aqnbuilder.cs │ │ │ ├── assemblybuilder.cs │ │ │ ├── assemblybuilderaccess.cs │ │ │ ├── assemblybuilderdata.cs │ │ │ ├── cominterfaces.cs │ │ │ ├── constructorbuilder.cs │ │ │ ├── customattributebuilder.cs │ │ │ ├── dynamicilgenerator.cs │ │ │ ├── dynamicmethod.cs │ │ │ ├── enumbuilder.cs │ │ │ ├── eventbuilder.cs │ │ │ ├── eventtoken.cs │ │ │ ├── fieldbuilder.cs │ │ │ ├── fieldtoken.cs │ │ │ ├── flowcontrol.cs │ │ │ ├── generictypeparameterbuilder.cs │ │ │ ├── ilgenerator.cs │ │ │ ├── label.cs │ │ │ ├── localbuilder.cs │ │ │ ├── methodbuilder.cs │ │ │ ├── methodbuilderinstantiation.cs │ │ │ ├── methodrental.cs │ │ │ ├── methodtoken.cs │ │ │ ├── modulebuilder.cs │ │ │ ├── modulebuilderdata.cs │ │ │ ├── opcode.cs │ │ │ ├── opcodes.cs │ │ │ ├── opcodetype.cs │ │ │ ├── operandtype.cs │ │ │ ├── parameterbuilder.cs │ │ │ ├── parametertoken.cs │ │ │ ├── pefilekinds.cs │ │ │ ├── propertybuilder.cs │ │ │ ├── propertytoken.cs │ │ │ ├── signaturehelper.cs │ │ │ ├── signaturetoken.cs │ │ │ ├── stackbehaviour.cs │ │ │ ├── stringtoken.cs │ │ │ ├── symbolmethod.cs │ │ │ ├── symboltype.cs │ │ │ ├── typebuilder.cs │ │ │ ├── typebuilderinstantiation.cs │ │ │ ├── typetoken.cs │ │ │ ├── unmanagedmarshal.cs │ │ │ └── xxxontypebuilderinstantiation.cs │ │ ├── eventattributes.cs │ │ ├── fieldattributes.cs │ │ ├── genericparameterattributes.cs │ │ ├── icustomattributeprovider.cs │ │ ├── interfacemapping.cs │ │ ├── invalidfiltercriteriaexception.cs │ │ ├── ireflect.cs │ │ ├── manifestresourceinfo.cs │ │ ├── mdimport.cs │ │ ├── memberfilter.cs │ │ ├── memberinfoserializationholder.cs │ │ ├── membertypes.cs │ │ ├── methodattributes.cs │ │ ├── methodbody.cs │ │ ├── methodimplattributes.cs │ │ ├── missing.cs │ │ ├── module.cs │ │ ├── obfuscateassemblyattribute.cs │ │ ├── obfuscationattribute.cs │ │ ├── parameterattributes.cs │ │ ├── parametermodifier.cs │ │ ├── pointer.cs │ │ ├── propertyattributes.cs │ │ ├── reflectiontypeloadexception.cs │ │ ├── resourceattributes.cs │ │ ├── strongnamekeypair.cs │ │ ├── targetexception.cs │ │ ├── targetinvocationexception.cs │ │ ├── targetparametercountexception.cs │ │ ├── typeattributes.cs │ │ ├── typedelegator.cs │ │ ├── typefilter.cs │ │ └── xxxinfos.cs │ │ ├── resid.cs │ │ ├── resources │ │ ├── __fastresourcecomparer.cs │ │ ├── iresourcereader.cs │ │ ├── iresourcewriter.cs │ │ ├── looselylinkedresourcereference.cs │ │ ├── missingmanifestresourceexception.cs │ │ ├── missingsatelliteassemblyexception.cs │ │ ├── neutralresourceslanguageattribute.cs │ │ ├── resourcemanager.cs │ │ ├── resourcereader.cs │ │ ├── resourceset.cs │ │ ├── resourcetypecode.cs │ │ ├── resourcewriter.cs │ │ ├── runtimeresourceset.cs │ │ ├── satellitecontractversionattribute.cs │ │ └── ultimateresourcefallbacklocation.cs │ │ ├── rttype.cs │ │ ├── runtime │ │ ├── compilerservices │ │ │ ├── accessedthroughpropertyattribute.cs │ │ │ ├── assemblyattributesgohere.cs │ │ │ ├── assemblysettingattributes.cs │ │ │ ├── callingconvention.cs │ │ │ ├── compilationrelaxations.cs │ │ │ ├── compilergeneratedattribute.cs │ │ │ ├── compilerglobalscopeattribute.cs │ │ │ ├── compilermarshaloverride.cs │ │ │ ├── customconstantattribute.cs │ │ │ ├── datetimeconstantattribute.cs │ │ │ ├── decimalconstantattribute.cs │ │ │ ├── decoratednameattribute.cs │ │ │ ├── discardableattribute.cs │ │ │ ├── fixedaddressvaluetypeattribute.cs │ │ │ ├── fixedbufferattribute.cs │ │ │ ├── hascopysemanticsattribute.cs │ │ │ ├── indexernameattribute.cs │ │ │ ├── internalsvisibletoattribute.cs │ │ │ ├── isboxed.cs │ │ │ ├── isbyvalue.cs │ │ │ ├── isconst.cs │ │ │ ├── iscopyconstructed.cs │ │ │ ├── isexplicitlydereferenced.cs │ │ │ ├── isimplicitlydereferenced.cs │ │ │ ├── isjitintrinsic.cs │ │ │ ├── islong.cs │ │ │ ├── ispinned.cs │ │ │ ├── issignunspecifiedbyte.cs │ │ │ ├── isudtreturn.cs │ │ │ ├── isvolatile.cs │ │ │ ├── methodimplattribute.cs │ │ │ ├── nativecppclassattribute.cs │ │ │ ├── requiredattributeattribute.cs │ │ │ ├── runtimecompatibilityattribute.cs │ │ │ ├── runtimehelpers.cs │ │ │ ├── runtimewrappedexception.cs │ │ │ ├── scopelessenumattribute.cs │ │ │ ├── specialnameattribute.cs │ │ │ ├── suppressildasmattribute.cs │ │ │ ├── suppressmergecheckattribute.cs │ │ │ ├── typedependencyattribute.cs │ │ │ ├── typeforwardedtoattribute.cs │ │ │ └── unsafevaluetypeattribute.cs │ │ ├── gcsettings.cs │ │ ├── interopservices │ │ │ ├── arraywithoffset.cs │ │ │ ├── attributes.cs │ │ │ ├── callingconvention.cs │ │ │ ├── charset.cs │ │ │ ├── comexception.cs │ │ │ ├── criticalhandle.cs │ │ │ ├── expando │ │ │ │ └── iexpando.cs │ │ │ ├── externalexception.cs │ │ │ ├── gchandle.cs │ │ │ ├── gchandlecookietable.cs │ │ │ ├── handleref.cs │ │ │ ├── icustommarshaler.cs │ │ │ ├── iexception.cs │ │ │ ├── invalidolevarianttypeexception.cs │ │ │ ├── layoutkind.cs │ │ │ ├── marshal.cs │ │ │ ├── marshaldirectiveexception.cs │ │ │ ├── pinvokemap.cs │ │ │ ├── runtimeenvironment.cs │ │ │ ├── safehandle.cs │ │ │ └── sehexception.cs │ │ ├── memoryfailpoint.cs │ │ ├── reliability │ │ │ ├── criticalfinalizerobject.cs │ │ │ ├── prepreparemethodattribute.cs │ │ │ └── reliabilitycontractattribute.cs │ │ ├── remoting │ │ │ ├── __hresults.cs │ │ │ ├── __transparentproxy.cs │ │ │ ├── activationservices.cs │ │ │ ├── asyncresult.cs │ │ │ ├── callcontext.cs │ │ │ ├── channelservices.cs │ │ │ ├── channelsinkstacks.cs │ │ │ ├── clientsponsor.cs │ │ │ ├── configuration.cs │ │ │ ├── context.cs │ │ │ ├── contextproperty.cs │ │ │ ├── crossappdomainchannel.cs │ │ │ ├── crosscontextchannel.cs │ │ │ ├── dispatchchannelsink.cs │ │ │ ├── dynamicpropertyholder.cs │ │ │ ├── header.cs │ │ │ ├── headerhandler.cs │ │ │ ├── iactivator.cs │ │ │ ├── ichannel.cs │ │ │ ├── icontributeclientcontextsink.cs │ │ │ ├── icontributedynamicsink.cs │ │ │ ├── icontributeenvoysink.cs │ │ │ ├── icontributeobjectsink.cs │ │ │ ├── icontributeservercontextsink.cs │ │ │ ├── identity.cs │ │ │ ├── identityholder.cs │ │ │ ├── idynamicmessagesink.cs │ │ │ ├── iinternalmessage.cs │ │ │ ├── ilease.cs │ │ │ ├── imessage.cs │ │ │ ├── imessagectrl.cs │ │ │ ├── imessagesink.cs │ │ │ ├── imethodmessage.cs │ │ │ ├── iremotingformatter.cs │ │ │ ├── isecurablechannel.cs │ │ │ ├── isponsor.cs │ │ │ ├── lease.cs │ │ │ ├── leasemanager.cs │ │ │ ├── leasestate.cs │ │ │ ├── lifetimeservices.cs │ │ │ ├── message.cs │ │ │ ├── messagesmuggler.cs │ │ │ ├── objecthandle.cs │ │ │ ├── objref.cs │ │ │ ├── onewayattribute.cs │ │ │ ├── proxyattribute.cs │ │ │ ├── realproxy.cs │ │ │ ├── redirectionproxy.cs │ │ │ ├── remotingattributes.cs │ │ │ ├── remotingconfigparser.cs │ │ │ ├── remotingconfiguration.cs │ │ │ ├── remotingexception.cs │ │ │ ├── remotingproxy.cs │ │ │ ├── remotingservices.cs │ │ │ ├── remotingsurrogateselector.cs │ │ │ ├── serveridentity.cs │ │ │ ├── soap.cs │ │ │ ├── soapinteroptypes.cs │ │ │ ├── stackbuildersink.cs │ │ │ ├── synchronizeddispatch.cs │ │ │ ├── terminatorsinks.cs │ │ │ ├── trackingservices.cs │ │ │ └── urlattribute.cs │ │ ├── serialization │ │ │ ├── deserializationeventhandler.cs │ │ │ ├── formatter.cs │ │ │ ├── formatterconverter.cs │ │ │ ├── formatters │ │ │ │ ├── binary │ │ │ │ │ ├── binarycommonclasses.cs │ │ │ │ │ ├── binaryconverter.cs │ │ │ │ │ ├── binaryenums.cs │ │ │ │ │ ├── binaryformatter.cs │ │ │ │ │ ├── binaryformatterwriter.cs │ │ │ │ │ ├── binarymethodmessage.cs │ │ │ │ │ ├── binaryobjectinfo.cs │ │ │ │ │ ├── binaryobjectreader.cs │ │ │ │ │ ├── binaryobjectwriter.cs │ │ │ │ │ ├── binaryparser.cs │ │ │ │ │ └── binaryutilclasses.cs │ │ │ │ ├── commonenums.cs │ │ │ │ ├── ifieldinfo.cs │ │ │ │ ├── isoapmessage.cs │ │ │ │ ├── sertrace.cs │ │ │ │ ├── soapfault.cs │ │ │ │ └── soapmessage.cs │ │ │ ├── formatterservices.cs │ │ │ ├── ideserializationcallback.cs │ │ │ ├── iformatter.cs │ │ │ ├── iformatterconverter.cs │ │ │ ├── iobjectreference.cs │ │ │ ├── iserializable.cs │ │ │ ├── iserializationsurrogate.cs │ │ │ ├── isurrogateselector.cs │ │ │ ├── memberholder.cs │ │ │ ├── objectclonehelper.cs │ │ │ ├── objectidgenerator.cs │ │ │ ├── objectmanager.cs │ │ │ ├── serializationattributes.cs │ │ │ ├── serializationbinder.cs │ │ │ ├── serializationeventscache.cs │ │ │ ├── serializationexception.cs │ │ │ ├── serializationfieldinfo.cs │ │ │ ├── serializationinfo.cs │ │ │ ├── serializationinfoenumerator.cs │ │ │ ├── serializationobjectmanager.cs │ │ │ ├── streamingcontext.cs │ │ │ ├── surrogateselector.cs │ │ │ └── valuetypefixupinfo.cs │ │ └── versioning │ │ │ └── resourceattributes.cs │ │ ├── runtimeargumenthandle.cs │ │ ├── runtimehandles.cs │ │ ├── sbyte.cs │ │ ├── security │ │ ├── attributes.cs │ │ ├── codeaccesspermission.cs │ │ ├── codeaccesssecurityengine.cs │ │ ├── cryptography │ │ │ ├── crypto.cs │ │ │ ├── icryptotransform.cs │ │ │ ├── randomnumbergenerator.cs │ │ │ ├── rngcryptoserviceprovider.cs │ │ │ └── x509certificates │ │ │ │ └── x509certificate.cs │ │ ├── framesecuritydescriptor.cs │ │ ├── hostprotectionexception.cs │ │ ├── hostsecuritymanager.cs │ │ ├── ievidencefactory.cs │ │ ├── ipermission.cs │ │ ├── isecurityencodable.cs │ │ ├── isecuritypolicyencodable.cs │ │ ├── istackwalk.cs │ │ ├── namedpermissionset.cs │ │ ├── permissionlistset.cs │ │ ├── permissions │ │ │ ├── environmentpermission.cs │ │ │ ├── filedialogpermission.cs │ │ │ ├── fileiopermission.cs │ │ │ ├── gacidentitypermission.cs │ │ │ ├── hostprotectionpermission.cs │ │ │ ├── ibuiltinpermission.cs │ │ │ ├── isolatedstoragefilepermission.cs │ │ │ ├── isolatedstoragepermission.cs │ │ │ ├── iunrestrictedpermission.cs │ │ │ ├── permissionattributes.cs │ │ │ ├── permissionstate.cs │ │ │ ├── principalpermission.cs │ │ │ ├── reflectionpermission.cs │ │ │ ├── securitypermission.cs │ │ │ ├── siteidentitypermission.cs │ │ │ ├── strongnameidentitypermission.cs │ │ │ ├── strongnamepublickeyblob.cs │ │ │ ├── uipermission.cs │ │ │ ├── urlidentitypermission.cs │ │ │ └── zoneidentitypermission.cs │ │ ├── permissionset.cs │ │ ├── permissionsetenumerator.cs │ │ ├── permissionsettriple.cs │ │ ├── permissiontoken.cs │ │ ├── policy │ │ │ ├── allmembershipcondition.cs │ │ │ ├── applicationdirectory.cs │ │ │ ├── applicationdirectorymembershipcondition.cs │ │ │ ├── applicationsecurityinfo.cs │ │ │ ├── applicationsecuritymanager.cs │ │ │ ├── applicationtrust.cs │ │ │ ├── codegroup.cs │ │ │ ├── evidence.cs │ │ │ ├── filecodegroup.cs │ │ │ ├── firstmatchcodegroup.cs │ │ │ ├── gac.cs │ │ │ ├── gacmembershipcondition.cs │ │ │ ├── iapplicationtrustmanager.cs │ │ │ ├── ibuiltinevidence.cs │ │ │ ├── iconstantmembershipcondition.cs │ │ │ ├── iidentitypermissionfactory.cs │ │ │ ├── imembershipcondition.cs │ │ │ ├── netcodegroup.cs │ │ │ ├── permissionrequestevidence.cs │ │ │ ├── policyexception.cs │ │ │ ├── policylevel.cs │ │ │ ├── policystatement.cs │ │ │ ├── site.cs │ │ │ ├── sitemembershipcondition.cs │ │ │ ├── strongname.cs │ │ │ ├── strongnamemembershipcondition.cs │ │ │ ├── unioncodegroup.cs │ │ │ ├── url.cs │ │ │ ├── urlmembershipcondition.cs │ │ │ ├── zone.cs │ │ │ └── zonemembershipcondition.cs │ │ ├── policymanager.cs │ │ ├── principal │ │ │ ├── genericidentity.cs │ │ │ ├── genericprincipal.cs │ │ │ ├── iidentity.cs │ │ │ ├── iprincipal.cs │ │ │ └── principalpolicy.cs │ │ ├── securitycontext.cs │ │ ├── securitydocument.cs │ │ ├── securityelement.cs │ │ ├── securityexception.cs │ │ ├── securityframe.cs │ │ ├── securitymanager.cs │ │ ├── securityruntime.cs │ │ ├── securityzone.cs │ │ ├── util │ │ │ ├── config.cs │ │ │ ├── hex.cs │ │ │ ├── parser.cs │ │ │ ├── sitestring.cs │ │ │ ├── stringexpressionset.cs │ │ │ ├── tokenbasedset.cs │ │ │ ├── tokenbasedsetenumerator.cs │ │ │ ├── tokenizer.cs │ │ │ ├── urlstring.cs │ │ │ └── xmlutil.cs │ │ ├── verificationexception.cs │ │ └── xmlsyntaxexception.cs │ │ ├── serializableattribute.cs │ │ ├── sharedstatics.cs │ │ ├── single.cs │ │ ├── stackoverflowexception.cs │ │ ├── string.cs │ │ ├── stringcomparer.cs │ │ ├── stringcomparison.cs │ │ ├── stringfreezingattribute.cs │ │ ├── systemexception.cs │ │ ├── text │ │ ├── asciiencoding.cs │ │ ├── basecodepageencoding.cs │ │ ├── codepageencoding.cs │ │ ├── dbcscodepageencoding.cs │ │ ├── decoder.cs │ │ ├── decoderbestfitfallback.cs │ │ ├── decoderexceptionfallback.cs │ │ ├── decoderfallback.cs │ │ ├── decodernls.cs │ │ ├── decoderreplacementfallback.cs │ │ ├── encoder.cs │ │ ├── encoderbestfitfallback.cs │ │ ├── encoderexceptionfallback.cs │ │ ├── encoderfallback.cs │ │ ├── encodernls.cs │ │ ├── encoderreplacementfallback.cs │ │ ├── encoding.cs │ │ ├── encodinginfo.cs │ │ ├── encodingnls.cs │ │ ├── eucjpencoding.cs │ │ ├── gb18030encoding.cs │ │ ├── isciiencoding.cs │ │ ├── iso2022encoding.cs │ │ ├── latin1encoding.cs │ │ ├── mlangcodepageencoding.cs │ │ ├── normalization.cs │ │ ├── sbcscodepageencoding.cs │ │ ├── stringbuilder.cs │ │ ├── surrogateencoder.cs │ │ ├── unicodeencoding.cs │ │ ├── utf32encoding.cs │ │ ├── utf7encoding.cs │ │ └── utf8encoding.cs │ │ ├── threadattributes.cs │ │ ├── threading │ │ ├── abandonedmutexexception.cs │ │ ├── autoresetevent.cs │ │ ├── cancellationregion.cs │ │ ├── cancellationsignal.cs │ │ ├── compressedstack.cs │ │ ├── eventresetmode.cs │ │ ├── eventwaithandle.cs │ │ ├── executioncontext.cs │ │ ├── hostexecutioncontextmanager.cs │ │ ├── interlocked.cs │ │ ├── iobjecthandle.cs │ │ ├── lockcookie.cs │ │ ├── manualresetevent.cs │ │ ├── monitor.cs │ │ ├── mutex.cs │ │ ├── overlapped.cs │ │ ├── parameterizedthreadstart.cs │ │ ├── readerwriterlock.cs │ │ ├── synchronizationcontext.cs │ │ ├── synchronizationlockexception.cs │ │ ├── thread.cs │ │ ├── threadabortexception.cs │ │ ├── threadinterruptedexception.cs │ │ ├── threadpool.cs │ │ ├── threadpriority.cs │ │ ├── threadstart.cs │ │ ├── threadstartexception.cs │ │ ├── threadstate.cs │ │ ├── threadstateexception.cs │ │ ├── timeout.cs │ │ ├── timer.cs │ │ ├── waithandle.cs │ │ └── waithandlecannotbeopenedexception.cs │ │ ├── threadstaticattribute.cs │ │ ├── throwhelper.cs │ │ ├── timeoutexception.cs │ │ ├── timespan.cs │ │ ├── timezone.cs │ │ ├── type.cs │ │ ├── typecode.cs │ │ ├── typedreference.cs │ │ ├── typeinitializationexception.cs │ │ ├── typeloadexception.cs │ │ ├── typeunloadedexception.cs │ │ ├── uint16.cs │ │ ├── uint32.cs │ │ ├── uint64.cs │ │ ├── uintptr.cs │ │ ├── unauthorizedaccessexception.cs │ │ ├── unhandledexceptioneventargs.cs │ │ ├── unhandledexceptioneventhandler.cs │ │ ├── unityserializationholder.cs │ │ ├── unsafecharbuffer.cs │ │ ├── valuetype.cs │ │ ├── variant.cs │ │ ├── version.cs │ │ ├── void.cs │ │ ├── weakreference.cs │ │ └── xmlignorememberattribute.cs │ ├── classlibnative │ ├── dirs │ ├── float │ │ ├── comfloat.cpp │ │ ├── comfloat.h │ │ ├── dirs │ │ ├── sources.inc │ │ └── wks │ │ │ ├── makefile │ │ │ └── sources │ ├── inc │ │ ├── comfloatclass.h │ │ ├── comnls.h │ │ ├── comnlsinfo.h │ │ └── nlstable.h │ └── nls │ │ ├── casingtable.cpp │ │ ├── casingtable.h │ │ ├── comnlsinfo.cpp │ │ ├── comnlsinfodata.cpp │ │ ├── dirs │ │ ├── encodingdata.cpp │ │ ├── globalizationassembly.cpp │ │ ├── globalizationassembly.h │ │ ├── jamo.cpp │ │ ├── nativetextinfo.cpp │ │ ├── nativetextinfo.h │ │ ├── nlstable.cpp │ │ ├── sortingtable.cpp │ │ ├── sortingtable.h │ │ ├── sortingtablefile.cpp │ │ ├── sortingtablefile.h │ │ ├── sources.inc │ │ ├── unicodecattable.cpp │ │ ├── unicodecattable.h │ │ └── wks │ │ ├── makefile │ │ └── sources │ ├── dacupdatedll │ ├── makefile │ ├── makefile.inc │ └── sources │ ├── debug │ ├── cordbg │ │ ├── cordbg.cpp │ │ ├── makefile │ │ ├── native.rc │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── daccess │ │ ├── daccess.cpp │ │ ├── dacfn.cpp │ │ ├── dacimpl.h │ │ ├── dirs │ │ ├── enummem.cpp │ │ ├── fntableaccess.cpp │ │ ├── fntableaccess.h │ │ ├── inspect.cpp │ │ ├── reimpl.cpp │ │ ├── request.cpp │ │ ├── request_svr.cpp │ │ ├── sources.inc │ │ ├── stack.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── task.cpp │ │ └── wks │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ └── sources │ ├── di │ │ ├── breakpoint.cpp │ │ ├── classfactory.h │ │ ├── cordb.cpp │ │ ├── divalue.cpp │ │ ├── hash.cpp │ │ ├── i386 │ │ │ ├── cordbregisterset.cpp │ │ │ └── primitives.cpp │ │ ├── makefile │ │ ├── module.cpp │ │ ├── ppc │ │ │ ├── cordbregisterset.cpp │ │ │ └── primitives.cpp │ │ ├── process.cpp │ │ ├── publish.cpp │ │ ├── rotor_x86 │ │ │ ├── cordbregisterset.cpp │ │ │ └── primitives.cpp │ │ ├── rsappdomain.cpp │ │ ├── rsassembly.cpp │ │ ├── rsmain.cpp │ │ ├── rsmda.cpp │ │ ├── rspriv.h │ │ ├── rspriv.inl │ │ ├── rsregsetcommon.cpp │ │ ├── rsthread.cpp │ │ ├── rstype.cpp │ │ ├── shared.cpp │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── dirs │ ├── ee │ │ ├── canary.cpp │ │ ├── canary.h │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── controller.inl │ │ ├── dacwks │ │ │ ├── makefile │ │ │ └── sources │ │ ├── debugger.cpp │ │ ├── debugger.h │ │ ├── debugger.inl │ │ ├── debuggermodule.cpp │ │ ├── dirs │ │ ├── frameinfo.cpp │ │ ├── frameinfo.h │ │ ├── funceval.cpp │ │ ├── functioninfo.cpp │ │ ├── i386 │ │ │ ├── dbghelpers.asm │ │ │ ├── dbghelpers.s │ │ │ ├── debuggerregdisplayhelper.cpp │ │ │ ├── primitives.cpp │ │ │ └── x86walker.cpp │ │ ├── ppc │ │ │ ├── dbghelpers.s │ │ │ ├── debuggerregdisplayhelper.cpp │ │ │ ├── ppcwalker.cpp │ │ │ └── primitives.cpp │ │ ├── rcthread.cpp │ │ ├── rotor_x86 │ │ │ ├── dbghelpers.asm │ │ │ ├── dbghelpers.s │ │ │ ├── debuggerregdisplayhelper.cpp │ │ │ ├── primitives.cpp │ │ │ └── x86walker.cpp │ │ ├── shared.cpp │ │ ├── sources.inc │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── thread.cpp │ │ ├── walker.h │ │ └── wks │ │ │ ├── makefile │ │ │ └── sources │ ├── inc │ │ ├── common.h │ │ ├── dbgappdomain.h │ │ ├── dbgipcevents.h │ │ ├── dbgipceventtypes.h │ │ ├── i386 │ │ │ └── primitives.h │ │ └── ppc │ │ │ └── primitives.h │ ├── shared │ │ ├── i386 │ │ │ └── primitives.cpp │ │ ├── ppc │ │ │ └── primitives.cpp │ │ ├── rotor_x86 │ │ │ └── primitives.cpp │ │ └── utils.cpp │ └── shell │ │ ├── commands.cpp │ │ ├── debuggerutil.cpp │ │ ├── debuggerutil.h │ │ ├── disassem.cpp │ │ ├── dshell.cpp │ │ ├── dshell.h │ │ ├── i386 │ │ └── regsdbgrcommand.cpp │ │ ├── internalonly.cpp │ │ ├── internalonly.h │ │ ├── makefile │ │ ├── ppc │ │ └── regsdbgrcommand.cpp │ │ ├── regsdbgrcommand.h │ │ ├── rotor_x86 │ │ └── regsdbgrcommand.cpp │ │ ├── shell.cpp │ │ ├── shell.h │ │ ├── source.cpp │ │ ├── sources │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── utf.cpp │ │ └── utf.h │ ├── dirs │ ├── dlls │ ├── culture │ │ ├── culture.cpp │ │ ├── culture.def │ │ ├── culture.h │ │ ├── culturedata.h │ │ ├── makefile │ │ ├── native.rc │ │ └── sources │ ├── dirs │ ├── mscordac │ │ ├── dirs │ │ ├── mscordac.cpp │ │ ├── mscordac.def │ │ ├── native.rc │ │ ├── sources.inc │ │ └── wks │ │ │ ├── makefile │ │ │ └── sources │ ├── mscordbc │ │ ├── makefile │ │ ├── mscordbc.cpp │ │ ├── mscordbc.def │ │ ├── native.rc │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mscordbi │ │ ├── makefile │ │ ├── mscordbi.cpp │ │ ├── mscordbi.src │ │ ├── native.rc │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mscoree │ │ ├── dirs │ │ ├── mscoree.cpp │ │ ├── mscorwks_ntdef.src │ │ ├── native.rc │ │ ├── sources.inc │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wks │ │ │ ├── makefile │ │ │ └── sources │ │ ├── xmlreader.cpp │ │ └── xmlstream.cpp │ ├── mscorpe │ │ ├── ceefilegenwriter.cpp │ │ ├── ceefilegenwritertokens.cpp │ │ ├── iceefilegen.cpp │ │ ├── makefile │ │ ├── mscorpe.def │ │ ├── native.rc │ │ ├── pewriter.cpp │ │ ├── pewriter.h │ │ ├── sources │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── stubs.h │ ├── mscorrc │ │ ├── fuslog.rc │ │ ├── fusres.h │ │ ├── include.rc │ │ ├── makefile │ │ ├── mscorrc.def │ │ ├── mscorrc.rc │ │ ├── mscorrc.rc2 │ │ ├── resource.h │ │ └── sources │ ├── normalization │ │ ├── buffer.h │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── makefile │ │ ├── native.rc │ │ ├── normalization.cpp │ │ ├── normalization.def │ │ ├── normalization.h │ │ ├── normalizationdll.cpp │ │ ├── normalizationhelp.h │ │ ├── normalizationprivate.h │ │ └── sources │ └── shim │ │ ├── stdafx.h │ │ ├── xmlreader.cpp │ │ ├── xmlreader.h │ │ └── xmlstream.cpp │ ├── fjit │ ├── fjit.cpp │ ├── fjit.h │ ├── fjitcompiler.cpp │ ├── fjitcore.h │ ├── fjitdef.h │ ├── fjitencode.cpp │ ├── fjitencode.h │ ├── fjitverifier.cpp │ ├── fjitverifier.h │ ├── i386 │ │ ├── cx86def.h │ │ ├── x86def.h │ │ ├── x86fjit.h │ │ ├── x86fjitasm.asm │ │ └── x86fjitasm.s │ ├── ifjitcompiler.h │ ├── jitpch.h │ ├── makefile │ ├── makefile.inc │ ├── mscorejt.def │ ├── native.rc │ ├── ppc │ │ ├── cppcdef.h │ │ ├── ppcdef.h │ │ ├── ppcfjit.h │ │ └── ppcfjitasm.s │ ├── rotor_x86 │ │ ├── x86fjitasm.asm │ │ └── x86fjitasm.s │ └── sources │ ├── fusion │ ├── asmcache │ │ ├── asmcache.cpp │ │ ├── asmenum.cpp │ │ ├── asmint.cpp │ │ ├── asmitem.cpp │ │ ├── asmstrm.cpp │ │ ├── cache.cpp │ │ ├── cacheutils.cpp │ │ ├── enum.cpp │ │ ├── makefile │ │ ├── scavenger.cpp │ │ ├── sources │ │ ├── sources.inc │ │ └── transprt.cpp │ ├── binder │ │ ├── actasm.cpp │ │ ├── appctx.cpp │ │ ├── asm.cpp │ │ ├── asmidmgr.cpp │ │ ├── asmreflist.cpp │ │ ├── bindhelpers.cpp │ │ ├── bindresult.cpp │ │ ├── fusconfig.cpp │ │ ├── fxretarget.cpp │ │ ├── hostasm.cpp │ │ ├── hostmodimprt.cpp │ │ ├── hostpcymgr.cpp │ │ ├── makefile │ │ ├── naming.cpp │ │ ├── nodefact.cpp │ │ ├── parse.cpp │ │ ├── pcycache.cpp │ │ ├── policy.cpp │ │ ├── simplesink.cpp │ │ ├── sources │ │ └── sources.inc │ ├── dirs │ ├── download │ │ ├── adl.cpp │ │ ├── adlmgr.cpp │ │ ├── cblist.cpp │ │ ├── clbind.cpp │ │ ├── hashnode.cpp │ │ ├── makefile │ │ ├── mdlmgr.cpp │ │ ├── probing.cpp │ │ ├── sources │ │ └── sources.inc │ ├── fusion.inc │ ├── inc │ │ ├── actasm.h │ │ ├── adl.h │ │ ├── adlmgr.h │ │ ├── appctx.h │ │ ├── asm.h │ │ ├── asmcache.h │ │ ├── asmenum.h │ │ ├── asmidmgr.h │ │ ├── asmimprt.h │ │ ├── asmint.h │ │ ├── asmitem.h │ │ ├── asmreflist.h │ │ ├── asmstrm.h │ │ ├── bindhelpers.h │ │ ├── bindresult.h │ │ ├── cache.h │ │ ├── cacheutils.h │ │ ├── cblist.h │ │ ├── cfgdata.h │ │ ├── clbind.h │ │ ├── dbglog.h │ │ ├── disk.h │ │ ├── enum.h │ │ ├── fstream.h │ │ ├── fusconfig.h │ │ ├── fusionheap.h │ │ ├── fusionp.h │ │ ├── hashnode.h │ │ ├── helpers.h │ │ ├── hostasm.h │ │ ├── hostmodimprt.h │ │ ├── hostpcymgr.h │ │ ├── imprthelpers.h │ │ ├── list.h │ │ ├── lock.h │ │ ├── mdlmgr.h │ │ ├── modimprt.h │ │ ├── mstream.h │ │ ├── naming.h │ │ ├── nodefact.h │ │ ├── parse.h │ │ ├── pcycache.h │ │ ├── policy.h │ │ ├── probing.h │ │ ├── scavenger.h │ │ ├── simplesink.h │ │ ├── transprt.h │ │ ├── util.h │ │ └── xmlns.h │ ├── mparse │ │ ├── asmimprt.cpp │ │ ├── imprthelpers.cpp │ │ ├── makefile │ │ ├── modimprt.cpp │ │ ├── niimprt.cpp │ │ ├── sources │ │ └── sources.inc │ └── utils │ │ ├── dbglog.cpp │ │ ├── disk.cpp │ │ ├── fstream.cpp │ │ ├── helpers.cpp │ │ ├── makefile │ │ ├── mstream.cpp │ │ ├── sources │ │ ├── sources.inc │ │ └── xmlns.cpp │ ├── ilasm │ ├── asmenum.h │ ├── asmman.cpp │ ├── asmman.hpp │ ├── asmparse.h │ ├── asmparse.y │ ├── asmtemplates.h │ ├── assem.cpp │ ├── assembler.cpp │ ├── assembler.h │ ├── binstr.h │ ├── class.hpp │ ├── extractgrammar.pl │ ├── main.cpp │ ├── makefile │ ├── makefile.inc │ ├── method.cpp │ ├── method.hpp │ ├── native.rc │ ├── nvpair.h │ ├── sources │ ├── typar.hpp │ ├── writer.cpp │ └── writer_enc.cpp │ ├── ildasm │ ├── ceeload.cpp │ ├── ceeload.h │ ├── dasm.cpp │ ├── dasm.rc │ ├── dasm_mi.cpp │ ├── dasm_sz.cpp │ ├── dasm_sz.h │ ├── dasmenum.hpp │ ├── dasmgui.h │ ├── dis.cpp │ ├── dis.h │ ├── dman.cpp │ ├── dres.cpp │ ├── dynamicarray.h │ ├── formattype.cpp │ ├── formattype.h │ ├── makefile │ ├── makefile.inc │ ├── resource.h │ ├── sources │ ├── util.hpp │ └── windasm.cpp │ ├── inc │ ├── allocacheck.h │ ├── apithreadstress.cpp │ ├── apithreadstress.h │ ├── arraylist.h │ ├── assemblyfilehash.h │ ├── bbsweep.h │ ├── bitmask.h │ ├── bitmask.inl │ ├── blobfetcher.h │ ├── cahlpr.h │ ├── ceefilegenwriter.h │ ├── ceegen.h │ ├── ceegentokenmapper.h │ ├── ceesectionstring.h │ ├── check.h │ ├── check.inl │ ├── circularlog.h │ ├── classfac.h │ ├── clrdata.idl │ ├── clrhost.h │ ├── clrinternal.idl │ ├── clrntexception.h │ ├── clrtypes.h │ ├── columnbinding.h │ ├── compatibilityflags.h │ ├── compatibilityflagsdef.h │ ├── contract.h │ ├── contract.inl │ ├── contxt.h │ ├── cor.h │ ├── cordbpriv.h │ ├── cordebug.idl │ ├── corerror.h │ ├── corexcep.h │ ├── corffi.idl │ ├── corhdr.h │ ├── corhlpr.cpp │ ├── corhlpr.h │ ├── corhost.h │ ├── corimage.h │ ├── corinfo.h │ ├── corjit.h │ ├── corperfmonsymbols.h │ ├── corperm.h │ ├── corperme.h │ ├── corpermp.h │ ├── corpolicy.h │ ├── corpriv.h │ ├── corprof.idl │ ├── corpub.idl │ ├── cortpoolhdr.h │ ├── cortypeinfo.h │ ├── crstlevels.h │ ├── crtwrap.h │ ├── daccess.h │ ├── dacprivate.h │ ├── dacvars.h │ ├── dbgalloc.h │ ├── dbgmeta.h │ ├── debugmacros.h │ ├── debugmacrosext.h │ ├── debugreturn.h │ ├── declsec.h │ ├── dlwrap.h │ ├── eetwain.h │ ├── eexcp.h │ ├── enc.h │ ├── entrypoints.h │ ├── eventtrace.h │ ├── ex.h │ ├── factory.h │ ├── factory.inl │ ├── fusion.idl │ ├── fusionbind.h │ ├── fusionpriv.idl │ ├── fusionsetup.h │ ├── fusionsink.h │ ├── gcdecoder.cpp │ ├── gcdump.h │ ├── gchost.idl │ ├── gcinfo.h │ ├── genericstackprobe.h │ ├── genrops.pl │ ├── guidfromname.h │ ├── holder.h │ ├── holderinst.h │ ├── hrex.h │ ├── iceefilegen.h │ ├── il_kywd.h │ ├── ilformatter.h │ ├── internaldebug.h │ ├── intrinsic.h │ ├── ipcfunccall.h │ ├── ipcmanagerinterface.h │ ├── iterator.h │ ├── ivalidator.idl │ ├── ivehandler.idl │ ├── jithelpers.h │ ├── jitperf.h │ ├── loaderheap.h │ ├── log.h │ ├── loglf.h │ ├── machine.h │ ├── makefile │ ├── makefile.inc │ ├── md5.h │ ├── mdcommon.h │ ├── memorypool.h │ ├── memoryreport.h │ ├── metadata.h │ ├── metadatatracker.h │ ├── metamodelpub.h │ ├── mscorcfg.h │ ├── mscoree.idl │ ├── nativevaraccessors.h │ ├── new.hpp │ ├── nibblemapmacros.h │ ├── nibblestream.h │ ├── nsutilpriv.h │ ├── opcode.def │ ├── openum.h │ ├── opinfo.h │ ├── ostype.h │ ├── outstring.h │ ├── palclr.h │ ├── pedecoder.h │ ├── pedecoder.inl │ ├── perfcounterdefs.h │ ├── perfcounters.h │ ├── perflog.h │ ├── pesectionman.h │ ├── posterror.h │ ├── predeftlsslot.h │ ├── prettyprintsig.h │ ├── priorityqueue.h │ ├── priorityqueue.inl │ ├── profiledatastore.h │ ├── profilepriv.h │ ├── querybinding.h │ ├── rangetree.h │ ├── regdisp.h │ ├── safecast.h │ ├── safegetfilesize.h │ ├── safemath.h │ ├── safewrap.h │ ├── sarray.h │ ├── sarray.inl │ ├── sbuffer.h │ ├── sbuffer.inl │ ├── securitywrapper.h │ ├── setupcodes.h │ ├── shash.h │ ├── shash.inl │ ├── shimload.h │ ├── sighelper.h │ ├── sigparser.h │ ├── sources │ ├── sstring.h │ ├── sstring.inl │ ├── stackframe.h │ ├── stacktrace.h │ ├── staticcontract.h │ ├── stdmacros.h │ ├── stgpool.h │ ├── stgpooli.h │ ├── stresslog.h │ ├── strongname.h │ ├── switches.h │ ├── testhook.h │ ├── threadpool.h │ ├── timeline.h │ ├── timer.h │ ├── tls.h │ ├── unsafe.h │ ├── utilcode.h │ ├── utsem.h │ ├── vererror.h │ ├── vptr_list.h │ ├── warningcontrol.h │ ├── winwrap.h │ ├── wsinfo.h │ ├── xclrdata.idl │ └── xmlparser.h │ ├── ipcman │ ├── dirs │ ├── ipcfunccallimpl.cpp │ ├── ipcheader.h │ ├── ipcman │ │ ├── makefile │ │ └── sources │ ├── ipcman_dac │ │ ├── makefile │ │ └── sources │ ├── ipcmanagerimpl.h │ ├── ipcreaderimpl.cpp │ ├── ipcshared.h │ ├── ipcsharedsrc.cpp │ ├── ipcwriterimpl.cpp │ ├── makefile.inc │ ├── sources.inc │ ├── stdafx.cpp │ └── stdafx.h │ ├── jit64 │ ├── dirs │ ├── inc │ │ ├── gverify.h │ │ ├── imeta.h │ │ ├── jit.h │ │ ├── jit64.h │ │ ├── newvstate.h │ │ ├── ophelper.h │ │ └── vtypeinfo.h │ ├── native.rc │ ├── newverify.cpp │ ├── peverify │ │ ├── config.h │ │ ├── jit.cpp │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── nopjit_datastructures.h │ │ ├── peverify.def │ │ ├── readerir.cpp │ │ └── sources │ ├── reader.cpp │ ├── reader.h │ ├── readerenum.h │ ├── readerir.h │ ├── sources.inc │ └── vtypeinfo.cpp │ ├── managedlibraries │ ├── dirs │ ├── remoting │ │ ├── channels │ │ │ ├── core │ │ │ │ ├── basetransportheaders.cs │ │ │ │ ├── basicasyncresult.cs │ │ │ │ ├── bytebufferpool.cs │ │ │ │ ├── chunkedmemorystream.cs │ │ │ │ ├── commonchannelkeys.cs │ │ │ │ ├── corechannel.cs │ │ │ │ ├── exclusivetcplistener.cs │ │ │ │ ├── nativemethods.cs │ │ │ │ ├── remotingauthentication.cs │ │ │ │ ├── requestqueue.cs │ │ │ │ ├── socketcache.cs │ │ │ │ ├── socketmanager.cs │ │ │ │ ├── socketstream.cs │ │ │ │ ├── streamhelper.cs │ │ │ │ └── stringhelper.cs │ │ │ ├── http │ │ │ │ ├── combinedhttpchannel.cs │ │ │ │ ├── httpchannelhelper.cs │ │ │ │ ├── httpclientchannel.cs │ │ │ │ ├── httpserverchannel.cs │ │ │ │ ├── httpsocketmanager.cs │ │ │ │ └── httpstreams.cs │ │ │ ├── sinks │ │ │ │ ├── binaryformattersinks.cs │ │ │ │ └── soapformattersinks.cs │ │ │ └── tcp │ │ │ │ ├── combinedtcpchannel.cs │ │ │ │ ├── tcpchannelhelper.cs │ │ │ │ ├── tcpclientchannel.cs │ │ │ │ ├── tcpclientsocketmanager.cs │ │ │ │ ├── tcpserverchannel.cs │ │ │ │ ├── tcpsocketmanager.cs │ │ │ │ ├── tcpstreams.cs │ │ │ │ └── tcpwireprotocol.cs │ │ ├── dirs │ │ ├── maindll │ │ │ ├── makefile │ │ │ ├── native.rc │ │ │ └── sources │ │ ├── metadata │ │ │ ├── metadata.cs │ │ │ ├── sdlchannelsink.cs │ │ │ ├── sdlparser.cs │ │ │ ├── sdlwriter.cs │ │ │ ├── sudscommon.cs │ │ │ ├── sudsparser.cs │ │ │ ├── sudswriter.cs │ │ │ ├── wsdlparser.cs │ │ │ └── wsdlwriter.cs │ │ ├── services │ │ │ └── remotingclientproxy.cs │ │ └── system.runtime.remoting.txt │ └── soapserializer │ │ ├── hwstack.cs │ │ ├── isoapparser.cs │ │ ├── makefile │ │ ├── native.rc │ │ ├── soapcommonclasses.cs │ │ ├── soapconverter.cs │ │ ├── soapenums.cs │ │ ├── soapformatter.cs │ │ ├── soapformatter.txt │ │ ├── soapobjectinfo.cs │ │ ├── soapobjectreader.cs │ │ ├── soapobjectwriter.cs │ │ ├── soapparser.cs │ │ ├── soapwriter.cs │ │ └── sources │ ├── md │ ├── ceefilegen │ │ ├── blobfetcher.cpp │ │ ├── cceegen.cpp │ │ ├── ceegentokenmapper.cpp │ │ ├── ceesectionstring.cpp │ │ ├── makefile │ │ ├── pesectionman.cpp │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── compiler │ │ ├── assemblymd.cpp │ │ ├── cacheload.h │ │ ├── classfactory.cpp │ │ ├── classfactory.h │ │ ├── custattr.cpp │ │ ├── custattr.h │ │ ├── dac │ │ │ ├── makefile │ │ │ └── sources │ │ ├── dirs │ │ ├── disp.cpp │ │ ├── disp.h │ │ ├── emit.cpp │ │ ├── filtermanager.cpp │ │ ├── filtermanager.h │ │ ├── full │ │ │ ├── makefile │ │ │ └── sources │ │ ├── helper.cpp │ │ ├── import.cpp │ │ ├── importhelper.cpp │ │ ├── importhelper.h │ │ ├── mdperf.cpp │ │ ├── mdperf.h │ │ ├── mdutil.cpp │ │ ├── mdutil.h │ │ ├── mdvalidator.cpp │ │ ├── newmerger.cpp │ │ ├── newmerger.h │ │ ├── regmeta.cpp │ │ ├── regmeta.h │ │ ├── sources.inc │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── tokenmapper.cpp │ ├── dirs │ ├── enc │ │ ├── dac │ │ │ ├── makefile │ │ │ └── sources │ │ ├── dirs │ │ ├── full │ │ │ ├── makefile │ │ │ └── sources │ │ ├── liteweightstgdbrw.cpp │ │ ├── mdinternalrw.cpp │ │ ├── metamodelenc.cpp │ │ ├── metamodelrw.cpp │ │ ├── peparse.cpp │ │ ├── rwutil.cpp │ │ ├── sources.inc │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── stgio.cpp │ │ ├── stgtiggerstorage.cpp │ │ └── stgtiggerstream.cpp │ ├── inc │ │ ├── assemblymdinternaldisp.h │ │ ├── cahlprinternal.h │ │ ├── liteweightstgdb.h │ │ ├── mdcolumndescriptors.h │ │ ├── mdfileformat.h │ │ ├── mdinternalrw.h │ │ ├── mdlog.h │ │ ├── metadatahash.h │ │ ├── metamodel.h │ │ ├── metamodelro.h │ │ ├── metamodelrw.h │ │ ├── recordpool.h │ │ ├── rwutil.h │ │ ├── stgio.h │ │ ├── stgtiggerstorage.h │ │ ├── stgtiggerstream.h │ │ ├── streamutil.h │ │ └── tokenmapper.h │ └── runtime │ │ ├── dac │ │ ├── makefile │ │ └── sources │ │ ├── dirs │ │ ├── full │ │ ├── makefile │ │ └── sources │ │ ├── liteweightstgdb.cpp │ │ ├── mdcolumndescriptors.cpp │ │ ├── mdfileformat.cpp │ │ ├── mdinternaldisp.cpp │ │ ├── mdinternaldisp.h │ │ ├── mdinternalro.cpp │ │ ├── mdinternalro.h │ │ ├── metamodel.cpp │ │ ├── metamodelcolumndefs.h │ │ ├── metamodelro.cpp │ │ ├── recordpool.cpp │ │ ├── sources.inc │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── profile │ ├── counters │ │ ├── makefile │ │ ├── perfcounters.cpp │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── dirs │ └── ee │ │ ├── eetoprofinterfaceimpl.cpp │ │ ├── eetoprofinterfaceimpl.h │ │ ├── info.cpp │ │ ├── makefile │ │ ├── profile.cpp │ │ ├── profile.h │ │ ├── sem.cpp │ │ ├── sem.h │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── toolbox │ ├── caspol │ │ ├── caspol.cs │ │ ├── caspol.txt │ │ ├── makefile │ │ ├── native.rc │ │ └── sources │ ├── dirs │ ├── isymmanagedwrapper │ │ ├── isymwrapper.cs │ │ ├── makefile │ │ └── sources │ ├── sos │ │ ├── dactablegen │ │ │ ├── main.cs │ │ │ ├── makefile │ │ │ ├── mapsymbolprovider.cs │ │ │ └── sources │ │ └── strike │ │ │ ├── data.h │ │ │ ├── disasm.cpp │ │ │ ├── disasm.h │ │ │ ├── disasmia64.cpp │ │ │ ├── disasmx86.cpp │ │ │ ├── dllsext.cpp │ │ │ ├── eeheap.cpp │ │ │ ├── exts.cpp │ │ │ ├── exts.h │ │ │ ├── gcroot.cpp │ │ │ ├── inc │ │ │ ├── dbgeng.h │ │ │ ├── dbghelp.h │ │ │ └── wdbgexts.h │ │ │ ├── makefile │ │ │ ├── metadata.cpp │ │ │ ├── native.rc │ │ │ ├── ntinfo.h │ │ │ ├── sildasm.cpp │ │ │ ├── sos.def │ │ │ ├── sos_md.h │ │ │ ├── sos_stacktrace.h │ │ │ ├── sosdocs.txt │ │ │ ├── sources │ │ │ ├── stresslogdump.cpp │ │ │ ├── strike.cpp │ │ │ ├── strike.h │ │ │ ├── symbol.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── utilcode.h │ │ │ ├── utilia64.cpp │ │ │ ├── utilx86.cpp │ │ │ └── vm.cpp │ └── storeadm │ │ ├── makefile │ │ ├── native.rc │ │ ├── sources │ │ ├── storeadm.cs │ │ └── storeadm.txt │ ├── tools │ ├── clix │ │ ├── clix.cpp │ │ ├── clix.h │ │ ├── clix.rc │ │ ├── makefile │ │ └── sources │ ├── dirs │ ├── gac │ │ ├── gac.cpp │ │ ├── gac.rc │ │ ├── gacwrap.cpp │ │ ├── gacwrap.h │ │ ├── list.h │ │ ├── makefile │ │ ├── native.rc │ │ ├── resource.h │ │ └── sources │ ├── ildbdump │ │ ├── ildbdump.cpp │ │ ├── makefile │ │ ├── sources │ │ └── stdafx.h │ ├── ildbsymbols │ │ ├── classfactory.h │ │ ├── ildbsymbols.cpp │ │ ├── ildbsymbols.def │ │ ├── makefile │ │ ├── pch.h │ │ ├── pdbdata.h │ │ ├── sources │ │ ├── symbinder.cpp │ │ ├── symbinder.h │ │ ├── symread.cpp │ │ ├── symread.h │ │ ├── symwrite.cpp │ │ ├── symwrite.h │ │ └── umisc.h │ ├── internalresgen │ │ ├── internalresgen.cpp │ │ ├── makefile │ │ ├── native.rc │ │ └── sources │ ├── metainfo │ │ ├── makefile │ │ ├── mdinfo.cpp │ │ ├── mdinfo.h │ │ ├── mdobj.cpp │ │ ├── metainfo.cpp │ │ ├── native.rc │ │ └── sources │ ├── peverify │ │ ├── main.cpp │ │ ├── makefile │ │ ├── native.rc │ │ ├── peverify.h │ │ ├── resource.h │ │ ├── sources │ │ ├── stdpch.cpp │ │ └── stdpch.h │ └── strongname │ │ ├── main.cpp │ │ ├── makefile │ │ ├── resources.h │ │ ├── sources │ │ └── strongname.rc │ ├── utilcode │ ├── apithreadstress.cpp │ ├── arraylist.cpp │ ├── assemblyfilehash.cpp │ ├── ccomprc.cpp │ ├── check.cpp │ ├── circularlog.cpp │ ├── clrhost.cpp │ ├── comex.cpp │ ├── corimage.cpp │ ├── dac │ │ ├── makefile │ │ └── sources │ ├── dacutil.cpp │ ├── dbgalloc.cpp │ ├── debug.cpp │ ├── dirs │ ├── dyncrt │ │ ├── makefile │ │ └── sources │ ├── dyncrtnohost │ │ ├── makefile │ │ └── sources │ ├── ex.cpp │ ├── format1.cpp │ ├── genericstackprobe.cpp │ ├── guidfromname.cpp │ ├── hostimpl.cpp │ ├── hostimpl.h │ ├── ilformatter.cpp │ ├── internaldebug.cpp │ ├── jitperf.cpp │ ├── loaderheap.cpp │ ├── log.cpp │ ├── makefile.inc │ ├── makepath.cpp │ ├── md5.cpp │ ├── memorypool.cpp │ ├── memoryreport.cpp │ ├── namespaceutil.cpp │ ├── opinfo.cpp │ ├── outstring.cpp │ ├── overrides.cpp │ ├── pedecoder.cpp │ ├── perflog.cpp │ ├── posterror.cpp │ ├── prettyprintsig.cpp │ ├── priorityqueue.cpp │ ├── rangetree.cpp │ ├── regutil.cpp │ ├── safewrap.cpp │ ├── sbuffer.cpp │ ├── securitywrapper.cpp │ ├── sighelper.cpp │ ├── sigparser.cpp │ ├── sources.inc │ ├── splitpat.cpp │ ├── sstring.cpp │ ├── sstring_com.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stgpool.cpp │ ├── stgpooli.cpp │ ├── stgpoolreadonly.cpp │ ├── tick.cpp │ ├── timeline.cpp │ ├── tls.cpp │ ├── util.cpp │ ├── utilmessagebox.cpp │ ├── utsem.cpp │ ├── winfix.cpp │ └── wsinfo.cpp │ ├── vm │ ├── appdomain.cpp │ ├── appdomain.hpp │ ├── appdomain.inl │ ├── appdomainhelper.cpp │ ├── appdomainhelper.h │ ├── appdomainnative.cpp │ ├── appdomainnative.hpp │ ├── appdomainstack.cpp │ ├── appdomainstack.h │ ├── appdomainstack.inl │ ├── argslot.h │ ├── array.cpp │ ├── array.h │ ├── assembly.cpp │ ├── assembly.hpp │ ├── assemblyname.cpp │ ├── assemblyname.hpp │ ├── assemblynative.cpp │ ├── assemblynative.hpp │ ├── assemblysink.cpp │ ├── assemblysink.h │ ├── assemblyspec.cpp │ ├── assemblyspec.hpp │ ├── binder.cpp │ ├── binder.h │ ├── cachelinealloc.cpp │ ├── cachelinealloc.h │ ├── ceeload.cpp │ ├── ceeload.h │ ├── ceeload.inl │ ├── ceemain.cpp │ ├── ceemain.h │ ├── certificatecache.cpp │ ├── certificatecache.h │ ├── cgensys.h │ ├── class.cpp │ ├── class.h │ ├── class.inl │ ├── classloadlevel.h │ ├── classnames.h │ ├── clrex.cpp │ ├── clrex.h │ ├── clsload.cpp │ ├── clsload.hpp │ ├── clsload.inl │ ├── codeman.cpp │ ├── codeman.h │ ├── codeman.inl │ ├── comarrayhelpers.cpp │ ├── comarrayhelpers.h │ ├── comarrayinfo.cpp │ ├── comarrayinfo.h │ ├── comcallablewrapper.cpp │ ├── comcallablewrapper.h │ ├── comcurrency.cpp │ ├── comcurrency.h │ ├── comdatetime.cpp │ ├── comdatetime.h │ ├── comdecimal.cpp │ ├── comdecimal.h │ ├── comdelegate.cpp │ ├── comdelegate.h │ ├── comdynamic.cpp │ ├── comdynamic.h │ ├── comisolatedstorage.cpp │ ├── comisolatedstorage.h │ ├── commemoryfailpoint.cpp │ ├── commemoryfailpoint.h │ ├── commethodrental.cpp │ ├── commethodrental.h │ ├── commodule.cpp │ ├── commodule.h │ ├── common.cpp │ ├── common.h │ ├── comnumber.cpp │ ├── comnumber.h │ ├── comobject.cpp │ ├── comobject.h │ ├── comreflectioncache.hpp │ ├── comreflectioncommon.cpp │ ├── comreflectioncommon.h │ ├── comstreams.cpp │ ├── comstreams.h │ ├── comstring.cpp │ ├── comstring.h │ ├── comstringbuffer.cpp │ ├── comstringbuffer.h │ ├── comstringcommon.h │ ├── comsynchronizable.cpp │ ├── comsynchronizable.h │ ├── comsystem.cpp │ ├── comsystem.h │ ├── comthreadpool.cpp │ ├── comthreadpool.h │ ├── comutilnative.cpp │ ├── comutilnative.h │ ├── comvarargs.cpp │ ├── comvarargs.h │ ├── comvariant.cpp │ ├── comvariant.h │ ├── comwaithandle.cpp │ ├── comwaithandle.h │ ├── confighelper.cpp │ ├── confighelper.h │ ├── constrainedexecutionregion.cpp │ ├── constrainedexecutionregion.h │ ├── context.h │ ├── contexts.cpp │ ├── contractimpl.cpp │ ├── contractimpl.h │ ├── corhost.cpp │ ├── crossdomaincalls.cpp │ ├── crossdomaincalls.h │ ├── crst.cpp │ ├── crst.h │ ├── cryptapis.h │ ├── ctxtcall.h │ ├── customattribute.cpp │ ├── customattribute.h │ ├── custommarshalerinfo.cpp │ ├── custommarshalerinfo.h │ ├── dacwks │ │ ├── makefile │ │ └── sources │ ├── dbginterface.h │ ├── debugdebugger.cpp │ ├── debugdebugger.h │ ├── debughelp.cpp │ ├── debuginfostore.cpp │ ├── debuginfostore.h │ ├── decodemd.cpp │ ├── decodemd.h │ ├── delegateinfo.h │ ├── dirs │ ├── dllimport.cpp │ ├── dllimport.h │ ├── dllimportcallback.cpp │ ├── dllimportcallback.h │ ├── domainfile.cpp │ ├── domainfile.h │ ├── domainfile.inl │ ├── dynamicmethod.cpp │ ├── dynamicmethod.h │ ├── ecall.cpp │ ├── ecall.h │ ├── ecmakey.h │ ├── eecallconv.h │ ├── eeconfig.cpp │ ├── eeconfig.h │ ├── eeconfigfactory.cpp │ ├── eeconfigfactory.h │ ├── eecontract.cpp │ ├── eecontract.h │ ├── eecontract.inl │ ├── eedbginterface.h │ ├── eedbginterfaceimpl.cpp │ ├── eedbginterfaceimpl.h │ ├── eedbginterfaceimpl.inl │ ├── eehash.cpp │ ├── eehash.h │ ├── eemessagebox.cpp │ ├── eemessagebox.h │ ├── eepolicy.cpp │ ├── eepolicy.h │ ├── eeprofinterfaces.h │ ├── eeprofinterfaces.inl │ ├── eetoprofinterfacewrapper.inl │ ├── eetwain.cpp │ ├── encee.h │ ├── eventstore.cpp │ ├── eventstore.hpp │ ├── excep.cpp │ ├── excep.h │ ├── exceptmacros.h │ ├── exinfo.cpp │ ├── exinfo.h │ ├── exstate.cpp │ ├── exstate.h │ ├── exstatecommon.h │ ├── fcall.cpp │ ├── fcall.h │ ├── field.cpp │ ├── field.h │ ├── fieldmarshaler.cpp │ ├── fieldmarshaler.h │ ├── fjit_eetwain.cpp │ ├── fjit_eetwain.h │ ├── fptrstubs.cpp │ ├── fptrstubs.h │ ├── frames.cpp │ ├── frames.h │ ├── fusionbind.cpp │ ├── fusioninit.cpp │ ├── fusionsink.cpp │ ├── fusionwrap.cpp │ ├── fusionwrap.h │ ├── gc.h │ ├── gccommon.cpp │ ├── gcdecode.cpp │ ├── gcdesc.h │ ├── gcee.cpp │ ├── gceesvr.cpp │ ├── gceewks.cpp │ ├── gchost.cpp │ ├── gcimpl.h │ ├── gcscan.cpp │ ├── gcscan.h │ ├── gcsmp.cpp │ ├── gcsmppriv.h │ ├── gcsvr.cpp │ ├── gcwks.cpp │ ├── genericdict.cpp │ ├── genericdict.h │ ├── generics.cpp │ ├── generics.h │ ├── genmeth.cpp │ ├── gmheap.cpp │ ├── gmheap.hpp │ ├── gms.h │ ├── h2inc.pl │ ├── handletable.cpp │ ├── handletable.h │ ├── handletable.inl │ ├── handletablecache.cpp │ ├── handletablecore.cpp │ ├── handletablepriv.h │ ├── handletablescan.cpp │ ├── hash.cpp │ ├── hash.h │ ├── hostexecutioncontext.cpp │ ├── hostexecutioncontext.h │ ├── hosting.cpp │ ├── hosting.h │ ├── i386 │ │ ├── asmconstants.h │ │ ├── asmhelpers.asm │ │ ├── asmhelpers.s │ │ ├── cgencpu.h │ │ ├── cgenx86.cpp │ │ ├── excepcpu.h │ │ ├── excepx86.cpp │ │ ├── fptext.asm │ │ ├── gmsasm.asm │ │ ├── gmsasm.s │ │ ├── gmscpu.h │ │ ├── gmsx86.cpp │ │ ├── jithelp.asm │ │ ├── jithelp.s │ │ ├── jitinterfacex86.cpp │ │ ├── profiler.cpp │ │ ├── remotingx86.cpp │ │ ├── stublinkerx86.cpp │ │ ├── stublinkerx86.h │ │ └── virtualcallstubcpu.hpp │ ├── ibclogger.h │ ├── ildump.h │ ├── ilmarshalers.cpp │ ├── ilmarshalers.h │ ├── ilstubcache.cpp │ ├── ilstubcache.h │ ├── ilstubresolver.cpp │ ├── ilstubresolver.h │ ├── instmethhash.cpp │ ├── instmethhash.h │ ├── interopconverter.cpp │ ├── interopconverter.h │ ├── interoputil.cpp │ ├── interoputil.h │ ├── invalidoverlappedwrappers.h │ ├── invokeutil.cpp │ ├── invokeutil.h │ ├── jithelpers.cpp │ ├── jitinterface.cpp │ ├── jitinterface.h │ ├── jitinterfacegen.cpp │ ├── list.cpp │ ├── list.h │ ├── listlock.cpp │ ├── listlock.h │ ├── listlock.inl │ ├── makefile.inc │ ├── managedmdimport.cpp │ ├── managedmdimport.hpp │ ├── marshaler.h │ ├── marshalnative.cpp │ ├── marshalnative.h │ ├── mdaassistants.h │ ├── mdaassistantsptr.h │ ├── memberload.cpp │ ├── memberload.h │ ├── message.cpp │ ├── message.h │ ├── metasig.h │ ├── method.cpp │ ├── method.hpp │ ├── method.inl │ ├── methodimpl.cpp │ ├── methodimpl.h │ ├── methoditer.cpp │ ├── methoditer.h │ ├── methodtable.cpp │ ├── methodtable.h │ ├── methodtable.inl │ ├── ml.cpp │ ├── ml.h │ ├── mlcache.cpp │ ├── mlcache.h │ ├── mlgen.cpp │ ├── mlgen.h │ ├── mlinfo.cpp │ ├── mlinfo.h │ ├── mlopdef.h │ ├── mscorlib.h │ ├── mtypes.h │ ├── namespace.h │ ├── nativeoverlapped.cpp │ ├── nativeoverlapped.h │ ├── newcompressedstack.cpp │ ├── newcompressedstack.h │ ├── nsenums.h │ ├── object.cpp │ ├── object.h │ ├── object.inl │ ├── objectclone.cpp │ ├── objectclone.h │ ├── objecthandle.cpp │ ├── objecthandle.h │ ├── objectlist.cpp │ ├── objectlist.h │ ├── olevariant.cpp │ ├── olevariant.h │ ├── pefile.cpp │ ├── pefile.h │ ├── pefile.inl │ ├── peimage.cpp │ ├── peimage.h │ ├── peimage.inl │ ├── peimagelayout.cpp │ ├── peimagelayout.h │ ├── peimagelayout.inl │ ├── pendingload.cpp │ ├── pendingload.h │ ├── ppc │ │ ├── asmconstants.h │ │ ├── asmhelpers.s │ │ ├── cgencpu.h │ │ ├── cgenppc.cpp │ │ ├── excepcpu.h │ │ ├── excepppc.cpp │ │ ├── gmsasm.s │ │ ├── gmscpu.h │ │ ├── gmsppc.cpp │ │ ├── jithelp.s │ │ ├── jitinterfaceppc.cpp │ │ ├── profiler.cpp │ │ ├── remotingppc.cpp │ │ └── virtualcallstubcpu.hpp │ ├── precode.cpp │ ├── precode.h │ ├── prestub.cpp │ ├── proftoeeinterfaceimpl.cpp │ ├── proftoeeinterfaceimpl.h │ ├── reflectclasswriter.cpp │ ├── reflectclasswriter.h │ ├── reflectioninvocation.cpp │ ├── reflectioninvocation.h │ ├── remoting.cpp │ ├── remoting.h │ ├── rexcep.h │ ├── rotor_x86 │ │ ├── asmconstants.h │ │ ├── asmhelpers.asm │ │ ├── asmhelpers.s │ │ ├── cgencpu.h │ │ ├── cgenx86.cpp │ │ ├── excepcpu.h │ │ ├── excepx86.cpp │ │ ├── gmsasm.asm │ │ ├── gmsasm.s │ │ ├── gmscpu.h │ │ ├── gmsx86.cpp │ │ ├── jithelp.asm │ │ ├── jithelp.s │ │ ├── jitinterfacex86.cpp │ │ ├── profiler.cpp │ │ ├── remotingx86.cpp │ │ ├── stublinkerx86.cpp │ │ └── stublinkerx86.h │ ├── runtimeexceptionkind.h │ ├── runtimehandles.cpp │ ├── runtimehandles.h │ ├── rwlock.cpp │ ├── rwlock.h │ ├── safehandle.cpp │ ├── security.h │ ├── security.inl │ ├── securityattributes.cpp │ ├── securityattributes.h │ ├── securityconfig.cpp │ ├── securityconfig.h │ ├── securitydeclarative.cpp │ ├── securitydeclarative.h │ ├── securitydescriptor.cpp │ ├── securitydescriptor.h │ ├── securitydescriptorappdomain.cpp │ ├── securitydescriptorappdomain.h │ ├── securitydescriptorassembly.cpp │ ├── securitydescriptorassembly.h │ ├── securityhostprotection.cpp │ ├── securityhostprotection.h │ ├── securityimperative.cpp │ ├── securityimperative.h │ ├── securitymeta.cpp │ ├── securitymeta.h │ ├── securitypolicy.cpp │ ├── securitypolicy.h │ ├── securitystackwalk.cpp │ ├── securitystackwalk.h │ ├── securitytransparentassembly.cpp │ ├── securitytransparentassembly.h │ ├── sigformat.cpp │ ├── sigformat.h │ ├── siginfo.cpp │ ├── siginfo.hpp │ ├── simplerwlock.cpp │ ├── simplerwlock.hpp │ ├── sourceline.cpp │ ├── sourceline.h │ ├── sources.dac │ ├── sources.inc │ ├── specialstatics.h │ ├── spinlock.cpp │ ├── spinlock.h │ ├── stackbuildersink.cpp │ ├── stackbuildersink.h │ ├── stackcompressor.cpp │ ├── stackcompressor.h │ ├── stackingallocator.cpp │ ├── stackingallocator.h │ ├── stackprobe.h │ ├── stackprobe.inl │ ├── stackwalk.cpp │ ├── stackwalk.h │ ├── stackwalktypes.h │ ├── stringliteralmap.cpp │ ├── stringliteralmap.h │ ├── strongname.cpp │ ├── stubgen.h │ ├── stublink.cpp │ ├── stublink.h │ ├── stublink.inl │ ├── stubmgr.cpp │ ├── stubmgr.h │ ├── syncblk.cpp │ ├── syncblk.h │ ├── syncblk.inl │ ├── syncclean.cpp │ ├── syncclean.hpp │ ├── synch.cpp │ ├── synch.h │ ├── synchronizationcontextnative.cpp │ ├── synchronizationcontextnative.h │ ├── testhookmgr.cpp │ ├── testhookmgr.h │ ├── thekey.h │ ├── threads.cpp │ ├── threads.h │ ├── threads.inl │ ├── tokeniter.cpp │ ├── tokeniter.hpp │ ├── typectxt.cpp │ ├── typectxt.h │ ├── typedesc.cpp │ ├── typedesc.h │ ├── typedesc.inl │ ├── typehandle.cpp │ ├── typehandle.h │ ├── typehandle.inl │ ├── typehash.cpp │ ├── typehash.h │ ├── typekey.h │ ├── typeparse.cpp │ ├── typeparse.h │ ├── typestring.cpp │ ├── typestring.h │ ├── umthunkhash.cpp │ ├── umthunkhash.h │ ├── util.cpp │ ├── util.hpp │ ├── validator.cpp │ ├── vars.cpp │ ├── vars.hpp │ ├── verifier.cpp │ ├── verifier.hpp │ ├── veropcodes.hpp │ ├── vertable.h │ ├── virtualcallstub.cpp │ ├── virtualcallstub.h │ ├── vmholder.h │ ├── win32threadpool.cpp │ ├── win32threadpool.h │ ├── wks1 │ │ ├── makefile │ │ ├── makefile.inc │ │ └── sources │ ├── wks2 │ │ ├── makefile │ │ ├── makefile.inc │ │ └── sources │ ├── wks3 │ │ ├── makefile │ │ ├── makefile.inc │ │ └── sources │ ├── wks4 │ │ ├── makefile │ │ ├── makefile.inc │ │ └── sources │ └── wrappers.h │ └── xmlparser │ ├── _rawstack.cpp │ ├── _rawstack.h │ ├── _reference.cpp │ ├── _reference.h │ ├── _unknown.h │ ├── bufferedstream.cpp │ ├── bufferedstream.h │ ├── charencoder.cpp │ ├── charencoder.h │ ├── codepage.h │ ├── core.h │ ├── encodingstream.cpp │ ├── encodingstream.h │ ├── makefile │ ├── sources │ ├── xmlhelper.cpp │ ├── xmlhelper.h │ ├── xmlparser.cpp │ ├── xmlparser.hpp │ ├── xmlstream.cpp │ └── xmlstream.h ├── configure ├── configure.in ├── csharp ├── alink │ ├── dirs │ ├── dll │ │ ├── alink.def │ │ ├── alink.rc │ │ ├── alinklib.cpp │ │ ├── asmlink.cpp │ │ ├── asmlink.h │ │ ├── assembly.cpp │ │ ├── assembly.h │ │ ├── makefile │ │ ├── resfile.cpp │ │ ├── resfile.h │ │ ├── resource.h │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── exe │ │ ├── alink.cpp │ │ ├── alink.rc │ │ ├── alinkexe.h │ │ ├── makefile │ │ ├── resource.h │ │ ├── sources │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── inc │ │ ├── alink.h │ │ ├── array.h │ │ ├── common.h │ │ ├── errors.h │ │ ├── merge.h │ │ ├── msgsids.h │ │ └── options.h │ ├── merge │ │ ├── makefile │ │ ├── merge.cpp │ │ ├── pch.h │ │ ├── sources │ │ └── stdafx.cpp │ └── ui │ │ └── msgs.rc ├── dirs ├── inc │ ├── allnodes.h │ ├── array.h │ ├── atlarrayqsort.h │ ├── attrloc.h │ ├── clsspecnames.h │ ├── compat.h │ ├── compilerlib.h │ ├── compres.h │ ├── consoleargs.cpp │ ├── consoleargs.h │ ├── consoleoutput.cpp │ ├── consoleoutput.h │ ├── constval.h │ ├── cscommon.h │ ├── dbgout.h │ ├── enum.h │ ├── errorids.h │ ├── errors.h │ ├── events.h │ ├── file_can.h │ ├── iheapallocator.h │ ├── list.h │ ├── locks.h │ ├── makefile │ ├── mempool.cpp │ ├── mempool.h │ ├── msgsids.h │ ├── name.h │ ├── nodekind.h │ ├── nodes.h │ ├── objptr.h │ ├── ops.h │ ├── pch.h │ ├── posdata.h │ ├── ppkwds.h │ ├── predefname.h │ ├── predeftype.h │ ├── satellite.h │ ├── sources │ ├── specnames.h │ ├── strbuild.h │ ├── table.h │ ├── timer.h │ ├── tokdata.h │ ├── tokens.h │ ├── tree.h │ ├── uniapi.h │ ├── unicase.h │ ├── unichar.h │ ├── unilib.h │ ├── unimisc.h │ ├── unipriv.h │ ├── uniprop.h │ ├── uniprop.inc │ ├── unistr.h │ ├── unum.h │ ├── utf.h │ └── vsmem.h ├── scc │ ├── cmdoptdef.h │ ├── compilerhost.cpp │ ├── compilerhost.h │ ├── dirs │ ├── pkg │ │ ├── makefile │ │ └── sources │ ├── resource.h │ ├── scc.cpp │ ├── scc.h │ ├── scc.rc │ ├── sources │ ├── sources.inc │ ├── stdafx.cpp │ └── stdafx.h ├── sccomp │ ├── alloc.cpp │ ├── alloc.h │ ├── attrtypes.h │ ├── basenodelookupcache.h │ ├── bitset.cpp │ ├── bitset.h │ ├── clsdrec.cpp │ ├── clsdrec.h │ ├── common.h │ ├── compiler.cpp │ ├── compiler.h │ ├── complus.cpp │ ├── controller.cpp │ ├── controller.h │ ├── cscmgd.cpp │ ├── cscmgd.h │ ├── dirs │ ├── dllmain.cpp │ ├── dumpnode.h │ ├── emitter.cpp │ ├── emitter.h │ ├── error.cpp │ ├── error.h │ ├── errorsuppression.h │ ├── exprkind.h │ ├── exprlist.h │ ├── exprnodes.h │ ├── factory.cpp │ ├── factory.h │ ├── fileiter.h │ ├── fncbind.cpp │ ├── fncbind.h │ ├── fncpbind.cpp │ ├── hashtab.h │ ├── ilgen.cpp │ ├── ilgen.h │ ├── import.cpp │ ├── import.h │ ├── inputset.cpp │ ├── inputset.h │ ├── inttree.cpp │ ├── inttree.h │ ├── lexer.cpp │ ├── lexer.h │ ├── map.cpp │ ├── map.h │ ├── memlook.cpp │ ├── memlook.h │ ├── metaattr.cpp │ ├── metaattr.h │ ├── metahelp.cpp │ ├── metahelp.h │ ├── namemgr.cpp │ ├── namemgr.h │ ├── nullable.cpp │ ├── numlit.h │ ├── operators.cpp │ ├── optdef.h │ ├── options.cpp │ ├── options.h │ ├── parser.cpp │ ├── parser.h │ ├── parsertype.h │ ├── pefile.cpp │ ├── pefile.h │ ├── pkg │ │ ├── makefile │ │ └── sources │ ├── pkgui │ │ └── msgs.rc │ ├── predefattr.h │ ├── prefixassert.h │ ├── privguid.h │ ├── resource.h │ ├── sccomp.cpp │ ├── sccomp.def │ ├── sccomp.rc │ ├── simpleparser.cpp │ ├── sourceparser.cpp │ ├── sources.inc │ ├── srcdata.cpp │ ├── srcdata.h │ ├── srcmod.cpp │ ├── srcmod.h │ ├── stage.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── symbol.h │ ├── symkind.h │ ├── symkinds.h │ ├── symmgr.cpp │ ├── symmgr.h │ ├── textparser.cpp │ ├── tokinfo.h │ ├── typebind.cpp │ ├── typebind.h │ └── withtype.h ├── shared │ ├── checksum.cpp │ ├── file.cpp │ ├── locks.cpp │ ├── makefile │ ├── mempool_wrap.cpp │ ├── node.cpp │ ├── pch.cpp │ ├── pch.h │ ├── positiondata.cpp │ ├── satellite.cpp │ ├── sources │ ├── strbuild.cpp │ └── table.cpp └── unilib │ ├── makefile │ ├── pch.h │ ├── sources │ ├── ucase.cpp │ ├── ucasemt.cpp │ ├── ugentab.cpp │ ├── uniapi.cpp │ ├── utable.cpp │ └── utf.cpp ├── docs ├── buildtools │ ├── binplace.html │ ├── buildall.html │ ├── building_sscli.html │ ├── buildtools_index.html │ ├── buildutility.html │ ├── env.html │ ├── internalresgen.html │ ├── nmake.html │ └── resourcecompiler.html ├── compilers │ ├── compilers_index.html │ ├── csharp.html │ └── jsc.html ├── debugging │ ├── debugging_index.html │ ├── debugging_overview.html │ └── sos.html ├── ecma │ └── ecma_index.html ├── glossary.html ├── index.html ├── map.html ├── relnotes.html ├── rotor.css ├── techinfo │ ├── encodings.html │ ├── logging.html │ ├── native_managed_interop.html │ ├── pal_guide.html │ ├── resfilefmt.html │ ├── stackframe.html │ └── techinfo_index.html ├── testing_overview.html └── tools │ ├── al.html │ ├── caspol.html │ ├── clix.html │ ├── cordbg.html │ ├── gacutil.html │ ├── genpalunitable.html │ ├── ilasm.html │ ├── ildasm.html │ ├── ildbconv.html │ ├── ildbdump.html │ ├── metainfo.html │ ├── peverify.html │ ├── resgen.html │ ├── sn.html │ ├── storeadm.html │ └── tools_index.html ├── env.bat ├── env.core.pl ├── env.csh ├── env.sh ├── env ├── bin │ ├── asmacros_osx.h │ ├── asnewlines.pl │ ├── assemblyattributes.cspp │ ├── assemblyrefs.cspp │ ├── commonresstrings.cspp │ ├── commonresstrings.txt │ ├── def2ld.pl │ ├── devdiv.def │ ├── devdiv2.def │ ├── ecmapublickey.snk │ ├── finalpublickey.snk │ ├── finddefines.pl │ ├── findline.pl │ ├── gensr.pl │ ├── genver.pl │ ├── getbaseaddress.pl │ ├── makefile.env │ ├── makefile.plt │ ├── mscver.h │ ├── placefil.txt │ ├── ppcmk.inc │ ├── publish.pl │ ├── rotor_x86mk.inc │ ├── setup.pl │ ├── sign.txt │ ├── sources.inc │ ├── spp.pl │ └── strongnamekey.inc └── rotor_x86 │ └── coffbase.txt ├── fx ├── project.mk └── src │ ├── buildtools │ ├── dirs │ └── mergeattributes │ │ ├── makefile │ │ ├── mergeattributes.cs │ │ ├── native.rc │ │ └── sources │ ├── compmod │ ├── microsoft │ │ ├── csharp │ │ │ └── csharpcodeprovider.cs │ │ └── win32 │ │ │ ├── nativemethods.cs │ │ │ ├── safehandles │ │ │ ├── safeeventhandle.cs │ │ │ ├── safefilemappinghandle.cs │ │ │ ├── safefilemapviewhandle.cs │ │ │ ├── safelocalmemhandle.cs │ │ │ ├── safeprocesshandle.cs │ │ │ ├── safethreadhandle.cs │ │ │ ├── safetimerhandle.cs │ │ │ └── safeusertokenhandle.cs │ │ │ ├── safenativemethods.cs │ │ │ └── unsafenativemethods.cs │ └── system │ │ ├── codedom │ │ ├── codeargumentreferenceexpression.cs │ │ ├── codearraycreateexpression.cs │ │ ├── codearrayindexerexpression.cs │ │ ├── codeassignstatement.cs │ │ ├── codeattacheventstatement.cs │ │ ├── codeattributeargument.cs │ │ ├── codeattributeargumentcollection.cs │ │ ├── codeattributedeclaration.cs │ │ ├── codeattributedeclarationcollection.cs │ │ ├── codebasereferenceexpression.cs │ │ ├── codebinaryoperatorexpression.cs │ │ ├── codebinaryoperatortype.cs │ │ ├── codecastexpression.cs │ │ ├── codecatchclause.cs │ │ ├── codecatchclausecollection.cs │ │ ├── codechecksumpragma.cs │ │ ├── codecomment.cs │ │ ├── codecommentstatement.cs │ │ ├── codecommentstatementcollection.cs │ │ ├── codecompileunit.cs │ │ ├── codeconditionstatement.cs │ │ ├── codeconstructor.cs │ │ ├── codedefaultvalueexpression.cs │ │ ├── codedelegatecreateexpression.cs │ │ ├── codedelegateinvokeexpression.cs │ │ ├── codedirectionexpression.cs │ │ ├── codedirective.cs │ │ ├── codedirectivecollection.cs │ │ ├── codeentrypointmethod.cs │ │ ├── codeeventreferenceexpression.cs │ │ ├── codeexpression.cs │ │ ├── codeexpressioncollection.cs │ │ ├── codeexpressionstatement.cs │ │ ├── codefieldreferenceexpression.cs │ │ ├── codegotostatement.cs │ │ ├── codeindexerexpression.cs │ │ ├── codeiterationstatement.cs │ │ ├── codelabeledstatement.cs │ │ ├── codelinepragma.cs │ │ ├── codememberevent.cs │ │ ├── codememberfield.cs │ │ ├── codemembermethod.cs │ │ ├── codememberproperty.cs │ │ ├── codemethodinvokeexpression.cs │ │ ├── codemethodreferenceexpression.cs │ │ ├── codemethodreturnstatement.cs │ │ ├── codenamespace.cs │ │ ├── codenamespacecollection.cs │ │ ├── codenamespaceimport.cs │ │ ├── codenamespaceimportcollection.cs │ │ ├── codeobject.cs │ │ ├── codeobjectcreateexpression.cs │ │ ├── codeparameterdeclarationexpression.cs │ │ ├── codeparameterdeclarationexpressioncollection.cs │ │ ├── codeprimitiveexpression.cs │ │ ├── codepropertyreferenceexpression.cs │ │ ├── codepropertysetvaluereferenceexpression.cs │ │ ├── coderegiondirective.cs │ │ ├── coderegionmode.cs │ │ ├── coderemoveeventstatement.cs │ │ ├── codesnippetcompileunit.cs │ │ ├── codesnippetexpression.cs │ │ ├── codesnippetstatement.cs │ │ ├── codesnippettypemember.cs │ │ ├── codestatement.cs │ │ ├── codestatementcollection.cs │ │ ├── codethisreferenceexpression.cs │ │ ├── codethrowexceptionstatement.cs │ │ ├── codetrycatchfinallystatement.cs │ │ ├── codetypeconstructor.cs │ │ ├── codetypedeclaration.cs │ │ ├── codetypedeclarationcollection.cs │ │ ├── codetypedelegate.cs │ │ ├── codetypemember.cs │ │ ├── codetypemembercollection.cs │ │ ├── codetypeofexpression.cs │ │ ├── codetypeparameter.cs │ │ ├── codetypeparametercollection.cs │ │ ├── codetypereference.cs │ │ ├── codetypereferencecollection.cs │ │ ├── codetypereferenceexpression.cs │ │ ├── codevariabledeclarationstatement.cs │ │ ├── codevariablereferenceexpression.cs │ │ ├── compiler │ │ │ ├── codecompiler.cs │ │ │ ├── codedomconfigurationhandler.cs │ │ │ ├── codedomprovider.cs │ │ │ ├── codegenerator.cs │ │ │ ├── codegeneratoroptions.cs │ │ │ ├── codeparser.cs │ │ │ ├── codevalidator.cs │ │ │ ├── compilererror.cs │ │ │ ├── compilererrorcollection.cs │ │ │ ├── compilerinfo.cs │ │ │ ├── compilerparameters.cs │ │ │ ├── compilerresults.cs │ │ │ ├── executor.cs │ │ │ ├── generatedcodeattribute.cs │ │ │ ├── generatorsupport.cs │ │ │ ├── icodecompiler.cs │ │ │ ├── icodegenerator.cs │ │ │ ├── icodeparser.cs │ │ │ ├── indenttextwriter.cs │ │ │ ├── languageoptions.cs │ │ │ └── tempfiles.cs │ │ ├── fielddirection.cs │ │ └── memberattributes.cs │ │ ├── collections │ │ ├── generic │ │ │ ├── debugview.cs │ │ │ ├── linkedlist.cs │ │ │ ├── queue.cs │ │ │ ├── sorteddictionary.cs │ │ │ ├── sortedlist.cs │ │ │ ├── stack.cs │ │ │ ├── throwhelper.cs │ │ │ └── treeset.cs │ │ └── specialized │ │ │ ├── bitvector32.cs │ │ │ ├── casesensitivestringdictionary.cs │ │ │ ├── collectionsutil.cs │ │ │ ├── fixedstringlookup.cs │ │ │ ├── hybriddictionary.cs │ │ │ ├── iordereddictionary.cs │ │ │ ├── listdictionary.cs │ │ │ ├── nameobjectcollectionbase.cs │ │ │ ├── namevaluecollection.cs │ │ │ ├── ordereddictionary.cs │ │ │ ├── stringcollection.cs │ │ │ └── stringdictionary.cs │ │ ├── componentmodel │ │ ├── addingneweventargs.cs │ │ ├── addingneweventhandler.cs │ │ ├── ambientvalueattribute.cs │ │ ├── arrayconverter.cs │ │ ├── arraysubsetenumerator.cs │ │ ├── asynccompletedeventargs.cs │ │ ├── asynccompletedeventhandler.cs │ │ ├── asyncoperation.cs │ │ ├── asyncoperationmanager.cs │ │ ├── attributecollection.cs │ │ ├── attributeproviderattribute.cs │ │ ├── backgroundworker.cs │ │ ├── basecomponenteditor.cs │ │ ├── basenumberconverter.cs │ │ ├── bindableattribute.cs │ │ ├── bindablesupport.cs │ │ ├── bindingdirection.cs │ │ ├── bindinglist.cs │ │ ├── booleanconverter.cs │ │ ├── browsableattribute.cs │ │ ├── byteconverter.cs │ │ ├── canceleventargs.cs │ │ ├── canceleventhandler.cs │ │ ├── categoryattribute.cs │ │ ├── charconverter.cs │ │ ├── collectionchangeaction.cs │ │ ├── collectionchangeeventargs.cs │ │ ├── collectionchangeeventhandler.cs │ │ ├── collectionconverter.cs │ │ ├── complexbindingpropertiesattribute.cs │ │ ├── compmodswitches.cs │ │ ├── component.cs │ │ ├── componentcollection.cs │ │ ├── componentconverter.cs │ │ ├── componentresourcemanager.cs │ │ ├── container.cs │ │ ├── containerfilterservice.cs │ │ ├── cultureinfoconverter.cs │ │ ├── customtypedescriptor.cs │ │ ├── dataobjectattribute.cs │ │ ├── dataobjectfieldattribute.cs │ │ ├── dataobjectmethodattribute.cs │ │ ├── dataobjectmethodtype.cs │ │ ├── datetimeconverter.cs │ │ ├── debugextendedpropertydescriptor.cs │ │ ├── debugreflecteventdescriptor.cs │ │ ├── debugreflectpropertydescriptor.cs │ │ ├── debugtypedescriptor.cs │ │ ├── decimalconverter.cs │ │ ├── defaultbindingpropertyattribute.cs │ │ ├── defaulteventattribute.cs │ │ ├── defaultpropertyattribute.cs │ │ ├── defaultvalueattribute.cs │ │ ├── delegatingtypedescriptionprovider.cs │ │ ├── descriptionattribute.cs │ │ ├── design │ │ │ ├── activedocumentevent.cs │ │ │ ├── activedocumenteventhandler.cs │ │ │ ├── checkoutexception.cs │ │ │ ├── commandid.cs │ │ │ ├── componentchangedevent.cs │ │ │ ├── componentchangedeventhandler.cs │ │ │ ├── componentchangingevent.cs │ │ │ ├── componentchangingeventhandler.cs │ │ │ ├── componentevent.cs │ │ │ ├── componenteventhandler.cs │ │ │ ├── componentrenameevent.cs │ │ │ ├── componentrenameeventhandler.cs │ │ │ ├── designeroptionservice.cs │ │ │ ├── designertransaction.cs │ │ │ ├── designertransactioncloseevent.cs │ │ │ ├── designertransactioncloseeventhandler.cs │ │ │ ├── designerverb.cs │ │ │ ├── designerverbcollection.cs │ │ │ ├── documentcollection.cs │ │ │ ├── documenteventargs.cs │ │ │ ├── documenteventhandler.cs │ │ │ ├── helpcontexttype.cs │ │ │ ├── helpkeywordattribute.cs │ │ │ ├── helpkeywordtype.cs │ │ │ ├── icomponentchangeservice.cs │ │ │ ├── icomponentdiscoveryservice.cs │ │ │ ├── icomponentinitializer.cs │ │ │ ├── idesigner.cs │ │ │ ├── idesignereventservice.cs │ │ │ ├── idesignerfilter.cs │ │ │ ├── idesignerhost.cs │ │ │ ├── idesigneroptionservice.cs │ │ │ ├── idictionaryservice.cs │ │ │ ├── ieventpropertyservice.cs │ │ │ ├── iextenderlistservice.cs │ │ │ ├── iextenderproviderservice.cs │ │ │ ├── ihelpservice.cs │ │ │ ├── iinheritanceservice.cs │ │ │ ├── imenucommandservice.cs │ │ │ ├── inheritanceattribute.cs │ │ │ ├── inheritancelevel.cs │ │ │ ├── ireferenceservice.cs │ │ │ ├── iresourceservice.cs │ │ │ ├── irootdesigner.cs │ │ │ ├── iselectionservice.cs │ │ │ ├── iserviceobjectcontainer.cs │ │ │ ├── itreedesigner.cs │ │ │ ├── itypedescriptorfilterservice.cs │ │ │ ├── itypediscoveryservice.cs │ │ │ ├── ityperesolutionservice.cs │ │ │ ├── menucommand.cs │ │ │ ├── notifyparentpropertyattribute.cs │ │ │ ├── parenthesizepropertynameattribute.cs │ │ │ ├── propertytabattribute.cs │ │ │ ├── propertytabscope.cs │ │ │ ├── refreshproperties.cs │ │ │ ├── refreshpropertiesattribute.cs │ │ │ ├── selectiontypes.cs │ │ │ ├── serialization │ │ │ │ ├── componentserializationservice.cs │ │ │ │ ├── contextstack.cs │ │ │ │ ├── defaultserializationproviderattribute.cs │ │ │ │ ├── designerloader.cs │ │ │ │ ├── designerserializerattribute.cs │ │ │ │ ├── idesignerloaderhost.cs │ │ │ │ ├── idesignerloaderservice.cs │ │ │ │ ├── idesignerserializationmanager.cs │ │ │ │ ├── idesignerserializationprovider.cs │ │ │ │ ├── idesignerserializationservice.cs │ │ │ │ ├── inamecreationservice.cs │ │ │ │ ├── instancedescriptor.cs │ │ │ │ ├── memberrelationshipservice.cs │ │ │ │ ├── resolvenameeventargs.cs │ │ │ │ ├── resolvenameeventhandler.cs │ │ │ │ ├── rootdesignerserializerattribute.cs │ │ │ │ └── serializationstore.cs │ │ │ ├── servicecreatorcallback.cs │ │ │ ├── serviceobjectcontainer.cs │ │ │ ├── standardcommands.cs │ │ │ ├── standardtoolwindows.cs │ │ │ ├── toolboxitemattribute.cs │ │ │ └── viewtechnology.cs │ │ ├── designerattribute.cs │ │ ├── designercategoryattribute.cs │ │ ├── designerserializationvisibility.cs │ │ ├── designerserializationvisibilityattribute.cs │ │ ├── designonlyattribute.cs │ │ ├── designtimevisibleattribute.cs │ │ ├── displaynameattribute.cs │ │ ├── doubleconverter.cs │ │ ├── doworkeventargs.cs │ │ ├── doworkeventhandler.cs │ │ ├── editorattribute.cs │ │ ├── editorbrowsableattribute.cs │ │ ├── enumconverter.cs │ │ ├── eventdescriptor.cs │ │ ├── eventdescriptorcollection.cs │ │ ├── eventhandlerlist.cs │ │ ├── expandableobjectconverter.cs │ │ ├── extendedpropertydescriptor.cs │ │ ├── extenderprovidedpropertyattribute.cs │ │ ├── guidconverter.cs │ │ ├── handledeventargs.cs │ │ ├── handledeventhandler.cs │ │ ├── ibindinglist.cs │ │ ├── ibindinglistview.cs │ │ ├── icanceladdnew.cs │ │ ├── ichangetracking.cs │ │ ├── icomnativedescriptorhandler.cs │ │ ├── icomponent.cs │ │ ├── icontainer.cs │ │ ├── icustomtypedescriptor.cs │ │ ├── idataerrorinfo.cs │ │ ├── ieditableobject.cs │ │ ├── iextenderprovider.cs │ │ ├── iintellisensebuilder.cs │ │ ├── ilistsource.cs │ │ ├── immutableobjectattribute.cs │ │ ├── inestedcontainer.cs │ │ ├── inestedsite.cs │ │ ├── initializationeventattribute.cs │ │ ├── inotifypropertychanged.cs │ │ ├── installertypeattribute.cs │ │ ├── instancecreationeditor.cs │ │ ├── int16converter.cs │ │ ├── int32converter.cs │ │ ├── int64converter.cs │ │ ├── intsecurity.cs │ │ ├── invalidasynchronousstateexception.cs │ │ ├── invalidenumargumentexception.cs │ │ ├── iraiseitemchangedevents.cs │ │ ├── irevertiblechangetracking.cs │ │ ├── isite.cs │ │ ├── isupportinitialize.cs │ │ ├── isupportinitializenotification.cs │ │ ├── isynchronizeinvoke.cs │ │ ├── itypedescriptorcontext.cs │ │ ├── itypedlist.cs │ │ ├── listbindableattribute.cs │ │ ├── listchangedeventargs.cs │ │ ├── listchangedeventhandler.cs │ │ ├── listchangedtype.cs │ │ ├── listsortdescription.cs │ │ ├── listsortdescriptioncollection.cs │ │ ├── listsortdirection.cs │ │ ├── localizableattribute.cs │ │ ├── lookupbindingpropertiesattribute.cs │ │ ├── marshalbyvaluecomponent.cs │ │ ├── maskedtextprovider.cs │ │ ├── maskedtextresulthint.cs │ │ ├── memberdescriptor.cs │ │ ├── mergablepropertyattribute.cs │ │ ├── multilinestringconverter.cs │ │ ├── nestedcontainer.cs │ │ ├── nullableconverter.cs │ │ ├── passwordpropertytextattribute.cs │ │ ├── progresschangedeventargs.cs │ │ ├── progresschangedeventhandler.cs │ │ ├── propertychangedeventargs.cs │ │ ├── propertychangedeventhandler.cs │ │ ├── propertydescriptor.cs │ │ ├── propertydescriptorcollection.cs │ │ ├── providepropertyattribute.cs │ │ ├── readonlyattribute.cs │ │ ├── recommendedasconfigurableattribute.cs │ │ ├── referenceconverter.cs │ │ ├── reflecteventdescriptor.cs │ │ ├── reflectpropertydescriptor.cs │ │ ├── reflecttypedescriptionprovider.cs │ │ ├── refresheventargs.cs │ │ ├── refresheventhandler.cs │ │ ├── runworkercompletedeventargs.cs │ │ ├── runworkercompletedeventhandler.cs │ │ ├── sbyteconverter.cs │ │ ├── settingsbindableattribute.cs │ │ ├── singleconverter.cs │ │ ├── stringconverter.cs │ │ ├── syntaxcheck.cs │ │ ├── timespanconverter.cs │ │ ├── toolboxitemfilterattribute.cs │ │ ├── toolboxitemfiltertype.cs │ │ ├── typeconverter.cs │ │ ├── typeconverterattribute.cs │ │ ├── typedescriptionprovider.cs │ │ ├── typedescriptionproviderattribute.cs │ │ ├── typedescriptor.cs │ │ ├── typelistconverter.cs │ │ ├── uint16converter.cs │ │ ├── uint32converter.cs │ │ ├── uint64converter.cs │ │ ├── warningexception.cs │ │ └── win32exception.cs │ │ ├── configuration │ │ └── appsettingsreader.cs │ │ ├── diagnostics │ │ ├── assertsection.cs │ │ ├── assertwrapper.cs │ │ ├── booleanswitch.cs │ │ ├── consoletracelistener.cs │ │ ├── correlationmanager.cs │ │ ├── debug.cs │ │ ├── defaulttracelistener.cs │ │ ├── delimitedlisttracelistener.cs │ │ ├── diagnosticsconfiguration.cs │ │ ├── filterelement.cs │ │ ├── listenerelementscollection.cs │ │ ├── perfcountersection.cs │ │ ├── severityfilter.cs │ │ ├── sourceelementscollection.cs │ │ ├── sourcefilter.cs │ │ ├── sourcelevels.cs │ │ ├── sourceswitch.cs │ │ ├── switch.cs │ │ ├── switchattribute.cs │ │ ├── switchelementscollection.cs │ │ ├── switchlevelattribute.cs │ │ ├── systemdiagnosticssection.cs │ │ ├── textwritertracelistener.cs │ │ ├── trace.cs │ │ ├── traceeventcache.cs │ │ ├── traceeventtype.cs │ │ ├── tracefilter.cs │ │ ├── traceinternal.cs │ │ ├── tracelevel.cs │ │ ├── tracelistener.cs │ │ ├── tracelisteners.cs │ │ ├── traceoptions.cs │ │ ├── tracesection.cs │ │ ├── tracesource.cs │ │ ├── traceswitch.cs │ │ ├── traceutils.cs │ │ ├── typedelement.cs │ │ └── xmlwritertracelistener.cs │ │ └── security │ │ └── permissions │ │ ├── aspnethostingpermission.cs │ │ ├── resourcepermissionbase.cs │ │ └── resourcepermissionbaseentry.cs │ ├── configuration │ ├── makefile │ ├── microsoft │ │ └── win32 │ │ │ ├── safenativemethods.cs │ │ │ └── unsafenativemethods.cs │ ├── native.rc │ ├── sources │ ├── system.configuration.txt │ └── system │ │ └── configuration │ │ ├── appsettingssection.cs │ │ ├── baseconfigurationrecord.cs │ │ ├── callbackvalidator.cs │ │ ├── callbackvalidatorattribute.cs │ │ ├── clientconfigpaths.cs │ │ ├── clientconfigperf.cs │ │ ├── clientconfigurationhost.cs │ │ ├── clientconfigurationsystem.cs │ │ ├── commadelimitedstringattributecollectionconverter.cs │ │ ├── configdefinitionupdates.cs │ │ ├── configuration.cs │ │ ├── configurationallowdefinition.cs │ │ ├── configurationallowexedefinition.cs │ │ ├── configurationcollectionattribute.cs │ │ ├── configurationconverterbase.cs │ │ ├── configurationelement.cs │ │ ├── configurationelementcollection.cs │ │ ├── configurationelementcollectiontype.cs │ │ ├── configurationelementproperty.cs │ │ ├── configurationerrorsexception.cs │ │ ├── configurationfilemap.cs │ │ ├── configurationlocation.cs │ │ ├── configurationlocationcollection.cs │ │ ├── configurationlockcollection.cs │ │ ├── configurationlockcollectiontype.cs │ │ ├── configurationmanager.cs │ │ ├── configurationmanagerhelperfactory.cs │ │ ├── configurationpermission.cs │ │ ├── configurationproperty.cs │ │ ├── configurationpropertyattribute.cs │ │ ├── configurationpropertycollection.cs │ │ ├── configurationpropertyoptions.cs │ │ ├── configurationsavemode.cs │ │ ├── configurationschemaerrors.cs │ │ ├── configurationsection.cs │ │ ├── configurationsectioncollection.cs │ │ ├── configurationsectiongroup.cs │ │ ├── configurationsectiongroupcollection.cs │ │ ├── configurationuserlevel.cs │ │ ├── configurationvalidatorattribute.cs │ │ ├── configurationvalidatorbase.cs │ │ ├── configurationvalue.cs │ │ ├── configurationvalueflags.cs │ │ ├── configurationvalues.cs │ │ ├── configxmlattribute.cs │ │ ├── configxmlcdatasection.cs │ │ ├── configxmlcomment.cs │ │ ├── configxmlelement.cs │ │ ├── configxmlreader.cs │ │ ├── configxmlsignificantwhitespace.cs │ │ ├── configxmltext.cs │ │ ├── configxmlwhitespace.cs │ │ ├── connectionstringsettings.cs │ │ ├── connectionstringsettingscollection.cs │ │ ├── connectionstringssection.cs │ │ ├── contextinformation.cs │ │ ├── cryptprotect_promptstruct.cs │ │ ├── data_blob.cs │ │ ├── datetimeconfigurationcollection.cs │ │ ├── datetimeconfigurationelement.cs │ │ ├── debug.cs │ │ ├── declarationupdate.cs │ │ ├── defaultsection.cs │ │ ├── defaultvalidator.cs │ │ ├── definitionupdate.cs │ │ ├── elementinformation.cs │ │ ├── emptyimpersonationcontext.cs │ │ ├── errorinfoxmldocument.cs │ │ ├── errorshelper.cs │ │ ├── exceptionaction.cs │ │ ├── exceptionutil.cs │ │ ├── execonfigurationfilemap.cs │ │ ├── execontext.cs │ │ ├── factoryid.cs │ │ ├── factoryrecord.cs │ │ ├── fileutil.cs │ │ ├── genericenumconverter.cs │ │ ├── ignoresection.cs │ │ ├── infiniteintconverter.cs │ │ ├── infinitetimespanconverter.cs │ │ ├── integervalidator.cs │ │ ├── integervalidatorattribute.cs │ │ ├── internal │ │ ├── configsystem.cs │ │ ├── configurationmanagerinternal.cs │ │ ├── delegatingconfighost.cs │ │ ├── fileversion.cs │ │ ├── iconfigerrorinfo.cs │ │ ├── iconfigsystem.cs │ │ ├── iconfigurationmanagerhelper.cs │ │ ├── iconfigurationmanagerinternal.cs │ │ ├── iinternalconfigclienthost.cs │ │ ├── iinternalconfigconfigurationfactory.cs │ │ ├── iinternalconfighost.cs │ │ ├── iinternalconfigrecord.cs │ │ ├── iinternalconfigroot.cs │ │ ├── iinternalconfigsettingsfactory.cs │ │ ├── iinternalconfigsystem.cs │ │ ├── internalconfigconfigurationfactory.cs │ │ ├── internalconfigeventargs.cs │ │ ├── internalconfigeventhandler.cs │ │ ├── internalconfighost.cs │ │ ├── internalconfigroot.cs │ │ ├── internalconfigsettingsfactory.cs │ │ ├── streamchangecallback.cs │ │ └── writefilecontext.cs │ │ ├── invalidpropvalue.cs │ │ ├── keyvalueconfigurationcollection.cs │ │ ├── keyvalueconfigurationelement.cs │ │ ├── keyvalueinternalcollection.cs │ │ ├── locationsectionrecord.cs │ │ ├── locationupdates.cs │ │ ├── longvalidator.cs │ │ ├── longvalidatorattribute.cs │ │ ├── mgmtconfigurationrecord.cs │ │ ├── namespacechange.cs │ │ ├── namevalueconfigurationcollection.cs │ │ ├── namevalueconfigurationelement.cs │ │ ├── positivetimespanvalidator.cs │ │ ├── positivetimespanvalidatorattribute.cs │ │ ├── propertyinformation.cs │ │ ├── propertyinformationcollection.cs │ │ ├── propertysourceinfo.cs │ │ ├── propertyvalueorigin.cs │ │ ├── protectedconfiguration.cs │ │ ├── protectedconfigurationprovider.cs │ │ ├── protectedconfigurationprovidercollection.cs │ │ ├── protectedconfigurationsection.cs │ │ ├── protectedprovidersettings.cs │ │ ├── providerbase.cs │ │ ├── providercollection.cs │ │ ├── providerexception.cs │ │ ├── providersettings.cs │ │ ├── providersettingscollection.cs │ │ ├── regexstringvalidator.cs │ │ ├── regexstringvalidatorattribute.cs │ │ ├── runtimeconfigurationrecord.cs │ │ ├── safebitvector32.cs │ │ ├── sectioninformation.cs │ │ ├── sectioninput.cs │ │ ├── sectionrecord.cs │ │ ├── sectionupdates.cs │ │ ├── sectionxmlinfo.cs │ │ ├── simplebitvector32.cs │ │ ├── streaminfo.cs │ │ ├── streamupdate.cs │ │ ├── stringattributecollection.cs │ │ ├── stringconfigurationcollection.cs │ │ ├── stringconfigurationelement.cs │ │ ├── stringutil.cs │ │ ├── stringvalidator.cs │ │ ├── stringvalidatorattribute.cs │ │ ├── subclasstypevalidator.cs │ │ ├── subclasstypevalidatorattribute.cs │ │ ├── timespanconfigurationcollection.cs │ │ ├── timespanconfigurationelement.cs │ │ ├── timespanminutesconverter.cs │ │ ├── timespanminutesorinfiniteconverter.cs │ │ ├── timespansecondsconverter.cs │ │ ├── timespansecondsorinfiniteconverter.cs │ │ ├── timespanvalidator.cs │ │ ├── timespanvalidatorattribute.cs │ │ ├── typenameconverter.cs │ │ ├── typeutil.cs │ │ ├── update.cs │ │ ├── updateconfighost.cs │ │ ├── urlpath.cs │ │ ├── validatorcallback.cs │ │ ├── validatorutils.cs │ │ ├── whitespacetrimstringconverter.cs │ │ ├── xmlutil.cs │ │ └── xmlutilwriter.cs │ ├── dirs │ ├── misc │ ├── compatibleicomparer.cs │ ├── compmodswitches.cs │ ├── configpathutility.cs │ ├── coreswitches.cs │ ├── debughandletracker.cs │ ├── externdll.cs │ ├── handlecollector.cs │ ├── hresults.cs │ ├── imagelistutils.cs │ ├── invariantcomparer.cs │ ├── machine.config │ ├── makefile │ ├── privilegedconfigurationmanager.cs │ ├── securityutils.cs │ ├── sources │ └── weakhashtable.cs │ ├── net │ └── system │ │ ├── _domainname.cs │ │ ├── _ipv4address.cs │ │ ├── _ipv6address.cs │ │ ├── _uncname.cs │ │ ├── _urisyntax.cs │ │ ├── _uritypeconverter.cs │ │ ├── genericuriparser.cs │ │ ├── net │ │ ├── _authenticationstate.cs │ │ ├── _autowebproxyscriptengine.cs │ │ ├── _autowebproxyscripthelper.cs │ │ ├── _autowebproxyscriptwrapper.cs │ │ ├── _basicclient.cs │ │ ├── _bufferoffsetsize.cs │ │ ├── _chunkparse.cs │ │ ├── _comimports.cs │ │ ├── _commandstream.cs │ │ ├── _connection.cs │ │ ├── _connectiongroup.cs │ │ ├── _connectstream.cs │ │ ├── _contextawareresult.cs │ │ ├── _cookiemodule.cs │ │ ├── _emptywebproxy.cs │ │ ├── _ftpcontrolstream.cs │ │ ├── _ftpdatastream.cs │ │ ├── _headerinfo.cs │ │ ├── _headerinfotable.cs │ │ ├── _httpdateparse.cs │ │ ├── _isessionauthenticationmodule.cs │ │ ├── _istreams.cs │ │ ├── _lazyasyncresult.cs │ │ ├── _loggingobject.cs │ │ ├── _nestedmultipleasyncresult.cs │ │ ├── _nestedsingleasyncresult.cs │ │ ├── _netres.cs │ │ ├── _ossock.cs │ │ ├── _pooledstream.cs │ │ ├── _proxychain.cs │ │ ├── _proxyregblob.cs │ │ ├── _safenethandles.cs │ │ ├── _scattergatherbuffers.cs │ │ ├── _semaphore.cs │ │ ├── _shellexpression.cs │ │ ├── _spndictionary.cs │ │ ├── _sslsessionscache.cs │ │ ├── _sspisessioncache.cs │ │ ├── _timerthread.cs │ │ ├── _win32.cs │ │ ├── authenticationmanager.cs │ │ ├── authorization.cs │ │ ├── cache │ │ │ ├── _cachestreams.cs │ │ │ ├── _requestcacheprotocol.cs │ │ │ ├── _rfc2616cachevalidators.cs │ │ │ ├── _singleitemrequestcache.cs │ │ │ ├── ftprequestcachevalidator.cs │ │ │ ├── httprequestcachevalidator.cs │ │ │ ├── requestcache.cs │ │ │ ├── requestcacheentry.cs │ │ │ ├── requestcachemanager.cs │ │ │ ├── requestcachepolicy.cs │ │ │ └── requestcachevalidator.cs │ │ ├── configuration │ │ │ ├── authenticationmoduleelement.cs │ │ │ ├── authenticationmoduleelementcollection.cs │ │ │ ├── authenticationmodulessection.cs │ │ │ ├── bypasselement.cs │ │ │ ├── bypasselementcollection.cs │ │ │ ├── configurationstrings.cs │ │ │ ├── connectionmanagementelement.cs │ │ │ ├── connectionmanagementelementcollection.cs │ │ │ ├── connectionmanagementsection.cs │ │ │ ├── defaultproxysection.cs │ │ │ ├── ftpcachepolicyelement.cs │ │ │ ├── httpcachepolicyelement.cs │ │ │ ├── httpwebrequestelement.cs │ │ │ ├── ipv6element.cs │ │ │ ├── mailsettingssection.cs │ │ │ ├── moduleelement.cs │ │ │ ├── netsectiongroup.cs │ │ │ ├── performancecounterselement.cs │ │ │ ├── proxyelement.cs │ │ │ ├── requestcachingsection.cs │ │ │ ├── servicepointmanagerelement.cs │ │ │ ├── settingssection.cs │ │ │ ├── smtpnetworkelement.cs │ │ │ ├── smtpsection.cs │ │ │ ├── smtpspecifiedpickupdirectoryelement.cs │ │ │ ├── socketelement.cs │ │ │ ├── timeoutvalidationattribute.cs │ │ │ ├── webproxyscriptelement.cs │ │ │ ├── webrequestmoduleelement.cs │ │ │ ├── webrequestmoduleelementcollection.cs │ │ │ └── webrequestmodulessection.cs │ │ ├── connectionmodes.cs │ │ ├── connectionpool.cs │ │ ├── connectionpoolmanager.cs │ │ ├── cookie.cs │ │ ├── cookiecollection.cs │ │ ├── cookiecontainer.cs │ │ ├── cookieexception.cs │ │ ├── credentialcache.cs │ │ ├── dns.cs │ │ ├── dnspermission.cs │ │ ├── endpoint.cs │ │ ├── filewebrequest.cs │ │ ├── filewebresponse.cs │ │ ├── ftpstatuscode.cs │ │ ├── ftpwebrequest.cs │ │ ├── ftpwebresponse.cs │ │ ├── globalproxyselection.cs │ │ ├── httpextension.cs │ │ ├── httprequestheader.cs │ │ ├── httpresponseheader.cs │ │ ├── httpstatuscode.cs │ │ ├── httpversion.cs │ │ ├── httpwebrequest.cs │ │ ├── httpwebresponse.cs │ │ ├── iauthenticationmodule.cs │ │ ├── icredentials.cs │ │ ├── icredentialsbyhost.cs │ │ ├── internal.cs │ │ ├── ipaddress.cs │ │ ├── ipendpoint.cs │ │ ├── iphostentry.cs │ │ ├── iwebproxy.cs │ │ ├── iwebrequestcreate.cs │ │ ├── logging.cs │ │ ├── networkaccess.cs │ │ ├── networkcredential.cs │ │ ├── networkinformation │ │ │ ├── gatewayipaddressinformation.cs │ │ │ ├── gatewayipaddressinformationcollection.cs │ │ │ └── ipaddresscollection.cs │ │ ├── protocolviolationexception.cs │ │ ├── secureprotocols │ │ │ └── negotiateenumtypes.cs │ │ ├── servicepoint.cs │ │ ├── servicepointmanager.cs │ │ ├── socketaddress.cs │ │ ├── socketexception.cs │ │ ├── socketpermission.cs │ │ ├── sockets │ │ │ ├── _acceptoverlappedasyncresult.cs │ │ │ ├── _baseoverlappedasyncresult.cs │ │ │ ├── _connectoverlappedasyncresult.cs │ │ │ ├── _disconnectoverlappedasyncresult.cs │ │ │ ├── _overlappedasyncresult.cs │ │ │ ├── _receivemessageoverlappedasyncresult.cs │ │ │ ├── _transmitfileoverlappedasyncresult.cs │ │ │ ├── addressfamily.cs │ │ │ ├── internal.cs │ │ │ ├── iocontrolcode.cs │ │ │ ├── ippacketinformation.cs │ │ │ ├── lingeroption.cs │ │ │ ├── multicastoption.cs │ │ │ ├── networkstream.cs │ │ │ ├── protocolfamily.cs │ │ │ ├── protocoltype.cs │ │ │ ├── selectmode.cs │ │ │ ├── socket.cs │ │ │ ├── socketerrors.cs │ │ │ ├── socketflags.cs │ │ │ ├── socketinformation.cs │ │ │ ├── socketinformationoptions.cs │ │ │ ├── socketoptionlevel.cs │ │ │ ├── socketoptionname.cs │ │ │ ├── socketshutdown.cs │ │ │ ├── sockettype.cs │ │ │ ├── tcpclient.cs │ │ │ ├── tcplistener.cs │ │ │ ├── transmitfileflags.cs │ │ │ └── udpclient.cs │ │ ├── stubs.cs │ │ ├── transporttype.cs │ │ ├── unsafenativemethods.cs │ │ ├── webclient.cs │ │ ├── webexception.cs │ │ ├── webexceptionstatus.cs │ │ ├── webheadercollection.cs │ │ ├── webpermission.cs │ │ ├── webproxy.cs │ │ ├── webrequest.cs │ │ ├── webrequestmethods.cs │ │ └── webresponse.cs │ │ ├── uri.cs │ │ ├── uribuilder.cs │ │ ├── urienumtypes.cs │ │ ├── uriext.cs │ │ ├── uriformatexception.cs │ │ ├── urihostnametype.cs │ │ ├── uriparsertemplates.cs │ │ ├── uripartial.cs │ │ └── urischeme.cs │ ├── regex │ └── system │ │ └── text │ │ └── regularexpressions │ │ ├── compiledregexrunner.cs │ │ ├── compiledregexrunnerfactory.cs │ │ ├── regex.cs │ │ ├── regexboyermoore.cs │ │ ├── regexcapture.cs │ │ ├── regexcapturecollection.cs │ │ ├── regexcharclass.cs │ │ ├── regexcode.cs │ │ ├── regexcompilationinfo.cs │ │ ├── regexcompiler.cs │ │ ├── regexfcd.cs │ │ ├── regexgroup.cs │ │ ├── regexgroupcollection.cs │ │ ├── regexinterpreter.cs │ │ ├── regexmatch.cs │ │ ├── regexmatchcollection.cs │ │ ├── regexnode.cs │ │ ├── regexoptions.cs │ │ ├── regexparser.cs │ │ ├── regexreplacement.cs │ │ ├── regexrunner.cs │ │ ├── regexrunnerfactory.cs │ │ ├── regextree.cs │ │ └── regexwriter.cs │ ├── runtimetools │ ├── dirs │ └── resgen │ │ ├── makefile │ │ ├── native.rc │ │ ├── resgen.cs │ │ ├── sources │ │ └── sr.txt │ ├── services │ └── monitoring │ │ └── system │ │ └── diagnosticts │ │ ├── asyncstreamreader.cs │ │ ├── countersamplecalculator.cs │ │ ├── datareceivedeventargs.cs │ │ ├── diagnosticsconfigurationhandler.cs │ │ ├── monitoringdescriptionattribute.cs │ │ ├── process.cs │ │ ├── processpriorityclass.cs │ │ ├── processstartinfo.cs │ │ ├── processwaithandle.cs │ │ ├── processwindowstyle.cs │ │ └── stopwatch.cs │ ├── sys │ ├── makefile │ ├── misc │ │ └── assemblyattributes.cs │ ├── native.rc │ ├── resource.h │ ├── sources │ ├── system.txt │ └── system │ │ ├── configuration │ │ ├── clientsettingsstore.cs │ │ ├── configurationexception.cs │ │ ├── configurationmanagerinternalfactory.cs │ │ ├── configurationsettings.cs │ │ ├── configxmlattribute.cs │ │ ├── configxmlcdatasection.cs │ │ ├── configxmlcomment.cs │ │ ├── configxmldocument.cs │ │ ├── configxmlelement.cs │ │ ├── configxmlsignificantwhitespace.cs │ │ ├── configxmltext.cs │ │ ├── configxmlwhitespace.cs │ │ ├── dictionarysectionhandler.cs │ │ ├── handlerbase.cs │ │ ├── iapplicationsettingsprovider.cs │ │ ├── iconfigurationsectionhandler.cs │ │ ├── iconfigurationsystem.cs │ │ ├── ignoresectionhandler.cs │ │ ├── internal │ │ │ └── configurationmanagerhelper.cs │ │ ├── ipersistsettings.cs │ │ ├── isettingsproviderservice.cs │ │ ├── localfilesettingsprovider.cs │ │ ├── namevaluefilesectionhandler.cs │ │ ├── namevaluesectionhandler.cs │ │ ├── readonlynamevaluecollection.cs │ │ ├── sections │ │ │ ├── clientsettingsgroups.cs │ │ │ └── clientsettingssection.cs │ │ ├── settingsattributedictionary.cs │ │ ├── settingsattributes.cs │ │ ├── settingsbase.cs │ │ ├── settingscontext.cs │ │ ├── settingsproperty.cs │ │ ├── settingspropertycollection.cs │ │ ├── settingspropertyisreadonlyexception.cs │ │ ├── settingspropertynotfoundexception.cs │ │ ├── settingspropertyvalue.cs │ │ ├── settingspropertyvaluecollection.cs │ │ ├── settingspropertywrongtypeexception.cs │ │ ├── settingsprovider.cs │ │ ├── settingsprovidercollection.cs │ │ ├── settingsserializeas.cs │ │ ├── singletagsectionhandler.cs │ │ └── typeutil.cs │ │ ├── io │ │ ├── compression │ │ │ ├── compressionmode.cs │ │ │ ├── decodehelper.cs │ │ │ ├── deflater.cs │ │ │ ├── deflatestream.cs │ │ │ ├── fastencoder.cs │ │ │ ├── fastencoderwindow.cs │ │ │ ├── gzipdecoder.cs │ │ │ ├── gzipstream.cs │ │ │ ├── huffmantree.cs │ │ │ ├── inflater.cs │ │ │ ├── inputbuffer.cs │ │ │ ├── invaliddataexception.cs │ │ │ └── outputwindow.cs │ │ └── ports │ │ │ └── internalresources.cs │ │ ├── runtime │ │ └── interopservices │ │ │ ├── defaultparametervalueattribute.cs │ │ │ └── handlecollector.cs │ │ ├── security │ │ └── accesscontrol │ │ │ └── semaphoresecurity.cs │ │ └── threading │ │ ├── semaphore.cs │ │ └── semaphorefullexception.cs │ ├── xml │ ├── makefile │ ├── native.rc │ ├── sources │ ├── system.xml.txt │ └── system │ │ └── xml │ │ ├── assembly.cs │ │ ├── base64decoder.cs │ │ ├── base64encoder.cs │ │ ├── binhexdecoder.cs │ │ ├── binhexencoder.cs │ │ ├── bits.cs │ │ ├── bitstack.cs │ │ ├── bufferbuilder.cs │ │ ├── bytestack.cs │ │ ├── cache │ │ ├── shape.cs │ │ ├── shapegenerator.cs │ │ ├── xpathdocumentbuilder.cs │ │ ├── xpathdocumentiterator.cs │ │ ├── xpathdocumentnavigator.cs │ │ ├── xpathdocumentview.cs │ │ ├── xpathnode.cs │ │ ├── xpathnodehelper.cs │ │ ├── xpathnodeinfoatom.cs │ │ ├── xpathnodeview.cs │ │ └── xpathnodeviewpropertydescriptor.cs │ │ ├── core │ │ ├── charentityencoderfallback.cs │ │ ├── conformancelevel.cs │ │ ├── entityhandling.cs │ │ ├── htmlencodedrawtextwriter.cs │ │ ├── htmlternarytree.cs │ │ ├── htmlutf8rawtextwriter.cs │ │ ├── incrementalreaddecoders.cs │ │ ├── iremovablewriter.cs │ │ ├── newlinehandling.cs │ │ ├── queryoutputwriter.cs │ │ ├── readcontentasbinaryhelper.cs │ │ ├── readonlyternarytree.cs │ │ ├── readstate.cs │ │ ├── securestringhasher.cs │ │ ├── textencodedrawtextwriter.cs │ │ ├── textutf8rawtextwriter.cs │ │ ├── validatingreadernodedata.cs │ │ ├── validationtype.cs │ │ ├── whitespacehandling.cs │ │ ├── xmlautodetectwriter.cs │ │ ├── xmlcharcheckingreader.cs │ │ ├── xmlcharcheckingwriter.cs │ │ ├── xmlencodedrawtextwriter.cs │ │ ├── xmleventcache.cs │ │ ├── xmlparsercontext.cs │ │ ├── xmlrawwriter.cs │ │ ├── xmlreader.cs │ │ ├── xmlreadersettings.cs │ │ ├── xmlspace.cs │ │ ├── xmlsubtreereader.cs │ │ ├── xmltextencoder.cs │ │ ├── xmltextreader.cs │ │ ├── xmltextreaderimpl.cs │ │ ├── xmltextreaderimplhelpers.cs │ │ ├── xmltextwriter.cs │ │ ├── xmlutf8rawtextwriter.cs │ │ ├── xmlvalidatingreader.cs │ │ ├── xmlvalidatingreaderimpl.cs │ │ ├── xmlwellformedwriter.cs │ │ ├── xmlwrappingreader.cs │ │ ├── xmlwrappingwriter.cs │ │ ├── xmlwriter.cs │ │ ├── xmlwritersettings.cs │ │ ├── xsdcachingreader.cs │ │ └── xsdvalidatingreader.cs │ │ ├── diagnosticsswitches.cs │ │ ├── dom │ │ ├── documentschemavalidator.cs │ │ ├── documentxmlwriter.cs │ │ ├── documentxpathnavigator.cs │ │ ├── domnametable.cs │ │ ├── xmlattribute.cs │ │ ├── xmlattributecollection.cs │ │ ├── xmlcdatasection.cs │ │ ├── xmlcharacterdata.cs │ │ ├── xmlchildenumerator.cs │ │ ├── xmlchildnodes.cs │ │ ├── xmlcomment.cs │ │ ├── xmldeclaration.cs │ │ ├── xmldocument.cs │ │ ├── xmldocumentfragment.cs │ │ ├── xmldocumenttype.cs │ │ ├── xmldomtextwriter.cs │ │ ├── xmlelement.cs │ │ ├── xmlelementlist.cs │ │ ├── xmlentity.cs │ │ ├── xmlentityreference.cs │ │ ├── xmleventchangedaction.cs │ │ ├── xmlimplementation.cs │ │ ├── xmllinkednode.cs │ │ ├── xmlloader.cs │ │ ├── xmlname.cs │ │ ├── xmlnamednodemap.cs │ │ ├── xmlnode.cs │ │ ├── xmlnodechangedeventargs.cs │ │ ├── xmlnodechangedeventhandler.cs │ │ ├── xmlnodelist.cs │ │ ├── xmlnodereader.cs │ │ ├── xmlnotation.cs │ │ ├── xmlprocessinginstruction.cs │ │ ├── xmlsignificantwhitespace.cs │ │ ├── xmltext.cs │ │ ├── xmlunspecifiedattribute.cs │ │ ├── xmlwhitespace.cs │ │ └── xpathnodelist.cs │ │ ├── emptyenumerator.cs │ │ ├── hwstack.cs │ │ ├── ihasxmlnode.cs │ │ ├── ixmllineinfo.cs │ │ ├── ixmlnamespaceresolver.cs │ │ ├── lineinfo.cs │ │ ├── listbase.cs │ │ ├── nametable.cs │ │ ├── ref.cs │ │ ├── schema │ │ ├── asttree.cs │ │ ├── autovalidator.cs │ │ ├── baseprocessor.cs │ │ ├── basevalidator.cs │ │ ├── bitset.cs │ │ ├── chameleonkey.cs │ │ ├── compiledidentityconstraint.cs │ │ ├── constraintstruct.cs │ │ ├── contentvalidator.cs │ │ ├── datatypeimplementation.cs │ │ ├── dtdparser.cs │ │ ├── dtdvalidator.cs │ │ ├── facetchecker.cs │ │ ├── idtdparseradapter.cs │ │ ├── inference │ │ │ ├── infer.cs │ │ │ └── xmlschemainferenceexception.cs │ │ ├── ixmlschemainfo.cs │ │ ├── namespacelist.cs │ │ ├── parser.cs │ │ ├── preprocessor.cs │ │ ├── schemaattdef.cs │ │ ├── schemabuilder.cs │ │ ├── schemacollectioncompiler.cs │ │ ├── schemacollectionpreprocessor.cs │ │ ├── schemadeclbase.cs │ │ ├── schemaelementdecl.cs │ │ ├── schemaentity.cs │ │ ├── schemainfo.cs │ │ ├── schemanames.cs │ │ ├── schemanamespacemanager.cs │ │ ├── schemanotation.cs │ │ ├── schemasetcompiler.cs │ │ ├── schematype.cs │ │ ├── validationeventargs.cs │ │ ├── validationeventhandler.cs │ │ ├── validationstate.cs │ │ ├── xdrbuilder.cs │ │ ├── xdrvalidator.cs │ │ ├── xmlatomicvalue.cs │ │ ├── xmlschema.cs │ │ ├── xmlschemaall.cs │ │ ├── xmlschemaannotated.cs │ │ ├── xmlschemaannotation.cs │ │ ├── xmlschemaany.cs │ │ ├── xmlschemaanyattribute.cs │ │ ├── xmlschemaappinfo.cs │ │ ├── xmlschemaattribute.cs │ │ ├── xmlschemaattributegroup.cs │ │ ├── xmlschemaattributegroupref.cs │ │ ├── xmlschemachoice.cs │ │ ├── xmlschemacollection.cs │ │ ├── xmlschemacompilationsettings.cs │ │ ├── xmlschemacomplexcontent.cs │ │ ├── xmlschemacomplexcontentextension.cs │ │ ├── xmlschemacomplexcontentrestriction.cs │ │ ├── xmlschemacomplextype.cs │ │ ├── xmlschemacontent.cs │ │ ├── xmlschemacontentmodel.cs │ │ ├── xmlschemacontentprocessing.cs │ │ ├── xmlschemacontenttype.cs │ │ ├── xmlschemadatatype.cs │ │ ├── xmlschemaderivationmethod.cs │ │ ├── xmlschemadocumentation.cs │ │ ├── xmlschemaelement.cs │ │ ├── xmlschemaexception.cs │ │ ├── xmlschemaexternal.cs │ │ ├── xmlschemafacet.cs │ │ ├── xmlschemaform.cs │ │ ├── xmlschemagroup.cs │ │ ├── xmlschemagroupbase.cs │ │ ├── xmlschemagroupref.cs │ │ ├── xmlschemaidentityconstraint.cs │ │ ├── xmlschemaimport.cs │ │ ├── xmlschemainclude.cs │ │ ├── xmlschemainfo.cs │ │ ├── xmlschemanotation.cs │ │ ├── xmlschemaobject.cs │ │ ├── xmlschemaobjectcollection.cs │ │ ├── xmlschemaobjecttable.cs │ │ ├── xmlschemaparticle.cs │ │ ├── xmlschemaredefine.cs │ │ ├── xmlschemasequence.cs │ │ ├── xmlschemaset.cs │ │ ├── xmlschemasimplecontent.cs │ │ ├── xmlschemasimplecontentextension.cs │ │ ├── xmlschemasimplecontentrestriction.cs │ │ ├── xmlschemasimpletype.cs │ │ ├── xmlschemasimpletypecontent.cs │ │ ├── xmlschemasimpletypelist.cs │ │ ├── xmlschemasimpletyperestriction.cs │ │ ├── xmlschemasimpletypeunion.cs │ │ ├── xmlschemasubstitutiongroup.cs │ │ ├── xmlschematype.cs │ │ ├── xmlschemause.cs │ │ ├── xmlschemavalidationexception.cs │ │ ├── xmlschemavalidator.cs │ │ ├── xmlschemavalidity.cs │ │ ├── xmlseveritytype.cs │ │ ├── xmltokenizedtype.cs │ │ ├── xmltypecode.cs │ │ ├── xmlvalueconverter.cs │ │ ├── xsdbuilder.cs │ │ ├── xsddatetime.cs │ │ ├── xsdduration.cs │ │ └── xsdvalidator.cs │ │ ├── serialization │ │ ├── _events.cs │ │ ├── advanced │ │ │ └── schemaimporterextension.cs │ │ ├── codeexporter.cs │ │ ├── codegenerationoptions.cs │ │ ├── codeidentifier.cs │ │ ├── codeidentifiers.cs │ │ ├── compilation.cs │ │ ├── compiler.cs │ │ ├── configuration │ │ │ ├── configurationstrings.cs │ │ │ ├── datetimeserializationsection.cs │ │ │ ├── schemaimporterextensionelement.cs │ │ │ ├── schemaimporterextensionelementcollection.cs │ │ │ ├── schemaimporterextensionssection.cs │ │ │ ├── serializationsectiongroup.cs │ │ │ └── xmlserializersection.cs │ │ ├── importcontext.cs │ │ ├── indentedwriter.cs │ │ ├── ixmlserializable.cs │ │ ├── ixmltextparser.cs │ │ ├── mappings.cs │ │ ├── models.cs │ │ ├── nametable.cs │ │ ├── primitivexmlserializers.cs │ │ ├── schemaimporter.cs │ │ ├── schemaobjectwriter.cs │ │ ├── soapattributeattribute.cs │ │ ├── soapattributeoverrides.cs │ │ ├── soapattributes.cs │ │ ├── soapcodeexporter.cs │ │ ├── soapelementattribute.cs │ │ ├── soapenumattribute.cs │ │ ├── soapignoreattribute.cs │ │ ├── soapincludeattribute.cs │ │ ├── soapreflectionimporter.cs │ │ ├── soapschemaexporter.cs │ │ ├── soapschemaimporter.cs │ │ ├── soapschemamember.cs │ │ ├── soaptypeattribute.cs │ │ ├── types.cs │ │ ├── xmlanyattributeattribute.cs │ │ ├── xmlanyelementattribute.cs │ │ ├── xmlanyelementattributes.cs │ │ ├── xmlarrayattribute.cs │ │ ├── xmlarrayitemattribute.cs │ │ ├── xmlarrayitemattributes.cs │ │ ├── xmlattributeattribute.cs │ │ ├── xmlattributeoverrides.cs │ │ ├── xmlattributes.cs │ │ ├── xmlchoiceidentifierattribute.cs │ │ ├── xmlcodeexporter.cs │ │ ├── xmlcountingreader.cs │ │ ├── xmlcustomformatter.cs │ │ ├── xmlelementattribute.cs │ │ ├── xmlelementattributes.cs │ │ ├── xmlenumattribute.cs │ │ ├── xmlignoreattribute.cs │ │ ├── xmlincludeattribute.cs │ │ ├── xmlmapping.cs │ │ ├── xmlmembermapping.cs │ │ ├── xmlmembersmapping.cs │ │ ├── xmlnamespacedeclarationsattribute.cs │ │ ├── xmlreflectionimporter.cs │ │ ├── xmlreflectionmember.cs │ │ ├── xmlrootattribute.cs │ │ ├── xmlschemaexporter.cs │ │ ├── xmlschemaimporter.cs │ │ ├── xmlschemaproviderattribute.cs │ │ ├── xmlschemas.cs │ │ ├── xmlserializationgeneratedcode.cs │ │ ├── xmlserializationreader.cs │ │ ├── xmlserializationwriter.cs │ │ ├── xmlserializer.cs │ │ ├── xmlserializerassemblyattribute.cs │ │ ├── xmlserializerfactory.cs │ │ ├── xmlserializernamespaces.cs │ │ ├── xmlserializerversionattribute.cs │ │ ├── xmltextattribute.cs │ │ ├── xmltypeattribute.cs │ │ └── xmltypemapping.cs │ │ ├── validatenames.cs │ │ ├── xmlchartype.bin │ │ ├── xmlchartype.cs │ │ ├── xmlcomplianceutil.cs │ │ ├── xmlconvert.cs │ │ ├── xmldownloadmanager.cs │ │ ├── xmlencoding.cs │ │ ├── xmlexception.cs │ │ ├── xmlnamespacemanager.cs │ │ ├── xmlnamespacescope.cs │ │ ├── xmlnametable.cs │ │ ├── xmlnodeorder.cs │ │ ├── xmlnodetype.cs │ │ ├── xmlnullresolver.cs │ │ ├── xmlqualifiedname.cs │ │ ├── xmlreservedns.cs │ │ ├── xmlresolver.cs │ │ ├── xmlsecureresolver.cs │ │ ├── xmlurlresolver.cs │ │ ├── xpath │ │ ├── internal │ │ │ ├── absolutequery.cs │ │ │ ├── astnode.cs │ │ │ ├── attributequery.cs │ │ │ ├── axis.cs │ │ │ ├── baseaxisquery.cs │ │ │ ├── booleanexpr.cs │ │ │ ├── booleanfunctions.cs │ │ │ ├── cacheaxisquery.cs │ │ │ ├── cachechildrenquery.cs │ │ │ ├── cacheoutputquery.cs │ │ │ ├── childrenquery.cs │ │ │ ├── clonablestack.cs │ │ │ ├── compiledxpathexpr.cs │ │ │ ├── contextquery.cs │ │ │ ├── descendantbasequery.cs │ │ │ ├── descendantoverdescendantquery.cs │ │ │ ├── descendantquery.cs │ │ │ ├── documentorderquery.cs │ │ │ ├── emptyquery.cs │ │ │ ├── extensionquery.cs │ │ │ ├── filter.cs │ │ │ ├── filterquery.cs │ │ │ ├── followingquery.cs │ │ │ ├── followingsibling.cs │ │ │ ├── forwardpositionquery.cs │ │ │ ├── function.cs │ │ │ ├── functionquery.cs │ │ │ ├── group.cs │ │ │ ├── groupquery.cs │ │ │ ├── idquery.cs │ │ │ ├── iteratorfilter.cs │ │ │ ├── logicalexpr.cs │ │ │ ├── mergefilterquery.cs │ │ │ ├── namespacequery.cs │ │ │ ├── nodefunctions.cs │ │ │ ├── numberfunctions.cs │ │ │ ├── numericexpr.cs │ │ │ ├── operand.cs │ │ │ ├── operandquery.cs │ │ │ ├── operator.cs │ │ │ ├── parentquery.cs │ │ │ ├── precedingquery.cs │ │ │ ├── precedingsibling.cs │ │ │ ├── query.cs │ │ │ ├── querybuilder.cs │ │ │ ├── resetableiterator.cs │ │ │ ├── reversepositionquery.cs │ │ │ ├── root.cs │ │ │ ├── sortquery.cs │ │ │ ├── stringfunctions.cs │ │ │ ├── unionexpr.cs │ │ │ ├── valuequery.cs │ │ │ ├── variable.cs │ │ │ ├── variablequery.cs │ │ │ ├── xmliteratorquery.cs │ │ │ ├── xpathancestoriterator.cs │ │ │ ├── xpathancestorquery.cs │ │ │ ├── xpatharrayiterator.cs │ │ │ ├── xpathaxisiterator.cs │ │ │ ├── xpathchilditerator.cs │ │ │ ├── xpathdescendantiterator.cs │ │ │ ├── xpathemptyiterator.cs │ │ │ ├── xpathmultyiterator.cs │ │ │ ├── xpathparser.cs │ │ │ ├── xpathscanner.cs │ │ │ ├── xpathselectioniterator.cs │ │ │ ├── xpathselfquery.cs │ │ │ └── xpathsingletoniterator.cs │ │ ├── ixpathnavigable.cs │ │ ├── xpathdocument.cs │ │ ├── xpathexception.cs │ │ ├── xpathexpr.cs │ │ ├── xpathitem.cs │ │ ├── xpathnamespacescope.cs │ │ ├── xpathnavigator.cs │ │ ├── xpathnavigatorkeycomparer.cs │ │ ├── xpathnavigatorreader.cs │ │ ├── xpathnodeiterator.cs │ │ └── xpathnodetype.cs │ │ └── xslt │ │ ├── xslcompiledtransform.cs │ │ ├── xsltargumentlist.cs │ │ ├── xsltcontext.cs │ │ ├── xsltexception.cs │ │ ├── xsltransform.cs │ │ └── xsltsettings.cs │ └── xmlutils │ ├── makefile │ ├── native.rc │ ├── sources │ ├── system.xml.utils.txt │ └── system │ └── xml │ └── xsl │ ├── assembly.cs │ ├── ilgen │ ├── generatehelper.cs │ ├── iteratordescriptor.cs │ ├── optimizerpatterns.cs │ ├── staticdatamanager.cs │ ├── tailcallanalyzer.cs │ ├── xmlilannotation.cs │ ├── xmlilconstructanalyzer.cs │ ├── xmlilmodule.cs │ ├── xmliloptimization.cs │ ├── xmliloptimizervisitor.cs │ ├── xmliltrace.cs │ ├── xmliltypehelper.cs │ └── xmlilvisitor.cs │ ├── isourcelineinfo.cs │ ├── pair.cs │ ├── qil │ ├── qilbinary.cs │ ├── qilchoice.cs │ ├── qilclonevisitor.cs │ ├── qildatasource.cs │ ├── qilexpression.cs │ ├── qilfactory.cs │ ├── qilfunction.cs │ ├── qilinvoke.cs │ ├── qilinvokeearlybound.cs │ ├── qilinvokelatebound.cs │ ├── qiliterator.cs │ ├── qillist.cs │ ├── qilliteral.cs │ ├── qilloop.cs │ ├── qilname.cs │ ├── qilnode.cs │ ├── qilnodetype.cs │ ├── qilparameter.cs │ ├── qilpatternfactory.cs │ ├── qilpatternvisitor.cs │ ├── qilreference.cs │ ├── qilreplacevisitor.cs │ ├── qilscopedvisitor.cs │ ├── qilsortkey.cs │ ├── qilstrconcat.cs │ ├── qiltargettype.cs │ ├── qilternary.cs │ ├── qiltypechecker.cs │ ├── qilunary.cs │ ├── qilvalidationvisitor.cs │ ├── qilvisitor.cs │ ├── qilxmlreader.cs │ ├── qilxmlwriter.cs │ ├── serializationhints.cs │ ├── substitutionlist.cs │ └── whitespacerule.cs │ ├── queryreadersettings.cs │ ├── runtime │ ├── contentiterators.cs │ ├── decimalformatter.cs │ ├── documentordercomparer.cs │ ├── dodsequencemerge.cs │ ├── earlyboundinfo.cs │ ├── numberformatter.cs │ ├── rtfnavigator.cs │ ├── setiterators.cs │ ├── siblingiterators.cs │ ├── stringconcat.cs │ ├── treeiterators.cs │ ├── whitespacerulelookup.cs │ ├── whitespacerulereader.cs │ ├── xmlaggregates.cs │ ├── xmlattributecache.cs │ ├── xmlcollation.cs │ ├── xmlextensionfunction.cs │ ├── xmlilindex.cs │ ├── xmlilstorageconverter.cs │ ├── xmliterators.cs │ ├── xmlnavigatorfilter.cs │ ├── xmlnavigatorstack.cs │ ├── xmlquerycontext.cs │ ├── xmlqueryoutput.cs │ ├── xmlqueryruntime.cs │ ├── xmlquerysequence.cs │ ├── xmlrawwriterwrapper.cs │ ├── xmlsequencewriter.cs │ ├── xmlsortkey.cs │ ├── xmlsortkeyaccumulator.cs │ ├── xslnumber.cs │ ├── xsltconvert.cs │ ├── xsltfunctions.cs │ └── xsltlibrary.cs │ ├── sourcelineinfo.cs │ ├── xmlcommand.cs │ ├── xmlilgenerator.cs │ ├── xmlnodekindflags.cs │ ├── xmlqualifiednametest.cs │ ├── xmlquerycardinality.cs │ ├── xmlquerytype.cs │ ├── xmlquerytypefactory.cs │ ├── xpath │ ├── ixpathbuilder.cs │ ├── ixpathenvironment.cs │ ├── xpathaxis.cs │ ├── xpathbuilder.cs │ ├── xpathcompileexception.cs │ ├── xpathcontext.cs │ ├── xpathoperator.cs │ ├── xpathparser.cs │ ├── xpathqilfactory.cs │ └── xpathscanner.cs │ ├── xpathconvert.cs │ ├── xslexception.cs │ ├── xslt │ ├── compiler.cs │ ├── compilerscopemanager.cs │ ├── focus.cs │ ├── ierrorhelper.cs │ ├── invokegenerator.cs │ ├── keymatchbuilder.cs │ ├── keywords.cs │ ├── matcherbuilder.cs │ ├── outputscopemanager.cs │ ├── qilgenerator.cs │ ├── qilgeneratorenv.cs │ ├── qilstrconcatenator.cs │ ├── scripts.cs │ ├── stylesheet.cs │ ├── xpathpatternbuilder.cs │ ├── xpathpatternparser.cs │ ├── xslast.cs │ ├── xslastanalyzer.cs │ ├── xslflags.cs │ ├── xsltannotation.cs │ ├── xsltinput.cs │ ├── xsltinput.cs.old │ ├── xsltloader.cs │ ├── xsltqilfactory.cs │ └── xslvisitor.cs │ └── xsltold │ ├── action.cs │ ├── actionframe.cs │ ├── applyimportsaction.cs │ ├── applytemplatesaction.cs │ ├── attributeaction.cs │ ├── attributesetaction.cs │ ├── avt.cs │ ├── avtevent.cs │ ├── beginevent.cs │ ├── builderinfo.cs │ ├── calltemplateaction.cs │ ├── chooseaction.cs │ ├── commentaction.cs │ ├── compiledaction.cs │ ├── compiler.cs │ ├── containeraction.cs │ ├── copyaction.cs │ ├── copyattributesaction.cs │ ├── copycodeaction.cs │ ├── copynamespacesaction.cs │ ├── copynodesetaction.cs │ ├── copyofaction.cs │ ├── dbgcompiler.cs │ ├── documentscope.cs │ ├── elementaction.cs │ ├── endevent.cs │ ├── event.cs │ ├── foreachaction.cs │ ├── htmlprops.cs │ ├── ifaction.cs │ ├── inputscope.cs │ ├── inputscopemanager.cs │ ├── keywords.cs │ ├── messageaction.cs │ ├── namespacedecl.cs │ ├── namespaceevent.cs │ ├── navigatorinput.cs │ ├── navigatoroutput.cs │ ├── newinstructionaction.cs │ ├── numberaction.cs │ ├── outkeywords.cs │ ├── outputscope.cs │ ├── outputscopemanager.cs │ ├── prefixqname.cs │ ├── processinginstructionaction.cs │ ├── processor.cs │ ├── readeroutput.cs │ ├── recordbuilder.cs │ ├── recordoutput.cs │ ├── rootaction.cs │ ├── sequentialoutput.cs │ ├── sortaction.cs │ ├── statemachine.cs │ ├── stringoutput.cs │ ├── stylesheet.cs │ ├── templateaction.cs │ ├── templatebaseaction.cs │ ├── templatelookupaction.cs │ ├── templatemanager.cs │ ├── textaction.cs │ ├── textevent.cs │ ├── textonlyoutput.cs │ ├── textoutput.cs │ ├── thequery.cs │ ├── useattributesetsaction.cs │ ├── valueofaction.cs │ ├── variableaction.cs │ ├── withparamaction.cs │ ├── writeroutput.cs │ ├── xsltcompilecontext.cs │ ├── xsltdebugger.cs │ └── xsltoutput.cs ├── install-sh ├── jscript ├── dirs ├── engine │ ├── activationobject.cs │ ├── activexobjectconstructor.cs │ ├── addressof.cs │ ├── argumentsobject.cs │ ├── arrayconstructor.cs │ ├── arrayenumerator.cs │ ├── arrayliteral.cs │ ├── arrayobject.cs │ ├── arrayprototype.cs │ ├── arraywrapper.cs │ ├── assemblyattributes.cs │ ├── assemblycustomattributelist.cs │ ├── assign.cs │ ├── ast.cs │ ├── astlist.cs │ ├── basevsa.cs │ ├── binaryop.cs │ ├── binding.cs │ ├── bitwisebinary.cs │ ├── bitwisebinaryassign.cs │ ├── block.cs │ ├── blockscope.cs │ ├── booleanconstructor.cs │ ├── booleanobject.cs │ ├── booleanprototype.cs │ ├── break.cs │ ├── breakoutoffinally.cs │ ├── builtinfunction.cs │ ├── call.cs │ ├── callableexpression.cs │ ├── callcontext.cs │ ├── class.cs │ ├── classscope.cs │ ├── closure.cs │ ├── clscompliancespec.cs │ ├── cmdlineerror.cs │ ├── cmdlineexception.cs │ ├── cmdlineoptionparser.cs │ ├── comma.cs │ ├── compilerglobals.cs │ ├── completion.cs │ ├── concatstring.cs │ ├── conditional.cs │ ├── constant.cs │ ├── constantlistitem.cs │ ├── constantwrapper.cs │ ├── constructorcall.cs │ ├── context.cs │ ├── continue.cs │ ├── continueoutoffinally.cs │ ├── convert.cs │ ├── customattribute.cs │ ├── customattributelist.cs │ ├── dateconstructor.cs │ ├── dateobject.cs │ ├── dateprototype.cs │ ├── debug.cs │ ├── debugbreak.cs │ ├── delete.cs │ ├── documentcontext.cs │ ├── dowhile.cs │ ├── empty.cs │ ├── emptyliteral.cs │ ├── enumdeclaration.cs │ ├── enumeratorconstructor.cs │ ├── enumeratorobject.cs │ ├── enumeratorprototype.cs │ ├── enumwrapper.cs │ ├── equality.cs │ ├── errorconstructor.cs │ ├── errorobject.cs │ ├── errorprototype.cs │ ├── eval.cs │ ├── evalerrorobject.cs │ ├── expando.cs │ ├── expression.cs │ ├── fieldaccessor.cs │ ├── for.cs │ ├── forin.cs │ ├── functionconstructor.cs │ ├── functiondeclaration.cs │ ├── functionexpression.cs │ ├── functionobject.cs │ ├── functionprototype.cs │ ├── functionscope.cs │ ├── functionwrapper.cs │ ├── globalobject.cs │ ├── globals.cs │ ├── globalscope.cs │ ├── iactivationobject.cs │ ├── identifierliteral.cs │ ├── if.cs │ ├── import.cs │ ├── in.cs │ ├── ineedengine.cs │ ├── instanceof.cs │ ├── iwrappedmember.cs │ ├── jsbinder.cs │ ├── jsclosurefield.cs │ ├── jsclosuremethod.cs │ ├── jsclosureproperty.cs │ ├── jscodegenerator.cs │ ├── jsconstructor.cs │ ├── jscriptexception.cs │ ├── jserror.cs │ ├── jsexpandofield.cs │ ├── jsexpandoindexermethod.cs │ ├── jsfield.cs │ ├── jsfieldinfo.cs │ ├── jsfieldmethod.cs │ ├── jsfunctionattribute.cs │ ├── jsglobalfield.cs │ ├── jsinproccompiler.cs │ ├── jskeyword.cs │ ├── jslocalfield.cs │ ├── jsmemberfield.cs │ ├── jsmethod.cs │ ├── jsmethodinfo.cs │ ├── jsnativemethod.cs │ ├── jsobject.cs │ ├── jsparameterinfo.cs │ ├── jsparser.cs │ ├── jsproperty.cs │ ├── jspropertyfield.cs │ ├── jspropertyinfo.cs │ ├── jsprototypefield.cs │ ├── jsprototypeobject.cs │ ├── jsscanner.cs │ ├── jstoken.cs │ ├── jsvariablefield.cs │ ├── jswrappedfield.cs │ ├── jswrappedmethod.cs │ ├── jswrappedproperty.cs │ ├── jswrappedpropertyandmethod.cs │ ├── latebinding.cs │ ├── lenientarrayprototype.cs │ ├── lenientbooleanprototype.cs │ ├── lenientdateconstructor.cs │ ├── lenientdateprototype.cs │ ├── lenientenumeratorprototype.cs │ ├── lenienterrorprototype.cs │ ├── lenientfunctionprototype.cs │ ├── lenientglobalobject.cs │ ├── lenientmathobject.cs │ ├── lenientnumberprototype.cs │ ├── lenientobjectprototype.cs │ ├── lenientregexpprototype.cs │ ├── lenientstringconstructor.cs │ ├── lenientstringprototype.cs │ ├── lenientvbarrayprototype.cs │ ├── listenumerator.cs │ ├── logical_and.cs │ ├── logical_or.cs │ ├── lookup.cs │ ├── makefile │ ├── makefile.inc │ ├── mathobject.cs │ ├── member.cs │ ├── memberinfolist.cs │ ├── methodinvoker.cs │ ├── microsoft.jscript.rc │ ├── microsoft.jscript.txt │ ├── missing.cs │ ├── namespace.cs │ ├── notrecommended.cs │ ├── nullliteral.cs │ ├── numberconstructor.cs │ ├── numberobject.cs │ ├── numberprototype.cs │ ├── numericbinary.cs │ ├── numericbinaryassign.cs │ ├── numericunary.cs │ ├── objectconstructor.cs │ ├── objectliteral.cs │ ├── objectprototype.cs │ ├── obsolete.cs │ ├── opprec.cs │ ├── package.cs │ ├── packagescope.cs │ ├── parameterdeclaration.cs │ ├── plus.cs │ ├── plusassign.cs │ ├── postorprefixoperator.cs │ ├── print.cs │ ├── rangeenumerator.cs │ ├── rangeerrorobject.cs │ ├── redirectoutput.cs │ ├── referenceattribute.cs │ ├── referenceerrorobject.cs │ ├── regexpconstructor.cs │ ├── regexpliteral.cs │ ├── regexpmatch.cs │ ├── regexpobject.cs │ ├── regexpprototype.cs │ ├── regexpreplace.cs │ ├── relational.cs │ ├── resinfo.cs │ ├── return.cs │ ├── returnoutoffinally.cs │ ├── runtime.cs │ ├── scannerexception.cs │ ├── scriptblock.cs │ ├── scriptfunction.cs │ ├── scriptobject.cs │ ├── scriptobjectpropertyenumerator.cs │ ├── scriptstream.cs │ ├── simplehashtable.cs │ ├── sources │ ├── stack.cs │ ├── stackframe.cs │ ├── staticinitializer.cs │ ├── strictequality.cs │ ├── stringconstructor.cs │ ├── stringobject.cs │ ├── stringprototype.cs │ ├── supertypememberssorter.cs │ ├── switch.cs │ ├── switchcase.cs │ ├── syntaxerrorobject.cs │ ├── thisliteral.cs │ ├── throw.cs │ ├── try.cs │ ├── typedarray.cs │ ├── typeerrorobject.cs │ ├── typeexpression.cs │ ├── typeob.cs │ ├── typeof.cs │ ├── typereferences.cs │ ├── typereflector.cs │ ├── unaryop.cs │ ├── urierrorobject.cs │ ├── variabledeclaration.cs │ ├── vbarrayconstructor.cs │ ├── vbarrayobject.cs │ ├── vbarrayprototype.cs │ ├── versionableattribute.cs │ ├── voidop.cs │ ├── vsa2.cs │ ├── vsaengine.cs │ ├── vsahostobject.cs │ ├── vsaitem.cs │ ├── vsaitems.cs │ ├── vsanameditemscope.cs │ ├── vsareference.cs │ ├── vsascriptscope.cs │ ├── vsastaticcode.cs │ ├── while.cs │ ├── with.cs │ ├── withobject.cs │ └── wrappednamespace.cs ├── jsc │ ├── jsc.cs │ ├── jsc.rc │ ├── jsc.txt │ ├── makefile │ ├── makefile.inc │ └── sources ├── jscript.inc └── vsa │ ├── makefile │ ├── obsolete.cs │ ├── sources │ └── vsa7.cs ├── license.txt ├── license_banner_for_sources.txt ├── licensed_file_list.txt ├── makefile ├── makefile.common.in ├── makefile.in ├── mswin32.startup.pl ├── ndpmk.inc ├── pal ├── inc │ ├── pal_assert.h │ ├── pal_endian.h │ ├── pal_error.h │ ├── pal_mstypes.h │ ├── rotor_pal.h │ └── strsafe.h ├── unix │ ├── arch │ │ ├── i386 │ │ │ ├── context.c │ │ │ ├── interlock.c │ │ │ └── makefile.in │ │ ├── makefile.in │ │ └── ppc │ │ │ ├── cacheflush.s │ │ │ ├── context.c │ │ │ ├── interlock.s │ │ │ ├── makefile.in │ │ │ └── tls.c │ ├── build_tools │ │ ├── makefile.in │ │ ├── mdtool_dummy │ │ └── mdtool_gcc.in │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── cruntime │ │ ├── file.c │ │ ├── finite.c │ │ ├── lstr.c │ │ ├── makefile.in │ │ ├── mbstring.c │ │ ├── misc.c │ │ ├── path.c │ │ ├── printf.c │ │ ├── silent_printf.c │ │ ├── string.c │ │ ├── thread.c │ │ └── wchar.c │ ├── debug │ │ ├── debug.cpp │ │ └── makefile.in │ ├── dlcompat │ │ ├── dlcompat.h │ │ ├── dlfcn.c │ │ └── makefile.in │ ├── examples │ │ ├── example1.c │ │ └── makefile.in │ ├── exception │ │ ├── cpp_exceptions.cpp │ │ ├── exception.c │ │ ├── machexception.c │ │ ├── machexception.h │ │ ├── makefile.in │ │ ├── signal.c │ │ └── signal.h │ ├── file │ │ ├── directory.c │ │ ├── disk.c │ │ ├── file.c │ │ ├── filetime.c │ │ ├── find.c │ │ ├── makefile.in │ │ ├── path.c │ │ └── realpath.c │ ├── handlemgr │ │ ├── handle.c │ │ └── makefile.in │ ├── include │ │ └── pal │ │ │ ├── context.h │ │ │ ├── critsect.h │ │ │ ├── cruntime.h │ │ │ ├── dbgmsg.h │ │ │ ├── debug.h │ │ │ ├── fakepoll.h │ │ │ ├── file.h │ │ │ ├── filetime.h │ │ │ ├── handle.h │ │ │ ├── identity.h │ │ │ ├── init.h │ │ │ ├── list.h │ │ │ ├── locale.h │ │ │ ├── map.h │ │ │ ├── misc.h │ │ │ ├── module.h │ │ │ ├── modulename.h │ │ │ ├── mutex.h │ │ │ ├── palinternal.h │ │ │ ├── perftrace.h │ │ │ ├── seh.h │ │ │ ├── shmemory.h │ │ │ ├── socket2.h │ │ │ ├── sync.h │ │ │ ├── thread.h │ │ │ ├── unicode_data.h │ │ │ ├── utf8.h │ │ │ ├── utils.h │ │ │ └── virtual.h │ ├── init │ │ ├── makefile.in │ │ └── pal.c │ ├── loader │ │ ├── makefile.in │ │ ├── module.cpp │ │ └── modulename.cpp │ ├── locale │ │ ├── locale.c │ │ ├── makefile.in │ │ ├── unicode.c │ │ ├── unicode_data.c │ │ ├── unicodedata.txt │ │ └── utf8.c │ ├── makefile │ ├── makefile.common.in │ ├── makefile.in │ ├── map │ │ ├── common.c │ │ ├── common.h │ │ ├── makefile.in │ │ ├── map.c │ │ └── virtual.cpp │ ├── memory │ │ ├── heap.c │ │ ├── local.c │ │ └── makefile.in │ ├── misc │ │ ├── dbgmsg.c │ │ ├── environ.c │ │ ├── error.c │ │ ├── fmtmessage.c │ │ ├── identity.c │ │ ├── makefile.in │ │ ├── miscpalapi.c │ │ ├── msgbox.c │ │ ├── perftrace.c │ │ ├── sysinfo.c │ │ ├── time.c │ │ ├── utils.c │ │ └── version.c │ ├── poll │ │ ├── fakepoll.c │ │ └── makefile.in │ ├── shmemory │ │ ├── makefile.in │ │ └── shmemory.c │ ├── socket │ │ ├── async.c │ │ ├── makefile.in │ │ ├── socket.c │ │ └── socket2.c │ ├── sync │ │ ├── critsect.c │ │ ├── event.c │ │ ├── event.h │ │ ├── makefile.in │ │ ├── mutex.c │ │ ├── semaphore.c │ │ ├── semaphore.h │ │ └── wait.c │ └── thread │ │ ├── localstorage.c │ │ ├── makefile.in │ │ ├── process.c │ │ ├── process.h │ │ └── thread.c └── win32 │ ├── binplace.cmd │ ├── build.cmd │ ├── cpp_exceptions.cpp │ ├── default.mac │ ├── eventlog.mc │ ├── exception.c │ ├── make.cmd │ ├── makefile │ ├── makefile.inc │ ├── perftrace.c │ ├── perftrace.h │ ├── rotor_pal.rc │ ├── rotor_pal.src │ ├── sources │ ├── verifythread.c │ ├── win32pal.c │ └── win32pal.h ├── palrt ├── debug │ ├── makefile │ ├── method.c │ ├── rotor_debug.def │ └── sources ├── dirs ├── inc │ ├── asm_version.h │ ├── assert.h │ ├── atl.h │ ├── atlcom.h │ ├── atlwin.h │ ├── ccombstr.h │ ├── common.ver │ ├── crtdbg.h │ ├── cstring.h │ ├── ctype.h │ ├── fcntl.h │ ├── float.h │ ├── fxver.h │ ├── fxver.rc │ ├── fxverstrings.h │ ├── guiddef.h │ ├── io.h │ ├── limits.h │ ├── malloc.h │ ├── math.h │ ├── mbstring.h │ ├── memory.h │ ├── ndpversion.h │ ├── new.h │ ├── ntimage.h │ ├── oaidl.h │ ├── objbase.h │ ├── objidl.h │ ├── ole2.h │ ├── oleauto.h │ ├── oleidl.h │ ├── palexecmain.h │ ├── palstartup.h │ ├── palstartupw.h │ ├── poppack.h │ ├── process.h │ ├── product_version.h │ ├── pshpack1.h │ ├── pshpack2.h │ ├── pshpack4.h │ ├── pshpack8.h │ ├── pshpck16.h │ ├── rotor_palrt.h │ ├── rpc.h │ ├── rpcndr.h │ ├── safecrt.h │ ├── servprov.h │ ├── shlwapi.h │ ├── specstrings.h │ ├── sscli_version.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── time.h │ ├── unknwn.h │ ├── version.h │ ├── vsassert.h │ ├── wchar.h │ ├── winbase.h │ ├── wincrypt.h │ ├── windef.h │ ├── windows.h │ ├── winerror.h │ ├── winnls.h │ ├── winresrc.h │ └── winver.h ├── msgs │ ├── makefile │ ├── rotor_pal.rc │ └── sources ├── src │ ├── bignum.cpp │ ├── bstr.cpp │ ├── cocreate.cpp │ ├── coguid.cpp │ ├── comem.cpp │ ├── convert.cpp │ ├── convert.h │ ├── crtstuff.cpp │ ├── crtstuff.h │ ├── crypt.cpp │ ├── crypt.h │ ├── decarith.cpp │ ├── decimal.cpp │ ├── dllmain.cpp │ ├── errinfo.cpp │ ├── inifile.cpp │ ├── loadstring.cpp │ ├── makefile │ ├── md5.cpp │ ├── memorystream.cpp │ ├── numprs.cpp │ ├── oautil.h │ ├── palconfig.cpp │ ├── path.cpp │ ├── rotor_palrt.rc │ ├── rotor_palrt.src │ ├── sarray.cpp │ ├── sha1.cpp │ ├── shlwapip.h │ ├── shstr.cpp │ ├── shstr.h │ ├── sources │ ├── strings.cpp │ ├── urlpars.cpp │ └── variant.cpp ├── sscoree │ ├── functions.cpp │ ├── globals.cpp │ ├── libs.h │ ├── makefile │ ├── makefile.inc │ ├── sources │ ├── sscoree.src │ ├── sscoree_debug.cpp │ ├── sscoree_exports.cpp │ ├── sscoree_int.cpp │ ├── sscoree_int.h │ ├── sscoree_shims.h │ └── syms.h └── static │ ├── guid.cpp │ ├── makefile │ └── sources ├── prebuilt ├── asmmeta │ ├── microsoft.jscript.asmmeta │ ├── microsoft.vsa.asmmeta │ ├── mscorlib.asmmeta │ ├── system.asmmeta │ ├── system.configuration.asmmeta │ ├── system.data.sqlxml.asmmeta │ ├── system.runtime.remoting.asmmeta │ ├── system.runtime.serialization.formatters.soap.asmmeta │ └── system.xml.asmmeta ├── idl │ ├── clrdata.h │ ├── clrdata_i.c │ ├── clrinternal.h │ ├── clrinternal_i.c │ ├── cordebug.h │ ├── cordebug_i.c │ ├── corffi.h │ ├── corffi_i.c │ ├── corprof.h │ ├── corprof_i.c │ ├── corpub.h │ ├── corpub_i.c │ ├── corsym.h │ ├── corsym_i.c │ ├── csiface.h │ ├── csiface_i.c │ ├── fusion.h │ ├── fusion_i.c │ ├── fusionpriv.h │ ├── fusionpriv_i.c │ ├── gchost.h │ ├── gchost_i.c │ ├── ivalidator.h │ ├── ivalidator_i.c │ ├── ivehandler.h │ ├── ivehandler_i.c │ ├── mscoree.h │ ├── mscoree_i.c │ ├── xclrdata.h │ └── xclrdata_i.c └── yacc │ └── asmparse.c ├── readfirst.html ├── samples ├── compilers │ ├── clisp │ │ ├── clisp.cs │ │ ├── clisp.html │ │ ├── codegen.cs │ │ ├── exp.cs │ │ ├── fibo.lisp │ │ ├── lexer.cs │ │ ├── lispruntime.cs │ │ ├── makefile │ │ ├── parser.cs │ │ ├── sort.lisp │ │ ├── sources │ │ ├── token.cs │ │ └── typecheck.cs │ ├── dirs │ └── myc │ │ ├── dirs │ │ ├── myc.html │ │ ├── mycarch.gif │ │ ├── src │ │ ├── asm.cs │ │ ├── emit.cs │ │ ├── exe.cs │ │ ├── iasm.cs │ │ ├── io.cs │ │ ├── makefile │ │ ├── myc.cs │ │ ├── parse.cs │ │ ├── sources │ │ ├── tok.cs │ │ ├── var.cs │ │ └── varlist.cs │ │ └── tests │ │ ├── t01.myc │ │ ├── t02.myc │ │ ├── t03.myc │ │ ├── t04.myc │ │ ├── t05.myc │ │ ├── t06.myc │ │ ├── t07.myc │ │ ├── t08.myc │ │ ├── tdll.myc │ │ └── tflow.myc ├── dirs ├── hello │ ├── hello.cs │ ├── hello.html │ ├── makefile │ └── sources ├── helloxml │ ├── helloxml.cs │ ├── helloxml.html │ ├── makefile │ └── sources ├── howto │ ├── basedatatypes │ │ ├── dirs │ │ └── stringformat │ │ │ ├── makefile │ │ │ ├── sources │ │ │ ├── stringformat.cs │ │ │ └── stringformat.html │ ├── codedom │ │ ├── listbuilder.cs │ │ ├── listbuilder.html │ │ ├── makefile │ │ └── sources │ ├── dirs │ ├── net │ │ ├── dirs │ │ ├── getresponse │ │ │ ├── getresponse.cs │ │ │ ├── getresponse.html │ │ │ ├── makefile │ │ │ └── sources │ │ └── udpchat │ │ │ ├── makefile │ │ │ ├── sources │ │ │ ├── udpchat.cs │ │ │ └── udpchat.html │ ├── reflection │ │ ├── dirs │ │ ├── emit │ │ │ ├── makefile │ │ │ ├── reflectionemit.cs │ │ │ ├── reflectionemit.html │ │ │ └── sources │ │ └── invoke │ │ │ ├── makefile │ │ │ ├── reflectioninvoke.cs │ │ │ ├── reflectioninvoke.html │ │ │ └── sources │ ├── regularexpressions │ │ ├── makefile │ │ ├── regularexpressions.cs │ │ ├── regularexpressions.html │ │ └── sources │ ├── remoting │ │ ├── client │ │ │ ├── client.cs │ │ │ ├── makefile │ │ │ └── sources │ │ ├── dirs │ │ ├── remoting.html │ │ ├── server │ │ │ ├── makefile │ │ │ ├── server.cs │ │ │ └── sources │ │ └── shared │ │ │ ├── makefile │ │ │ ├── shared.cs │ │ │ └── sources │ ├── resources │ │ ├── makefile │ │ ├── managedresources.cs │ │ ├── managedresources.html │ │ ├── sources │ │ └── strings.txt │ ├── security │ │ ├── dirs │ │ └── permissions │ │ │ ├── authorized │ │ │ ├── authorized.cs │ │ │ ├── authorized.snk │ │ │ ├── makefile │ │ │ └── sources │ │ │ ├── dirs │ │ │ ├── exclusive.bat │ │ │ ├── exclusive.sh │ │ │ ├── myperm │ │ │ ├── makefile │ │ │ ├── myperm.cs │ │ │ ├── myperm.snk │ │ │ ├── myperm.xml │ │ │ └── sources │ │ │ ├── names.txt │ │ │ ├── namestore │ │ │ ├── makefile │ │ │ ├── namestore.cs │ │ │ ├── namestore.snk │ │ │ └── sources │ │ │ ├── permissions.html │ │ │ ├── resetpolicy.bat │ │ │ ├── resetpolicy.sh │ │ │ ├── setpolicy.bat │ │ │ ├── setpolicy.sh │ │ │ └── unauthorized │ │ │ ├── makefile │ │ │ ├── sources │ │ │ ├── unauthorized.cs │ │ │ └── unauthorized.snk │ ├── serialization │ │ ├── dirs │ │ ├── iserializable │ │ │ ├── iserializable.cs │ │ │ ├── iserializable.html │ │ │ ├── makefile │ │ │ └── sources │ │ └── simpleserialize │ │ │ ├── makefile │ │ │ ├── simpleserialize.cs │ │ │ ├── simpleserialize.html │ │ │ └── sources │ ├── xml │ │ ├── dirs │ │ ├── xmlschema │ │ │ ├── books.xsd │ │ │ ├── makefile │ │ │ ├── poschema.xsd │ │ │ ├── sources │ │ │ ├── xmlschema.cs │ │ │ └── xmlschema.html │ │ └── xmltransform │ │ │ ├── books.xml │ │ │ ├── books.xsl │ │ │ ├── makefile │ │ │ ├── processparameters1.xml │ │ │ ├── processparameters2.xml │ │ │ ├── sources │ │ │ ├── stylesheetgenerator.xsl │ │ │ ├── xmltransform.cs │ │ │ └── xmltransform.html │ └── xmlserialization │ │ ├── dirs │ │ ├── purchaseorder │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── purchaseorder.xsd │ │ └── sources │ │ ├── xmlserialization.html │ │ └── xmlserialize │ │ ├── inputdata.xml │ │ ├── makefile │ │ ├── sources │ │ └── xmlserialize.cs ├── pigui │ ├── dirs │ ├── hello │ │ ├── hello.html │ │ ├── helloworld.cs │ │ ├── makefile │ │ └── sources │ ├── pigpad │ │ ├── makefile │ │ ├── pigpad.cs │ │ ├── pigpad.html │ │ └── sources │ └── tk │ │ ├── assemblyver.h │ │ ├── delegatewrappers.cs │ │ ├── makefile │ │ ├── sources │ │ ├── tclnative.cs │ │ ├── tk.cs │ │ ├── tk_wrapper.html │ │ └── tknative.cs ├── project.mk ├── samples_index.html └── utilities │ ├── codetohtml │ ├── codeblue.css │ ├── codetohtml.html │ ├── codetohtml.js │ ├── codewhite.css │ ├── cs_codetohtml.ini │ ├── cs_futurereserved.ini │ ├── cs_keywords.ini │ ├── cs_replace.ini │ ├── cs_userdefined.ini │ ├── footer.txt │ ├── header.txt │ ├── js_codetohtml.ini │ ├── js_futurereserved.ini │ ├── js_keywords.ini │ ├── js_replace.ini │ ├── js_userdefined.ini │ ├── makefile │ ├── makefile.inc │ └── sources │ ├── corclass │ ├── assemblyver.h │ ├── basegenerator.cs │ ├── consolegenerator.cs │ ├── corclass.html │ ├── corcls.cs │ ├── makefile │ ├── sources │ ├── typenames.cs │ └── webgenerator.cs │ ├── crlf │ ├── crlf.cs │ ├── crlf.html │ ├── makefile │ └── sources │ ├── dirs │ ├── getcliversion │ ├── getcliversion.cs │ ├── getcliversion.html │ ├── imagehelp.cs │ ├── makefile │ ├── pereader.cs │ └── sources │ ├── grep │ ├── grep.cs │ ├── grep.html │ ├── makefile │ └── sources │ ├── typefinder │ ├── makefile │ ├── sources │ ├── typefinder.cs │ └── typefinder.html │ ├── wordcount │ ├── argparser.cs │ ├── makefile │ ├── sources │ ├── wordcount.cs │ └── wordcount.html │ └── xsd │ ├── assemblyver.h │ ├── makefile │ ├── sources │ ├── xsd.cs │ ├── xsd.html │ └── xsdres.txt ├── tests ├── bcl │ ├── dev │ │ ├── rdirs │ │ ├── reflection │ │ │ ├── coreflectioninsensitivelookup.cs │ │ │ └── rsources │ │ └── serialization │ │ │ ├── coserializationregression.cs │ │ │ ├── covaluetypefixup.cs │ │ │ └── rsources │ ├── localization │ │ ├── datetime │ │ │ ├── co8656bufferoverflow.cs │ │ │ ├── co8657createtables.cs │ │ │ ├── co8657createtables.resources │ │ │ ├── co8657datetimeformatting.cs │ │ │ ├── co8657datetimeformatting.resources │ │ │ ├── co8792hebrewsupport.cs │ │ │ └── rsources │ │ ├── numberformatting │ │ │ ├── co8643createtables.cs │ │ │ ├── co8643numberformat.cs │ │ │ ├── co8643numberformat.resources │ │ │ ├── co8655bufferoverflow.cs │ │ │ ├── co8658bufferoverflow_stress.cs │ │ │ ├── co8795commonformattable.cs │ │ │ ├── co8820roundtripallcultures.cs │ │ │ └── rsources │ │ └── rdirs │ ├── protected │ │ ├── collectionbasegetinnerlisttest.cs │ │ ├── collectionbasegetlisttest.cs │ │ ├── collectionbaseonclearcompletetest.cs │ │ ├── collectionbaseoncleartest.cs │ │ ├── collectionbaseoninsertcompletetest.cs │ │ ├── collectionbaseoninserttest.cs │ │ ├── collectionbaseonremovecompletetest.cs │ │ ├── collectionbaseonremovetest.cs │ │ ├── collectionbaseonsetcompletetest.cs │ │ ├── collectionbaseonsettest.cs │ │ ├── collectionbaseonvalidatetest.cs │ │ ├── dictionarybasegetdictionarytest.cs │ │ ├── dictionarybasegetinnerhashtabletest.cs │ │ ├── dictionarybaseonclearcompletetest.cs │ │ ├── dictionarybaseoncleartest.cs │ │ ├── dictionarybaseongettest.cs │ │ ├── dictionarybaseoninsertcompletetest.cs │ │ ├── dictionarybaseoninserttest.cs │ │ ├── dictionarybaseonremovecompletetest.cs │ │ ├── dictionarybaseonremovetest.cs │ │ ├── dictionarybaseonsetcompletetest.cs │ │ ├── dictionarybaseonsettest.cs │ │ ├── dictionarybaseonvalidatetest.cs │ │ ├── hashtablegetcomparertest.cs │ │ ├── rsources │ │ └── streamcreatewaithandlertest.cs │ ├── rdirs │ ├── security │ │ ├── rdirs │ │ ├── regex │ │ │ ├── co8834regex.cs │ │ │ └── rsources │ │ ├── resources │ │ │ ├── co8651publicresources.cs │ │ │ ├── co8651publicresources.resources │ │ │ ├── co8651support.cs │ │ │ ├── co8652privateresources.cs │ │ │ ├── co8652support.cs │ │ │ └── rsources │ │ └── serialization │ │ │ ├── co8647binaryformatter.cs │ │ │ ├── co8648soapformatter.cs │ │ │ ├── co8649formatterservices.cs │ │ │ ├── co8650objectmanager.cs │ │ │ └── rsources │ ├── system │ │ ├── argiterator │ │ │ ├── co1827argiterator.cs │ │ │ ├── co6661getnextarg.cs │ │ │ ├── co6662getnextargtype.cs │ │ │ ├── co6663equals.cs │ │ │ ├── co6664getremainingcount.cs │ │ │ ├── co6665gethashcode.cs │ │ │ └── rsources │ │ ├── array │ │ │ ├── co1078clear.cs │ │ │ ├── co1262copy.cs │ │ │ ├── co1592clone.cs │ │ │ ├── co3742createinstance_type_i.cs │ │ │ ├── co3743createinstance_type_ii.cs │ │ │ ├── co3744createinstance_type_iii.cs │ │ │ ├── co3745createinstance_type_iarr.cs │ │ │ ├── co3746createinstance_type_iarr_iarr.cs │ │ │ ├── co3747getvalue_i.cs │ │ │ ├── co3748getvalue_ii.cs │ │ │ ├── co3749getvalue_iii.cs │ │ │ ├── co3750setvalue_vi.cs │ │ │ ├── co3751setvalue_vii.cs │ │ │ ├── co3752setvalue_viii.cs │ │ │ ├── co3753getvalue_iarr.cs │ │ │ ├── co3754setvalue_viarr.cs │ │ │ ├── co3756copy_aai.cs │ │ │ ├── co3757binarysearch_oo.cs │ │ │ ├── co3758binarysearch_oiio.cs │ │ │ ├── co3759binarysearch_ooi.cs │ │ │ ├── co3760binarysearch_oiioi.cs │ │ │ ├── co3761indexof_oo.cs │ │ │ ├── co3762indexof_ooi.cs │ │ │ ├── co3763indexof_ooii.cs │ │ │ ├── co3764lastindexof_oo.cs │ │ │ ├── co3765lastindexof_ooi.cs │ │ │ ├── co3766lastindexof_ooii.cs │ │ │ ├── co3767reverse_o.cs │ │ │ ├── co3768reverse_oii.cs │ │ │ ├── co3769sort_o.cs │ │ │ ├── co3770sort_oii.cs │ │ │ ├── co3771sort_oiii.cs │ │ │ ├── co3772sort_oi.cs │ │ │ ├── co3773sort_oo.cs │ │ │ ├── co3774sort_ooi.cs │ │ │ ├── co3775sort_ooii.cs │ │ │ ├── co3776sort_ooiii.cs │ │ │ ├── co3777aslist.cs │ │ │ ├── co3795copyto.cs │ │ │ ├── co3796getenumerator.cs │ │ │ ├── co3797get_count.cs │ │ │ ├── co4385getupperbound.cs │ │ │ ├── co4386getlowerbound.cs │ │ │ ├── co5126getlength.cs │ │ │ ├── co5127getlength_int.cs │ │ │ ├── co5149get_rank.cs │ │ │ ├── co6001gethashcode.cs │ │ │ ├── co6002gettype.cs │ │ │ ├── co6003isfixedsize.cs │ │ │ ├── co6004isreadonly.cs │ │ │ ├── co6005issynchronized.cs │ │ │ ├── co6006syncroot.cs │ │ │ ├── co6007tostring.cs │ │ │ └── rsources │ │ ├── attribute │ │ │ ├── co4752getcustomattributes_meminfo_type.cs │ │ │ ├── co4763getcustomattributes_meminfo.cs │ │ │ ├── co4764isdefined_meminfo_type.cs │ │ │ ├── co4765getcustomattributes_paraminfo_type.cs │ │ │ ├── co4766getcustomattributes_paraminfo.cs │ │ │ ├── co4767isdefined_paraminfo_type.cs │ │ │ ├── co4768getcustomattributes_meminfo.cs │ │ │ ├── co4769getcustomattributes_paraminfo_type.cs │ │ │ └── rsources │ │ ├── bitconverter │ │ │ ├── co1230getbytes_int.cs │ │ │ ├── co1231getbytes_short.cs │ │ │ ├── co1232getbytes_char.cs │ │ │ ├── co1233getbytes_long.cs │ │ │ ├── co1235toint32.cs │ │ │ ├── co1237toint16.cs │ │ │ ├── co1239toint64.cs │ │ │ ├── co1241tostring.cs │ │ │ ├── co1243toboolean.cs │ │ │ ├── co1245getbytes_double.cs │ │ │ ├── co3431getbytes_float.cs │ │ │ ├── co3432todouble.cs │ │ │ ├── co3433tosingle.cs │ │ │ ├── co3434tostring_bytearr.cs │ │ │ ├── co3436tostring_bytearrint.cs │ │ │ ├── co3437tochar.cs │ │ │ ├── co5370getbytes_uint.cs │ │ │ ├── co5371getbytes_ulong.cs │ │ │ ├── co5372getbytes_ushort.cs │ │ │ ├── co5373touint16_ubarr_i.cs │ │ │ ├── co5374touint32_ubarr_i.cs │ │ │ ├── co5375touint64_ubarr_i.cs │ │ │ ├── co5452getbytes_bool.cs │ │ │ ├── co9101doubletoint64bits_dbl.cs │ │ │ ├── co9102int64bitstodouble_i64.cs │ │ │ └── rsources │ │ ├── boolean │ │ │ ├── co4214gethashcode.cs │ │ │ ├── co4215equals.cs │ │ │ ├── co4216parse.cs │ │ │ ├── co4217tostring.cs │ │ │ ├── co4218tostring_boolean.cs │ │ │ ├── co5026compareto.cs │ │ │ ├── co5712iconvertible_boolean.cs │ │ │ ├── co6000parse.cs │ │ │ └── rsources │ │ ├── buffer │ │ │ ├── co3829blockcopy.cs │ │ │ ├── co3830bytelength_a.cs │ │ │ ├── co3831getbyte_ai.cs │ │ │ ├── co3832setbyte_aibyte.cs │ │ │ └── rsources │ │ ├── byte │ │ │ ├── co5035compareto.cs │ │ │ ├── co5036equals.cs │ │ │ ├── co5038gethashcode.cs │ │ │ ├── co5039tostring.cs │ │ │ ├── co5040tostring_byte.cs │ │ │ ├── co5041parse_str.cs │ │ │ ├── co5042parse_int.cs │ │ │ ├── co5043parse_int_nfi.cs │ │ │ ├── co5044tostring_str.cs │ │ │ ├── co5045tostring_str_ifp.cs │ │ │ ├── co5117format_str_ifp.cs │ │ │ ├── co5713iconvertible_byte.cs │ │ │ ├── co6001parse_str_ifp.cs │ │ │ ├── co7055gettypecode.cs │ │ │ ├── co8637parse_str_ifp.cs │ │ │ └── rsources │ │ ├── char │ │ │ ├── char_gettypecode.cs │ │ │ ├── char_iscontrol_str_i.cs │ │ │ ├── char_isdigit_str_i.cs │ │ │ ├── char_isletter_str_i.cs │ │ │ ├── char_isletterordigit_str_i.cs │ │ │ ├── char_islower_str_i.cs │ │ │ ├── char_isnumber_char.cs │ │ │ ├── char_isnumber_str_i.cs │ │ │ ├── char_ispunctuation_str_i.cs │ │ │ ├── char_isseparator_char.cs │ │ │ ├── char_isseparator_str_i.cs │ │ │ ├── char_issurrogate_char.cs │ │ │ ├── char_issurrogate_str_i.cs │ │ │ ├── char_issymbol_char.cs │ │ │ ├── char_issymbol_str_i.cs │ │ │ ├── char_isupper_str_i.cs │ │ │ ├── char_iswhitespace_str_i.cs │ │ │ ├── co4233gethashcode.cs │ │ │ ├── co4234equals.cs │ │ │ ├── co4235tostring.cs │ │ │ ├── co4236tostring.cs │ │ │ ├── co4237isdigit.cs │ │ │ ├── co4269isletter.cs │ │ │ ├── co4270iswhitespace.cs │ │ │ ├── co4271toupper.cs │ │ │ ├── co4272tolower.cs │ │ │ ├── co4273isupper.cs │ │ │ ├── co4274islower.cs │ │ │ ├── co4275ispunctuation.cs │ │ │ ├── co4276isisocontrol.cs │ │ │ ├── co5326compareto.cs │ │ │ ├── co5327parse.cs │ │ │ ├── co5714iconvertible_char.cs │ │ │ ├── co7054gettypecode.cs │ │ │ ├── co8002tolower_char_cultinfo.cs │ │ │ ├── co8003toupper_char_cultinfo.cs │ │ │ ├── co8854argumentchecking.cs │ │ │ ├── getnumericvalue_char.cs │ │ │ ├── getnumericvalue_str_i.cs │ │ │ ├── getunicodecategory_char.cs │ │ │ ├── getunicodecategory_str_i.cs │ │ │ └── rsources │ │ ├── charenumerator │ │ │ ├── co8563clone.cs │ │ │ ├── co8564get_current.cs │ │ │ ├── co8565movenext.cs │ │ │ ├── co8566reset.cs │ │ │ └── rsources │ │ ├── collections │ │ │ ├── arraylist │ │ │ │ ├── co1501add_stress.cs │ │ │ │ ├── co1703getenumerator.cs │ │ │ │ ├── co1719copyto_ai.cs │ │ │ │ ├── co1720contains_o.cs │ │ │ │ ├── co1722clear.cs │ │ │ │ ├── co1723remove_o.cs │ │ │ │ ├── co1724indexof_o.cs │ │ │ │ ├── co1730adapter_i.cs │ │ │ │ ├── co2192sort.cs │ │ │ │ ├── co2450ctor.cs │ │ │ │ ├── co2452ctor_int.cs │ │ │ │ ├── co2454ctor_collection.cs │ │ │ │ ├── co2458addrange_i.cs │ │ │ │ ├── co2460binarysearch_iioi.cs │ │ │ │ ├── co2462get_capacity.cs │ │ │ │ ├── co2464copyto_iaii.cs │ │ │ │ ├── co2466get_item.cs │ │ │ │ ├── co2468getenumerator_ii.cs │ │ │ │ ├── co2470indexof_oii.cs │ │ │ │ ├── co2472insert_io.cs │ │ │ │ ├── co2474insertrange_ii.cs │ │ │ │ ├── co2476lastindexof_oii.cs │ │ │ │ ├── co2478removeat_i.cs │ │ │ │ ├── co2480removerange.cs │ │ │ │ ├── co2482reverse.cs │ │ │ │ ├── co2484set_item.cs │ │ │ │ ├── co2486set_capacity.cs │ │ │ │ ├── co2488setrange.cs │ │ │ │ ├── co2490get_count.cs │ │ │ │ ├── co2494trimtosize.cs │ │ │ │ ├── co3905clone.cs │ │ │ │ ├── co3906copyto_a.cs │ │ │ │ ├── co3907fixedsize_il.cs │ │ │ │ ├── co3908fixedsize_al.cs │ │ │ │ ├── co3909get_isreadonly.cs │ │ │ │ ├── co3910readonly_al.cs │ │ │ │ ├── co3911readonly_il.cs │ │ │ │ ├── co3919synchronized_il.cs │ │ │ │ ├── co3920get_issynchronized.cs │ │ │ │ ├── co3928lastindexof_oi.cs │ │ │ │ ├── co3929lastindexof_o.cs │ │ │ │ ├── co3930indexof_oi.cs │ │ │ │ ├── co3931repeat_objint.cs │ │ │ │ ├── co3932reverse.cs │ │ │ │ ├── co3933sort_i.cs │ │ │ │ ├── co3934sort.cs │ │ │ │ ├── co3935toarray.cs │ │ │ │ ├── co3936toarray_tp.cs │ │ │ │ ├── co3966wrappertests.cs │ │ │ │ ├── co8597binarysearch_obj.cs │ │ │ │ ├── co8598binarysearch_obj_ic.cs │ │ │ │ ├── co8599get_isfixedsize.cs │ │ │ │ ├── co8600getrange_ii.cs │ │ │ │ └── rsources │ │ │ ├── bitarray │ │ │ │ ├── co1550and.cs │ │ │ │ ├── co1551or.cs │ │ │ │ ├── co1552xor.cs │ │ │ │ ├── co1553not.cs │ │ │ │ ├── co1554get_length.cs │ │ │ │ ├── co1555get.cs │ │ │ │ ├── co1556set.cs │ │ │ │ ├── co1557setall.cs │ │ │ │ ├── co1558set_length.cs │ │ │ │ ├── co3118ctor_int.cs │ │ │ │ ├── co3120ctor_int_bool.cs │ │ │ │ ├── co3122ctor_byte_array.cs │ │ │ │ ├── co3124ctor_intarray.cs │ │ │ │ ├── co3126ctor_bitarray.cs │ │ │ │ ├── co3969ctor_boolarray.cs │ │ │ │ ├── co3970get_count.cs │ │ │ │ ├── co3971get_isreadonly.cs │ │ │ │ ├── co3972get_issynchronized.cs │ │ │ │ ├── co3974get_item.cs │ │ │ │ ├── co3975set_item.cs │ │ │ │ ├── co3976getenumerator.cs │ │ │ │ ├── co8822clone.cs │ │ │ │ └── rsources │ │ │ ├── caseinsensitivecomparer │ │ │ │ ├── co8601ctor.cs │ │ │ │ ├── co8602ctor_ci.cs │ │ │ │ ├── co8603get_default.cs │ │ │ │ ├── co8604compare_oo.cs │ │ │ │ └── rsources │ │ │ ├── caseinsensitivehashcodeprovider │ │ │ │ ├── co3951ctor.cs │ │ │ │ ├── co3952gethashcode_obj.cs │ │ │ │ ├── co8605ctor_ci.cs │ │ │ │ ├── co8606getdefault.cs │ │ │ │ └── rsources │ │ │ ├── collectionbase │ │ │ │ ├── co3995allmethods.cs │ │ │ │ └── rsources │ │ │ ├── comparer │ │ │ │ ├── co1672compare_oo.cs │ │ │ │ └── rsources │ │ │ ├── dictionaryentry │ │ │ │ ├── co8607get_key.cs │ │ │ │ ├── co8608get_value.cs │ │ │ │ ├── co8610set_value.cs │ │ │ │ └── rsources │ │ │ ├── hashtable │ │ │ │ ├── co1657copyto_ai.cs │ │ │ │ ├── co1658ctor_df.cs │ │ │ │ ├── co1659ctor_ifii.cs │ │ │ │ ├── co1694remove_o.cs │ │ │ │ ├── co2350remove.cs │ │ │ │ ├── co3914get_isreadonly.cs │ │ │ │ ├── co3923get_issynchronized.cs │ │ │ │ ├── co3941ctor_intihpic.cs │ │ │ │ ├── co3942clone.cs │ │ │ │ ├── co3949getobjectdata_sersc.cs │ │ │ │ ├── co3950ondeserialization_objde.cs │ │ │ │ ├── co4307ctor.cs │ │ │ │ ├── co4308ctor_int.cs │ │ │ │ ├── co4309ctor_int_float.cs │ │ │ │ ├── co4310add_stress.cs │ │ │ │ ├── co4311ctor_dictionary.cs │ │ │ │ ├── co8611ctor_iii.cs │ │ │ │ ├── co8612ctor_isii.cs │ │ │ │ ├── co8613get_isfixedsize.cs │ │ │ │ └── rsources │ │ │ ├── queue │ │ │ │ ├── co1700ctor_int_float.cs │ │ │ │ ├── co1702dequeue.cs │ │ │ │ ├── co1704enqueue.cs │ │ │ │ ├── co1708get_count.cs │ │ │ │ ├── co1725allsigns_queue_copycat.cs │ │ │ │ ├── co3100ctor_int.cs │ │ │ │ ├── co3102ctor.cs │ │ │ │ ├── co3106peek.cs │ │ │ │ ├── co3110toarray.cs │ │ │ │ ├── co6078synchronized_queue.cs │ │ │ │ ├── co8614contains_o.cs │ │ │ │ ├── co8615clone.cs │ │ │ │ ├── co8823trimtosize.cs │ │ │ │ └── rsources │ │ │ ├── rdirs │ │ │ ├── readonlycollectionbase │ │ │ │ ├── co3997allmethods.cs │ │ │ │ └── rsources │ │ │ ├── sortedlist │ │ │ │ ├── co3718getvaluelist.cs │ │ │ │ ├── co3916get_isreadonly.cs │ │ │ │ ├── co3924synchronized.cs │ │ │ │ ├── co3925get_issynchronized.cs │ │ │ │ ├── co3953multimethods.cs │ │ │ │ ├── co3954clone.cs │ │ │ │ ├── co4321ctor_icomparer.cs │ │ │ │ ├── co4322ctor_icomparer_int.cs │ │ │ │ ├── co4323ctor.cs │ │ │ │ ├── co4324ctor_dictionary.cs │ │ │ │ ├── co4326containskey.cs │ │ │ │ ├── co4327containsvalue.cs │ │ │ │ ├── co4328getobject.cs │ │ │ │ ├── co4329clear.cs │ │ │ │ ├── co4330getbyindex_i.cs │ │ │ │ ├── co4331indexofkey.cs │ │ │ │ ├── co4332indexofvalue.cs │ │ │ │ ├── co4334get_count.cs │ │ │ │ ├── co4335get_keys.cs │ │ │ │ ├── co4336get_values.cs │ │ │ │ ├── co4338getenumerator.cs │ │ │ │ ├── co4339getkeylist.cs │ │ │ │ ├── co4340remove_object.cs │ │ │ │ ├── co4341removeat_int.cs │ │ │ │ ├── co4345trimtosize.cs │ │ │ │ ├── co4346ctor_dictionary_icomparer.cs │ │ │ │ ├── co4347setobject_object.cs │ │ │ │ ├── co4348getkey.cs │ │ │ │ ├── co8616get_capacity.cs │ │ │ │ ├── co8617set_capacity.cs │ │ │ │ ├── co8618get_isfixedsize.cs │ │ │ │ └── rsources │ │ │ ├── specialized │ │ │ │ ├── bitvector32 │ │ │ │ │ ├── co8662ctor.cs │ │ │ │ │ ├── co8663ctor_int.cs │ │ │ │ │ ├── co8664ctor_bitvector32.cs │ │ │ │ │ ├── co8665createmask.cs │ │ │ │ │ ├── co8666createmask_int.cs │ │ │ │ │ ├── co8667createsection_short.cs │ │ │ │ │ ├── co8668createsection_short_section.cs │ │ │ │ │ ├── co8669equals_obj.cs │ │ │ │ │ ├── co8670gethashcode.cs │ │ │ │ │ ├── co8671tostring.cs │ │ │ │ │ ├── co8672tostring_bv.cs │ │ │ │ │ ├── co8673get_data.cs │ │ │ │ │ ├── co8674get_item_section.cs │ │ │ │ │ ├── co8675get_item_int.cs │ │ │ │ │ ├── co8676set_item_section_int.cs │ │ │ │ │ ├── co8677set_item_int_bool.cs │ │ │ │ │ └── rsources │ │ │ │ ├── hybriddictionary │ │ │ │ │ ├── co8699ctor.cs │ │ │ │ │ ├── co8700ctor_bool.cs │ │ │ │ │ ├── co8701ctor_int.cs │ │ │ │ │ ├── co8702ctor_int_bool.cs │ │ │ │ │ ├── co8703add_obj_obj.cs │ │ │ │ │ ├── co8704clear.cs │ │ │ │ │ ├── co8705contains_obj.cs │ │ │ │ │ ├── co8709get_count.cs │ │ │ │ │ ├── co8710get_isfixedsize.cs │ │ │ │ │ ├── co8711get_isreadonly.cs │ │ │ │ │ ├── co8712get_issynchronized.cs │ │ │ │ │ ├── co8713get_item_obj.cs │ │ │ │ │ ├── co8714get_keys.cs │ │ │ │ │ ├── co8715get_syncroot.cs │ │ │ │ │ ├── co8716get_values.cs │ │ │ │ │ ├── co8717set_item_obj_obj.cs │ │ │ │ │ ├── co8773performance.cs │ │ │ │ │ └── rsources │ │ │ │ ├── listdictionary │ │ │ │ │ ├── co8682ctor.cs │ │ │ │ │ ├── co8683ctor_icomp.cs │ │ │ │ │ ├── co8684add_obj_obj.cs │ │ │ │ │ ├── co8685clear.cs │ │ │ │ │ ├── co8686contains_obj.cs │ │ │ │ │ ├── co8687copyto_array_int.cs │ │ │ │ │ ├── co8689remove_obj.cs │ │ │ │ │ ├── co8690get_count.cs │ │ │ │ │ ├── co8691get_isfixedsize.cs │ │ │ │ │ ├── co8692get_isreadonly.cs │ │ │ │ │ ├── co8693get_issynchronized.cs │ │ │ │ │ ├── co8694get_item_obj.cs │ │ │ │ │ ├── co8695set_item_obj_obj.cs │ │ │ │ │ ├── co8696get_keys.cs │ │ │ │ │ ├── co8698get_values.cs │ │ │ │ │ ├── co8772performance.cs │ │ │ │ │ └── rsources │ │ │ │ ├── namevaluecollection │ │ │ │ │ ├── co8718ctor.cs │ │ │ │ │ ├── co8719ctor_nvc.cs │ │ │ │ │ ├── co8720ctor_int.cs │ │ │ │ │ ├── co8721ctor_int_nvc.cs │ │ │ │ │ ├── co8722add_str_str.cs │ │ │ │ │ ├── co8723clear.cs │ │ │ │ │ ├── co8724copyto_array_int.cs │ │ │ │ │ ├── co8725get_int.cs │ │ │ │ │ ├── co8726get_str.cs │ │ │ │ │ ├── co8727getkey_int.cs │ │ │ │ │ ├── co8728getvalues_int.cs │ │ │ │ │ ├── co8729getvalues_str.cs │ │ │ │ │ ├── co8730haskeys.cs │ │ │ │ │ ├── co8731remove_str.cs │ │ │ │ │ ├── co8732set_str_str.cs │ │ │ │ │ ├── co8733get_allkeys.cs │ │ │ │ │ ├── co8734get_item_int.cs │ │ │ │ │ ├── co8735get_item_str.cs │ │ │ │ │ ├── co8736set_item_str_str.cs │ │ │ │ │ ├── co8774ctor_ihcp_ic.cs │ │ │ │ │ ├── co8775ctor_int_ihcp_ic.cs │ │ │ │ │ ├── co8776add_nvc.cs │ │ │ │ │ └── rsources │ │ │ │ ├── rdirs │ │ │ │ ├── stringcollection │ │ │ │ │ ├── co8737ctor.cs │ │ │ │ │ ├── co8738add_str.cs │ │ │ │ │ ├── co8739addrange_stra.cs │ │ │ │ │ ├── co8740clear.cs │ │ │ │ │ ├── co8741contains_str.cs │ │ │ │ │ ├── co8742copyto_stra_int.cs │ │ │ │ │ ├── co8743getenumerator.cs │ │ │ │ │ ├── co8744indexof_str.cs │ │ │ │ │ ├── co8745insert_int_str.cs │ │ │ │ │ ├── co8746remove_str.cs │ │ │ │ │ ├── co8747removeat_int.cs │ │ │ │ │ ├── co8748get_count.cs │ │ │ │ │ ├── co8749get_isreadonly.cs │ │ │ │ │ ├── co8750get_issynchronized.cs │ │ │ │ │ ├── co8751get_item.cs │ │ │ │ │ ├── co8753set_item.cs │ │ │ │ │ └── rsources │ │ │ │ ├── stringdictionary │ │ │ │ │ ├── co8754ctor.cs │ │ │ │ │ ├── co8755add_str_str.cs │ │ │ │ │ ├── co8756clear.cs │ │ │ │ │ ├── co8757containskey_str.cs │ │ │ │ │ ├── co8758containsvalue_str.cs │ │ │ │ │ ├── co8759copyto_array_int.cs │ │ │ │ │ ├── co8760getenumerator.cs │ │ │ │ │ ├── co8761remove_str.cs │ │ │ │ │ ├── co8762get_count.cs │ │ │ │ │ ├── co8763get_issynchronized.cs │ │ │ │ │ ├── co8764get_item_str.cs │ │ │ │ │ ├── co8765get_keys.cs │ │ │ │ │ ├── co8767get_values.cs │ │ │ │ │ ├── co8768set_item_str_str.cs │ │ │ │ │ └── rsources │ │ │ │ └── stringenumerator │ │ │ │ │ ├── co8769movenext.cs │ │ │ │ │ ├── co8770reset.cs │ │ │ │ │ ├── co8771get_current.cs │ │ │ │ │ └── rsources │ │ │ └── stack │ │ │ │ ├── co1726allsigns_stack_copycat.cs │ │ │ │ ├── co3955toarray.cs │ │ │ │ ├── co8619clone.cs │ │ │ │ ├── co8620contains_obj.cs │ │ │ │ └── rsources │ │ ├── convert │ │ │ ├── co1565tobyte_allsigns.cs │ │ │ ├── co6053toboolean_all.cs │ │ │ ├── co6054tobyte_all.cs │ │ │ ├── co6055tochar_all.cs │ │ │ ├── co6057todatetime_all.cs │ │ │ ├── co6058todecimal_all.cs │ │ │ ├── co6059todouble_all.cs │ │ │ ├── co6060toint16_all.cs │ │ │ ├── co6061toint32_all.cs │ │ │ ├── co6062toint64_all.cs │ │ │ ├── co6064tosbyte_all.cs │ │ │ ├── co6065tosingle_all.cs │ │ │ ├── co6067touint16_all.cs │ │ │ ├── co6068touint32_all.cs │ │ │ ├── co6069touint64_all.cs │ │ │ ├── co7063isdbnull.cs │ │ │ ├── co7064gettypecode.cs │ │ │ ├── co8638changetype_all.cs │ │ │ ├── co8639frombase64chararray_charr_ii.cs │ │ │ ├── co8640frombase64string_str.cs │ │ │ ├── co8641tobase64chararray_btarr_ii_charr_i.cs │ │ │ ├── co8642tobase64string_all.cs │ │ │ ├── co8826boxedobjectcheck.cs │ │ │ └── rsources │ │ ├── datetime │ │ │ ├── bug.cs │ │ │ ├── co1500get_dayofweek.cs │ │ │ ├── co1504get_dayofyear.cs │ │ │ ├── co1507get_day.cs │ │ │ ├── co1509get_date.cs │ │ │ ├── co1511get_hour.cs │ │ │ ├── co1512addminutes.cs │ │ │ ├── co1513addmonths.cs │ │ │ ├── co1514addhours.cs │ │ │ ├── co1515addseconds.cs │ │ │ ├── co1516addmilliseconds.cs │ │ │ ├── co1517addyears.cs │ │ │ ├── co1518addticks.cs │ │ │ ├── co1519ctor_iiiiii.cs │ │ │ ├── co1520touniversaltime.cs │ │ │ ├── co1521tolongdatestring.cs │ │ │ ├── co1522get_now.cs │ │ │ ├── co1523get_minute.cs │ │ │ ├── co1524get_month.cs │ │ │ ├── co1525get_second.cs │ │ │ ├── co1526get_year.cs │ │ │ ├── co1527get_millisecond.cs │ │ │ ├── co3582adddays.cs │ │ │ ├── co3671ctor_iii.cs │ │ │ ├── co3673ctor_long.cs │ │ │ ├── co3867op_comparisonoperators.cs │ │ │ ├── co5030get_timeofday.cs │ │ │ ├── co5031get_today.cs │ │ │ ├── co5051add.cs │ │ │ ├── co5052tostring.cs │ │ │ ├── co5053isleapyear.cs │ │ │ ├── co5054equals_dt_dt.cs │ │ │ ├── co5055equals.cs │ │ │ ├── co5056compareto.cs │ │ │ ├── co5057compare.cs │ │ │ ├── co5058daysinmonth.cs │ │ │ ├── co5059get_ticks.cs │ │ │ ├── co5060gethashcode.cs │ │ │ ├── co5061subtract_ts.cs │ │ │ ├── co5062subtract_dt.cs │ │ │ ├── co5063toshorttimestring.cs │ │ │ ├── co5064toshortdatestring.cs │ │ │ ├── co5065tolongtimestring.cs │ │ │ ├── co5066tolocaltime.cs │ │ │ ├── co5067fromoadate.cs │ │ │ ├── co5068tooadate.cs │ │ │ ├── co5069fromfiletime.cs │ │ │ ├── co5070tofiletime.cs │ │ │ ├── co5303parse_str.cs │ │ │ ├── co5306tostring_static.cs │ │ │ ├── co5330tostring_str_ifp.cs │ │ │ ├── co5381ctor_iiiiiid.cs │ │ │ ├── co5506parseexact_str_str_dtfi.cs │ │ │ ├── co5715iconvertible_datetime.cs │ │ │ ├── co6008fromstring.cs │ │ │ ├── co7053gettypecode.cs │ │ │ ├── co7056getdatetimeformats.cs │ │ │ ├── co7057getdatetimeformats_char.cs │ │ │ ├── co7058getdatetimeformats_iserviceobjectprovider.cs │ │ │ ├── co7059getdatetimeformats_char_isp.cs │ │ │ ├── co7060ctor_iii_calendar.cs │ │ │ ├── co7061ctor_iiiiiii_calendar.cs │ │ │ ├── co7062ctor_iiiiii_calendar.cs │ │ │ ├── co8567get_utcnow.cs │ │ │ ├── co8569parseexact_str_stra_ifp_dts.cs │ │ │ ├── co8570parse_ifp.cs │ │ │ ├── co8571parse_ifp_dts.cs │ │ │ ├── co8572tostring_ifp.cs │ │ │ └── rsources │ │ ├── dbnull │ │ │ ├── co7018tostring.cs │ │ │ ├── co7019touint64.cs │ │ │ ├── co7020touint32.cs │ │ │ ├── co7021touint16.cs │ │ │ ├── co7022totype_type.cs │ │ │ ├── co7023tosingle.cs │ │ │ ├── co7024tosbyte.cs │ │ │ ├── co7025toint64.cs │ │ │ ├── co7026toint32.cs │ │ │ ├── co7027toint16.cs │ │ │ ├── co7028todouble.cs │ │ │ ├── co7029todecimal.cs │ │ │ ├── co7030todatetime.cs │ │ │ ├── co7031tochar.cs │ │ │ ├── co7032tobyte.cs │ │ │ ├── co7033toboolean.cs │ │ │ ├── co7035gettypecode.cs │ │ │ ├── co7036equals_object.cs │ │ │ └── rsources │ │ ├── decimal │ │ │ ├── co3542add.cs │ │ │ ├── co3543op_addition.cs │ │ │ ├── co3545ctor_float.cs │ │ │ ├── co3546ctor_int.cs │ │ │ ├── co3547ctor_long.cs │ │ │ ├── co3550ctor_intarr.cs │ │ │ ├── co3552compare.cs │ │ │ ├── co3554divide.cs │ │ │ ├── co3555op_division.cs │ │ │ ├── co3556op_unaryplus.cs │ │ │ ├── co3557op_increment.cs │ │ │ ├── co3558gethashcode.cs │ │ │ ├── co3559equals_obj.cs │ │ │ ├── co3560equals_decdec.cs │ │ │ ├── co3561op_equality.cs │ │ │ ├── co3562getbits.cs │ │ │ ├── co3565multiply.cs │ │ │ ├── co3566op_multiply.cs │ │ │ ├── co3567negate.cs │ │ │ ├── co3568op_unarynegation.cs │ │ │ ├── co3569parse.cs │ │ │ ├── co3570round.cs │ │ │ ├── co3571subtract.cs │ │ │ ├── co3572op_subtraction.cs │ │ │ ├── co3573op_decrement.cs │ │ │ ├── co3574truncate.cs │ │ │ ├── co3575toint32.cs │ │ │ ├── co3576op_explicit_returns_int.cs │ │ │ ├── co3577toint64.cs │ │ │ ├── co3578op_explicit_returns_long.cs │ │ │ ├── co3579tobyte.cs │ │ │ ├── co3624toint16.cs │ │ │ ├── co3674ctor_double.cs │ │ │ ├── co3680todouble.cs │ │ │ ├── co3681tosbyte.cs │ │ │ ├── co3682tosingle.cs │ │ │ ├── co3683tostring.cs │ │ │ ├── co3684tostring_str.cs │ │ │ ├── co3685tostring_str.cs │ │ │ ├── co3686tostring_str_ifp.cs │ │ │ ├── co3687format_str_iformatprovider.cs │ │ │ ├── co3688parse_int.cs │ │ │ ├── co3689parse_int_nfi.cs │ │ │ ├── co3866op_greaterthan_etall.cs │ │ │ ├── co5314touint32.cs │ │ │ ├── co5315touint16.cs │ │ │ ├── co5316touint64.cs │ │ │ ├── co5384floor.cs │ │ │ ├── co5385ctor_uint.cs │ │ │ ├── co5386ctor_ulong.cs │ │ │ ├── co5387compareto.cs │ │ │ ├── co5470remainder_dec_dec.cs │ │ │ ├── co5716iconvertible_decimal.cs │ │ │ ├── co7052gettypecode.cs │ │ │ ├── co7084ctor_int32_int32_int32_boolean_byte.cs │ │ │ ├── co8574parse_str_ifp.cs │ │ │ └── rsources │ │ ├── delegate │ │ │ ├── co1162invoke.cs │ │ │ ├── co1901clone.cs │ │ │ ├── co3152getmethod.cs │ │ │ ├── co3154gettarget.cs │ │ │ ├── co3156getinvocationlist.cs │ │ │ ├── co3158combine.cs │ │ │ ├── co3160combine.cs │ │ │ ├── co3164dynamicinvoke.cs │ │ │ ├── co3871op_comparisonoperators.cs │ │ │ └── rsources │ │ ├── double │ │ │ ├── co1645parse.cs │ │ │ ├── co3448isinfinity.cs │ │ │ ├── co3449isnegativeinfinity.cs │ │ │ ├── co3452ispositiveinfinity.cs │ │ │ ├── co3453isnan.cs │ │ │ ├── co4262ctor.cs │ │ │ ├── co4264gethashcode.cs │ │ │ ├── co4265equals.cs │ │ │ ├── co4267tostring.cs │ │ │ ├── co5003compareto.cs │ │ │ ├── co5004tostring.cs │ │ │ ├── co5012tostring_str.cs │ │ │ ├── co5014tostring_str_ifp.cs │ │ │ ├── co5019parse_int.cs │ │ │ ├── co5024parse_int_nfi.cs │ │ │ ├── co5105ctor.cs │ │ │ ├── co5119format_str_ifp.cs │ │ │ ├── co5717iconvertible_double.cs │ │ │ ├── co6002parse_str_ifp.cs │ │ │ ├── co7051gettypecode.cs │ │ │ ├── co8824tryparse_str_ns_if_dbl.cs │ │ │ └── rsources │ │ ├── enum │ │ │ ├── co3876getunderlyingtype_tp.cs │ │ │ ├── co3877isdefined_tp_o.cs │ │ │ ├── co3878getvalues_tp.cs │ │ │ ├── co3879parse_tp_str.cs │ │ │ ├── co3880format.cs │ │ │ ├── co3881compareto_o.cs │ │ │ ├── co3898iconvertible_all.cs │ │ │ ├── co3899toobject_all.cs │ │ │ ├── co3900format_tpobjstr.cs │ │ │ ├── co3901tostring_strifp.cs │ │ │ ├── co3962parse_tpstrbln.cs │ │ │ ├── co8504equals_obj.cs │ │ │ ├── co8505gethashcode.cs │ │ │ ├── co8506getname_typeobj.cs │ │ │ ├── co8507getnames_type.cs │ │ │ ├── co8508tostring_ifp.cs │ │ │ ├── co8509tostring.cs │ │ │ ├── co8510tostring_str.cs │ │ │ ├── co8511gettypecode.cs │ │ │ ├── co8825iconvertible.cs │ │ │ └── rsources │ │ ├── environment │ │ │ ├── co1051getenvironmentvariable.cs │ │ │ ├── co1480get_tickcount.cs │ │ │ ├── co5324set_exitcode.cs │ │ │ ├── co5325get_exitcode.cs │ │ │ ├── co5483getenvironmentvariables.cs │ │ │ ├── co5521set_currentdirectory_dir.cs │ │ │ ├── co5522get_currentdirectory.cs │ │ │ ├── co7010get_newline.cs │ │ │ ├── co7012get_version.cs │ │ │ ├── co7013get_workingset.cs │ │ │ ├── co7014get_systemdirectory.cs │ │ │ ├── co7015get_stacktrace.cs │ │ │ ├── co7016getlogicaldrives.cs │ │ │ ├── co8518getcommandlineargs.cs │ │ │ └── rsources │ │ ├── eventargs │ │ │ ├── co5429ctor.cs │ │ │ └── rsources │ │ ├── exception │ │ │ ├── co1367catch_block.cs │ │ │ ├── co1369finally_block.cs │ │ │ ├── co2206get_message.cs │ │ │ ├── co2208get_stacktrace.cs │ │ │ ├── co2212tostring.cs │ │ │ ├── co3265ctor.cs │ │ │ ├── co3266ctor_str.cs │ │ │ ├── co5220get_source.cs │ │ │ ├── co5221get_targetsite.cs │ │ │ ├── co7085set_source.cs │ │ │ └── rsources │ │ ├── guid │ │ │ ├── co1183equals_dupl2.cs │ │ │ ├── co1184ctor_default_dupl2.cs │ │ │ ├── co1186ctor_string.cs │ │ │ ├── co1187tostring_dupl2.cs │ │ │ ├── co1188gethashcode_dupl2.cs │ │ │ ├── co1189ctor_4221arr.cs │ │ │ ├── co3870op_comparisonoperators.cs │ │ │ ├── co5321ctor_bytarr.cs │ │ │ ├── co5322tobytearray.cs │ │ │ ├── co5323ctor_issuuuuuuuu.cs │ │ │ ├── co7074ctor_uint32_uint16_uint16_uint16_bbbbbbbb.cs │ │ │ ├── co8521compareto_obj.cs │ │ │ ├── co8575newguid.cs │ │ │ ├── co8576tostring_str.cs │ │ │ ├── co8577tostring_str_ifp.cs │ │ │ └── rsources │ │ ├── int16 │ │ │ ├── co1622cons_eq_gv_ghc.cs │ │ │ ├── co5000compareto.cs │ │ │ ├── co5001parse.cs │ │ │ ├── co5006tostring_str.cs │ │ │ ├── co5007tostring_str_ifp.cs │ │ │ ├── co5016parse_int.cs │ │ │ ├── co5021parse_int_nfi.cs │ │ │ ├── co5106ctor.cs │ │ │ ├── co5120format_str_ifp.cs │ │ │ ├── co5718iconvertible_int16.cs │ │ │ ├── co6003fromstring.cs │ │ │ ├── co7050gettypecode.cs │ │ │ ├── co8578tostring_ifp.cs │ │ │ ├── co8579parse_str_ifp.cs │ │ │ └── rsources │ │ ├── int32 │ │ │ ├── co1115parse.cs │ │ │ ├── co1117compareto.cs │ │ │ ├── co1612cons_eq_gv_ghc.cs │ │ │ ├── co1613tostring_int_static_dupl2.cs │ │ │ ├── co5008tostring_str.cs │ │ │ ├── co5009tostring_str_ifp.cs │ │ │ ├── co5017parse_int.cs │ │ │ ├── co5022parse_int_nfi.cs │ │ │ ├── co5107ctor.cs │ │ │ ├── co5121format_str_ifp.cs │ │ │ ├── co5719iconvertible_int32.cs │ │ │ ├── co6004fromstring.cs │ │ │ ├── co7049gettypecode.cs │ │ │ ├── co8580tostring_ifp.cs │ │ │ ├── co8581parse_str_ifp.cs │ │ │ └── rsources │ │ ├── int64 │ │ │ ├── co1118compareto.cs │ │ │ ├── co1632cons_eq_gv_ghc.cs │ │ │ ├── co5002parse.cs │ │ │ ├── co5010tostring_str.cs │ │ │ ├── co5011tostring_str_ifp.cs │ │ │ ├── co5018parse_int.cs │ │ │ ├── co5023parse_int_nfi.cs │ │ │ ├── co5108ctor.cs │ │ │ ├── co5122format_str_ifp.cs │ │ │ ├── co5720iconvertible_int64.cs │ │ │ ├── co6005fromstring.cs │ │ │ ├── co7048gettypecode.cs │ │ │ ├── co8582tostring_ifp.cs │ │ │ ├── co8583parse_str_ifp.cs │ │ │ └── rsources │ │ ├── intptr │ │ │ ├── co8522ctor_int.cs │ │ │ ├── co8523ctor_long.cs │ │ │ ├── co8524ctor_void.cs │ │ │ ├── co8525equals_obj.cs │ │ │ ├── co8526get_size.cs │ │ │ ├── co8527gethashcode.cs │ │ │ ├── co8528operator_multi.cs │ │ │ ├── co8529toint32.cs │ │ │ ├── co8530toint64.cs │ │ │ ├── co8531topointer.cs │ │ │ ├── co8532tostring.cs │ │ │ └── rsources │ │ ├── io │ │ │ ├── binaryreader │ │ │ │ ├── co5631ctor_stream.cs │ │ │ │ ├── co5632ctor_stream_enc.cs │ │ │ │ ├── co5633close.cs │ │ │ │ ├── co5634get_basestream.cs │ │ │ │ ├── co5635peekchar.cs │ │ │ │ ├── co5636read.cs │ │ │ │ ├── co5637read_charr_ii.cs │ │ │ │ ├── co5638readchar.cs │ │ │ │ ├── co5639readchars.cs │ │ │ │ ├── co5640readbytes.cs │ │ │ │ ├── co5641readboolean.cs │ │ │ │ ├── co5642readdouble.cs │ │ │ │ ├── co5643readint16.cs │ │ │ │ ├── co5644readint32.cs │ │ │ │ ├── co5645readint64.cs │ │ │ │ ├── co5646readsingle.cs │ │ │ │ ├── co5647readuint16.cs │ │ │ │ ├── co5648readuint32.cs │ │ │ │ ├── co5649readuint64.cs │ │ │ │ ├── co5650readsbyte.cs │ │ │ │ ├── co5651readstring.cs │ │ │ │ ├── co5653readbyte.cs │ │ │ │ ├── co5654read_barr_ii.cs │ │ │ │ ├── co9300readdecimal.cs │ │ │ │ └── rsources │ │ │ ├── binarywriter │ │ │ │ ├── co5536ctor_str.cs │ │ │ │ ├── co5537write_bool.cs │ │ │ │ ├── co5538write_char.cs │ │ │ │ ├── co5539write_dbl.cs │ │ │ │ ├── co5540write_i16.cs │ │ │ │ ├── co5541write_i32.cs │ │ │ │ ├── co5542write_i64.cs │ │ │ │ ├── co5543write_sgl.cs │ │ │ │ ├── co5544write_ui16.cs │ │ │ │ ├── co5545write_ui32.cs │ │ │ │ ├── co5546write_ui64.cs │ │ │ │ ├── co5547write_sbyt.cs │ │ │ │ ├── co5548write_byt.cs │ │ │ │ ├── co5549write_str.cs │ │ │ │ ├── co5550writestring_str.cs │ │ │ │ ├── co5552write_barr.cs │ │ │ │ ├── co5553write_carr.cs │ │ │ │ ├── co5554write_carr_ii.cs │ │ │ │ ├── co5561seek_i_so.cs │ │ │ │ ├── co5738get_basestream.cs │ │ │ │ ├── co5739flush.cs │ │ │ │ ├── co5740ctor_stream_enc.cs │ │ │ │ ├── co5741close.cs │ │ │ │ ├── co5742write_barr_ii.cs │ │ │ │ ├── co9301write_dcml.cs │ │ │ │ └── rsources │ │ │ ├── bufferedstream │ │ │ │ ├── co5602ctor_stream.cs │ │ │ │ ├── co5603ctor_stream_i.cs │ │ │ │ ├── co5604close.cs │ │ │ │ ├── co5605flush.cs │ │ │ │ ├── co5606get_canread.cs │ │ │ │ ├── co5607get_canwrite.cs │ │ │ │ ├── co5608get_canseek.cs │ │ │ │ ├── co5609setlength.cs │ │ │ │ ├── co5610get_length.cs │ │ │ │ ├── co5611set_position.cs │ │ │ │ ├── co5612get_position.cs │ │ │ │ ├── co5614seek_i64_so.cs │ │ │ │ ├── co5615write_barr_i_i.cs │ │ │ │ ├── co5616read_barr_i_i.cs │ │ │ │ ├── co5743writebyte.cs │ │ │ │ ├── co5744readbyte.cs │ │ │ │ └── rsources │ │ │ ├── directory │ │ │ │ ├── co5512getlogicaldrives.cs │ │ │ │ ├── co5513createdirectory_str.cs │ │ │ │ ├── co5656get_isdirectory.cs │ │ │ │ ├── co5657get_isfile.cs │ │ │ │ ├── co5658exists_str.cs │ │ │ │ ├── co5663delete_str_bool.cs │ │ │ │ ├── co5664delete_str.cs │ │ │ │ ├── co5669getdirectoryroot_str.cs │ │ │ │ ├── co5670getdirectories_str.cs │ │ │ │ ├── co5671getfiles_str.cs │ │ │ │ ├── co5672getfiles_str_str.cs │ │ │ │ ├── co5674getdirectories_str_str.cs │ │ │ │ ├── co5736setcurrentdirectory_dir.cs │ │ │ │ ├── co5737getcurrentdirectory.cs │ │ │ │ ├── co5751getparent_str.cs │ │ │ │ ├── co5759move_str_str.cs │ │ │ │ ├── co9025getcreationtime_str.cs │ │ │ │ ├── co9026setcreationtime_str_dt.cs │ │ │ │ ├── co9027getlastaccesstime_str.cs │ │ │ │ ├── co9028setlastaccesstime_str_dt.cs │ │ │ │ ├── co9029getlastwritetime_str.cs │ │ │ │ ├── co9030setlastwritetime_str_dt.cs │ │ │ │ ├── co9034getfilesystementries_str_str.cs │ │ │ │ ├── co9035getfilesystementries_str.cs │ │ │ │ └── rsources │ │ │ ├── directoryinfo │ │ │ │ ├── co5510ctor_str.cs │ │ │ │ ├── co5511get_fullname.cs │ │ │ │ ├── co5516createsubdirectory_str.cs │ │ │ │ ├── co5517delete.cs │ │ │ │ ├── co5518get_creationtime.cs │ │ │ │ ├── co5519set_attributes.cs │ │ │ │ ├── co5520get_attributes.cs │ │ │ │ ├── co5523tostring.cs │ │ │ │ ├── co5525moveto_str.cs │ │ │ │ ├── co5659exists.cs │ │ │ │ ├── co5660get_name.cs │ │ │ │ ├── co5662delete_bool.cs │ │ │ │ ├── co5665get_parent.cs │ │ │ │ ├── co5666get_root.cs │ │ │ │ ├── co5667getdirectories.cs │ │ │ │ ├── co5668getfiles.cs │ │ │ │ ├── co5673getfiles_str.cs │ │ │ │ ├── co5675getdirectories_str.cs │ │ │ │ ├── co5676getfilesysteminfos.cs │ │ │ │ ├── co5677getfilesysteminfos_str.cs │ │ │ │ ├── co5748get_lastaccesstime.cs │ │ │ │ ├── co5749get_lastwritetime.cs │ │ │ │ ├── co5767refresh.cs │ │ │ │ ├── co9031setlastaccesstime_dt.cs │ │ │ │ ├── co9032setcreationtime_dt.cs │ │ │ │ ├── co9033setlastwritetime_dt.cs │ │ │ │ ├── co9040create.cs │ │ │ │ ├── co9041extension.cs │ │ │ │ └── rsources │ │ │ ├── file │ │ │ │ ├── co5586copy_str_str_b.cs │ │ │ │ ├── co5587copy_str_str.cs │ │ │ │ ├── co5589create_str_i.cs │ │ │ │ ├── co5683exists_str.cs │ │ │ │ ├── co5686appendtext_str.cs │ │ │ │ ├── co5687changeextension_str_str.cs │ │ │ │ ├── co5688createtext_str.cs │ │ │ │ ├── co5690delete_str.cs │ │ │ │ ├── co5692opentext_str.cs │ │ │ │ ├── co5710move_str_str.cs │ │ │ │ ├── co5754openread_str.cs │ │ │ │ ├── co5755openwrite_str.cs │ │ │ │ ├── co9001getattributes_str.cs │ │ │ │ ├── co9002setattributes_str_attrs.cs │ │ │ │ ├── co9003getcreationtime_str.cs │ │ │ │ ├── co9004setcreationtime_str_dt.cs │ │ │ │ ├── co9005getlastaccesstime_str.cs │ │ │ │ ├── co9006setlastaccesstime_str_dt.cs │ │ │ │ ├── co9007getlastwritetime_str.cs │ │ │ │ ├── co9008setlastwritetime_str_dt.cs │ │ │ │ ├── co9009open_str_fm.cs │ │ │ │ ├── co9010open_str_fm_fa.cs │ │ │ │ ├── co9011open_str_fm_fa_fs.cs │ │ │ │ └── rsources │ │ │ ├── fileinfo │ │ │ │ ├── co5530ctor_str.cs │ │ │ │ ├── co5531copyto_str.cs │ │ │ │ ├── co5585copyto_str_b.cs │ │ │ │ ├── co5588create_str.cs │ │ │ │ ├── co5682delete.cs │ │ │ │ ├── co5685appendtext.cs │ │ │ │ ├── co5689createtext.cs │ │ │ │ ├── co5691opentext.cs │ │ │ │ ├── co5693open_fm.cs │ │ │ │ ├── co5694get_name.cs │ │ │ │ ├── co5697get_directoryname.cs │ │ │ │ ├── co5698get_directory.cs │ │ │ │ ├── co5699get_length.cs │ │ │ │ ├── co5700set_attributes.cs │ │ │ │ ├── co5701get_attributes.cs │ │ │ │ ├── co5703get_creationtime.cs │ │ │ │ ├── co5704get_lastaccesstime.cs │ │ │ │ ├── co5705get_lastwritetime.cs │ │ │ │ ├── co5706tostring.cs │ │ │ │ ├── co5708open_fm_fa.cs │ │ │ │ ├── co5709open_fm_fa_fs.cs │ │ │ │ ├── co5711moveto_str.cs │ │ │ │ ├── co5752openread.cs │ │ │ │ ├── co5753openwrite.cs │ │ │ │ ├── co5768refresh.cs │ │ │ │ ├── co9012create.cs │ │ │ │ ├── co9013set_creationtime_dt.cs │ │ │ │ ├── co9014exists.cs │ │ │ │ ├── co9015extension.cs │ │ │ │ ├── co9016fullname.cs │ │ │ │ └── rsources │ │ │ ├── filestream │ │ │ │ ├── co5535ctor_i_fa.cs │ │ │ │ ├── co5575ctor_str_fm.cs │ │ │ │ ├── co5576set_position.cs │ │ │ │ ├── co5577get_position.cs │ │ │ │ ├── co5578setlength_i64.cs │ │ │ │ ├── co5579get_canread.cs │ │ │ │ ├── co5580get_canwrite.cs │ │ │ │ ├── co5581get_length.cs │ │ │ │ ├── co5715write_barr_i_i.cs │ │ │ │ ├── co5716read_barr_i_i.cs │ │ │ │ ├── co5718close.cs │ │ │ │ ├── co5719get_canseek.cs │ │ │ │ ├── co5721readbyte.cs │ │ │ │ ├── co5722seek_i64_so.cs │ │ │ │ ├── co5723flush.cs │ │ │ │ ├── co5724ctor_str_fm_fa.cs │ │ │ │ ├── co5725ctor_str_fm_fa_fs.cs │ │ │ │ ├── co5726ctor_str_fm_fa_fs_i.cs │ │ │ │ ├── co5728endwrite.cs │ │ │ │ ├── co5745writebyte.cs │ │ │ │ ├── co5760ctor_i_fa_b.cs │ │ │ │ ├── co5761ctor_i_fa_b_i.cs │ │ │ │ ├── co5762ctor_i_fa_b_i_b.cs │ │ │ │ ├── filestream01.cs │ │ │ │ ├── filestream_lock.cs │ │ │ │ ├── filestream_unlock.cs │ │ │ │ └── rsources │ │ │ ├── memorystream │ │ │ │ ├── co1801ctor.cs │ │ │ │ ├── co1802ctor_b.cs │ │ │ │ ├── co1803ctor_bb.cs │ │ │ │ ├── co1804ctor_bii.cs │ │ │ │ ├── co1805ctor_biib.cs │ │ │ │ ├── co1806ctor_biibb.cs │ │ │ │ ├── co1807ctor_i.cs │ │ │ │ ├── co1808flush.cs │ │ │ │ ├── co1809get_canread.cs │ │ │ │ ├── co1810get_canseek.cs │ │ │ │ ├── co1811get_canwrite.cs │ │ │ │ ├── co1812close.cs │ │ │ │ ├── co1814get_position.cs │ │ │ │ ├── co1815set_position.cs │ │ │ │ ├── co1816getbuffer.cs │ │ │ │ ├── co1821write_bii.cs │ │ │ │ ├── co5731get_length.cs │ │ │ │ ├── co5732read_barr_i_i.cs │ │ │ │ ├── co5734seek_i64_so.cs │ │ │ │ ├── co5735setlength_i64.cs │ │ │ │ ├── co5746writebyte.cs │ │ │ │ ├── co5757set_capacity.cs │ │ │ │ ├── co5758get_capacity.cs │ │ │ │ ├── co5765toarray.cs │ │ │ │ ├── co5766writeto_strm.cs │ │ │ │ ├── memorystream01.cs │ │ │ │ ├── memorystream02.cs │ │ │ │ └── rsources │ │ │ ├── path │ │ │ │ ├── co5702hasextension_str.cs │ │ │ │ ├── co9050changeextension_str_str.cs │ │ │ │ ├── co9051combine_str_str.cs │ │ │ │ ├── co9052getdirectoryname_str.cs │ │ │ │ ├── co9053getextension_str.cs │ │ │ │ ├── co9054getfilename_str.cs │ │ │ │ ├── co9055getfilenwextension_str.cs │ │ │ │ ├── co9056getfullpath_str.cs │ │ │ │ ├── co9057getpathroot_str.cs │ │ │ │ ├── co9058gettempfilename.cs │ │ │ │ ├── co9059gettemppath.cs │ │ │ │ ├── co9061ispathrooted_str.cs │ │ │ │ ├── co9062altdirectoryseparatorchar.cs │ │ │ │ ├── co9063directoryseparatorchar.cs │ │ │ │ ├── co9064invalidpathchars.cs │ │ │ │ ├── co9065pathseparator.cs │ │ │ │ ├── co9066volumeseparatorchar.cs │ │ │ │ └── rsources │ │ │ ├── rdirs │ │ │ ├── stream │ │ │ │ ├── co3965streammethods.cs │ │ │ │ └── rsources │ │ │ ├── streamreader │ │ │ │ ├── co5617ctor_stream.cs │ │ │ │ ├── co5618ctor_stream_enc.cs │ │ │ │ ├── co5619ctor_stream_enc_b_i.cs │ │ │ │ ├── co5620ctor_str.cs │ │ │ │ ├── co5621ctor_str_enc.cs │ │ │ │ ├── co5622ctor_str_enc_b_i.cs │ │ │ │ ├── co5623close.cs │ │ │ │ ├── co5624get_basestream.cs │ │ │ │ ├── co5625getencoding.cs │ │ │ │ ├── co5626read.cs │ │ │ │ ├── co5627peek.cs │ │ │ │ ├── co5628read_charr_ii.cs │ │ │ │ ├── co5629readtoend.cs │ │ │ │ ├── co5630readline.cs │ │ │ │ ├── co9302ctor_stream_b.cs │ │ │ │ ├── co9303ctor_stream_enc_b.cs │ │ │ │ ├── co9304ctor_str_b.cs │ │ │ │ ├── co9305ctor_str_enc_b.cs │ │ │ │ ├── rsources │ │ │ │ ├── streamread.cs │ │ │ │ └── webhightrust.config │ │ │ ├── streamwriter │ │ │ │ ├── co5560ctor_str.cs │ │ │ │ ├── co5563write_ch.cs │ │ │ │ ├── co5564write_charr_ii.cs │ │ │ │ ├── co5565write_str.cs │ │ │ │ ├── co5591set_autoflush.cs │ │ │ │ ├── co5592get_autoflush.cs │ │ │ │ ├── co5593get_basestream.cs │ │ │ │ ├── co5594ctor_str_b.cs │ │ │ │ ├── co5595close.cs │ │ │ │ ├── co5596flush.cs │ │ │ │ ├── co5597ctor_str_b_enc.cs │ │ │ │ ├── co5598ctor_str_b_enc_i.cs │ │ │ │ ├── co5599ctor_stream.cs │ │ │ │ ├── co5600ctor_stream_enc.cs │ │ │ │ ├── co5601ctor_enc_i.cs │ │ │ │ └── rsources │ │ │ ├── stringreader │ │ │ │ ├── co5566ctor_str.cs │ │ │ │ ├── co5567read.cs │ │ │ │ ├── co5568peek.cs │ │ │ │ ├── co5569readtoend.cs │ │ │ │ ├── co5570readline.cs │ │ │ │ ├── co5571read_charr_ii.cs │ │ │ │ ├── co5572close.cs │ │ │ │ └── rsources │ │ │ └── stringwriter │ │ │ │ ├── co5555ctor.cs │ │ │ │ ├── co5556ctor_sb.cs │ │ │ │ ├── co5557write_ch.cs │ │ │ │ ├── co5558write_charr_ii.cs │ │ │ │ ├── co5559write_str.cs │ │ │ │ ├── co5561tostring.cs │ │ │ │ ├── co5562getstringbuilder.cs │ │ │ │ ├── co9400writeline_charr_ii.cs │ │ │ │ ├── co9401write_bool.cs │ │ │ │ ├── co9402writeline_bool.cs │ │ │ │ └── rsources │ │ ├── math │ │ │ ├── co4045abs_byte.cs │ │ │ ├── co4046abs_short.cs │ │ │ ├── co4047abs_int.cs │ │ │ ├── co4048abs_long.cs │ │ │ ├── co4049abs_float.cs │ │ │ ├── co4050abs_double.cs │ │ │ ├── co4051max_sbyte.cs │ │ │ ├── co4052max_short.cs │ │ │ ├── co4053max_int.cs │ │ │ ├── co4054max_single.cs │ │ │ ├── co4055max_double.cs │ │ │ ├── co4057min_sbyte.cs │ │ │ ├── co4058min_short.cs │ │ │ ├── co4059min_int.cs │ │ │ ├── co4060min_long.cs │ │ │ ├── co4061min_single.cs │ │ │ ├── co4062min_double.cs │ │ │ ├── co4063ieeeremainder.cs │ │ │ ├── co4064log.cs │ │ │ ├── co4065acos.cs │ │ │ ├── co4066asin.cs │ │ │ ├── co4067atan.cs │ │ │ ├── co4068atan2.cs │ │ │ ├── co4069ceiling_dbl.cs │ │ │ ├── co4070cos.cs │ │ │ ├── co4071exp.cs │ │ │ ├── co4072floor.cs │ │ │ ├── co4073log10.cs │ │ │ ├── co4074pow.cs │ │ │ ├── co4075round.cs │ │ │ ├── co4077sin.cs │ │ │ ├── co4078sqrt.cs │ │ │ ├── co4079tan.cs │ │ │ ├── co4082log_double.cs │ │ │ ├── co4647max_ubyte.cs │ │ │ ├── co4648min_ubyte.cs │ │ │ ├── co5396max_long.cs │ │ │ ├── co5397max_uint64.cs │ │ │ ├── co5398max_uint32.cs │ │ │ ├── co5399max_uint16.cs │ │ │ ├── co5400min_uint16.cs │ │ │ ├── co5401min_uint32.cs │ │ │ ├── co5402min_uint64.cs │ │ │ ├── co7000sign_int32.cs │ │ │ ├── co7001sign_int64.cs │ │ │ ├── co7002sign_double.cs │ │ │ ├── co7003sign_decimal.cs │ │ │ ├── co7005cosh_double.cs │ │ │ ├── co7006sinh_double.cs │ │ │ ├── co7007tanh_double.cs │ │ │ ├── co7008log_double.cs │ │ │ ├── co7066sign_int16.cs │ │ │ ├── co7067sign_sbyte.cs │ │ │ ├── co8533round_dbl_int.cs │ │ │ └── rsources │ │ ├── random │ │ │ ├── co4238ctor.cs │ │ │ ├── co4239ctor_i.cs │ │ │ ├── co4240next.cs │ │ │ ├── co4241next_i_i.cs │ │ │ ├── co4242next_i.cs │ │ │ ├── co4243nextdouble.cs │ │ │ ├── co4244nextbytes.cs │ │ │ ├── co5380sample.cs │ │ │ └── rsources │ │ ├── rdirs │ │ ├── runtime │ │ │ ├── rdirs │ │ │ └── serialization │ │ │ │ ├── formatterconverter │ │ │ │ ├── co3889to_most.cs │ │ │ │ └── rsources │ │ │ │ ├── formatterservices │ │ │ │ ├── co3856getserializablemembers_type.cs │ │ │ │ ├── co3857getserializablemembers_type_sc.cs │ │ │ │ ├── co3858getobjectdata.cs │ │ │ │ ├── co3860populateobjectmembers.cs │ │ │ │ ├── co3956gettypefromassembly_asmstr.cs │ │ │ │ └── rsources │ │ │ │ ├── objectidgenerator │ │ │ │ ├── co5240ctor.cs │ │ │ │ ├── co5265hasid_obj.cs │ │ │ │ └── rsources │ │ │ │ ├── objectmanager │ │ │ │ ├── co3861recordfixup.cs │ │ │ │ ├── co3862recorddelayedfixup.cs │ │ │ │ ├── co3890recordarrayelementfixup_lil.cs │ │ │ │ ├── co3891recordarrayelementfixup_lial.cs │ │ │ │ ├── co3892dofixups.cs │ │ │ │ ├── co3893getobject_lng.cs │ │ │ │ ├── co3894registerobject_oiser.cs │ │ │ │ ├── co5244registerobject_obj_lng.cs │ │ │ │ ├── co8626ctor_is.cs │ │ │ │ ├── co8627raisedeserializationevent.cs │ │ │ │ ├── co8628registerobject_oisim.cs │ │ │ │ └── rsources │ │ │ │ ├── pseudomlformatter │ │ │ │ ├── co1011serialize.cs │ │ │ │ └── rsources │ │ │ │ ├── rdirs │ │ │ │ ├── serializationentry │ │ │ │ ├── co8630get_name.cs │ │ │ │ ├── co8631get_value.cs │ │ │ │ ├── co8632get_objecttype.cs │ │ │ │ └── rsources │ │ │ │ ├── serializationinfo │ │ │ │ ├── co3847get_fulltypename.cs │ │ │ │ ├── co3848get_membercount.cs │ │ │ │ ├── co3849getvalue_str_tp.cs │ │ │ │ ├── co3851getenumerator.cs │ │ │ │ ├── co3884ctor_tp_if.cs │ │ │ │ ├── co3885addvalue_most.cs │ │ │ │ ├── co3888get_most.cs │ │ │ │ ├── co3959get_assemblyname.cs │ │ │ │ ├── co3960set_assemblyname.cs │ │ │ │ ├── co8633set_fulltypename.cs │ │ │ │ ├── co8634settype_type.cs │ │ │ │ └── rsources │ │ │ │ ├── serializationinfoenumerator │ │ │ │ ├── co3852movenext.cs │ │ │ │ ├── co3853get_name.cs │ │ │ │ ├── co3854get_value.cs │ │ │ │ ├── co3957get_current.cs │ │ │ │ ├── co3958get_objecttype.cs │ │ │ │ ├── co8635reset.cs │ │ │ │ └── rsources │ │ │ │ ├── streamingcontext │ │ │ │ ├── co5247ctor_scs.cs │ │ │ │ ├── co5248ctor_scs_obj.cs │ │ │ │ ├── co5249get_state.cs │ │ │ │ ├── co5250get_context.cs │ │ │ │ ├── co5251equals.cs │ │ │ │ ├── co5252gethashcode.cs │ │ │ │ └── rsources │ │ │ │ └── surrogateselector │ │ │ │ ├── co5246ctor.cs │ │ │ │ ├── co5285addsurrogate_typ_iss.cs │ │ │ │ ├── co5286getsurrogate_typ_sc.cs │ │ │ │ ├── co5287chainselector.cs │ │ │ │ ├── co5288removesurrogate_typ.cs │ │ │ │ ├── co8636getnextselector.cs │ │ │ │ └── rsources │ │ ├── sbyte │ │ │ ├── co3658compareto.cs │ │ │ ├── co3661tostring_str.cs │ │ │ ├── co3662tostring_str_ifp.cs │ │ │ ├── co3663parse_int.cs │ │ │ ├── co3664parse_int_nfi.cs │ │ │ ├── co3665format_str_iformatprovider.cs │ │ │ ├── co4223equals.cs │ │ │ ├── co4225tostring.cs │ │ │ ├── co4226gethashcode.cs │ │ │ ├── co4227tostring_byte.cs │ │ │ ├── co4228parse.cs │ │ │ ├── co5725iconvertible_sbyte.cs │ │ │ ├── co6006fromstring.cs │ │ │ ├── co7047gettypecode.cs │ │ │ ├── co8584tostring_ifp.cs │ │ │ ├── co8585parse_str_ifp.cs │ │ │ └── rsources │ │ ├── single │ │ │ ├── co1120compareto.cs │ │ │ ├── co3447isinfinity.cs │ │ │ ├── co3450isnegativeinfinity.cs │ │ │ ├── co3451ispositiveinfinity.cs │ │ │ ├── co3454isnan.cs │ │ │ ├── co4250parse.cs │ │ │ ├── co4251equals.cs │ │ │ ├── co4253gethashcode.cs │ │ │ ├── co4257tostring.cs │ │ │ ├── co4258tostring.cs │ │ │ ├── co5013tostring_str.cs │ │ │ ├── co5015tostring_str_ifp.cs │ │ │ ├── co5020parse_int.cs │ │ │ ├── co5025parse_int_nfi.cs │ │ │ ├── co5123format_str_ifp.cs │ │ │ ├── co5724iconvertible_single.cs │ │ │ ├── co6007fromstring.cs │ │ │ ├── co7046gettypecode.cs │ │ │ ├── co8586tostring_ifp.cs │ │ │ ├── co8587parse_str_ifp.cs │ │ │ └── rsources │ │ ├── string │ │ │ ├── co1000toupper.cs │ │ │ ├── co1010tolower.cs │ │ │ ├── co1022get_length.cs │ │ │ ├── co1030compare_strstrbool.cs │ │ │ ├── co1090indexof_charint.cs │ │ │ ├── co1091indexof_char.cs │ │ │ ├── co1100equals_str.cs │ │ │ ├── co1126substring_int.cs │ │ │ ├── co1130get_chars.cs │ │ │ ├── co1150endswith_str.cs │ │ │ ├── co1160lastindexof_charint.cs │ │ │ ├── co1161lastindexof_chararrint.cs │ │ │ ├── co1454ctor_strings.cs │ │ │ ├── co1490tochararray_intint.cs │ │ │ ├── co1491get_chars_chararrii.cs │ │ │ ├── co2345replace_cc.cs │ │ │ ├── co2346replace_ss.cs │ │ │ ├── co3038trimend_charr.cs │ │ │ ├── co3039trimstart_charr.cs │ │ │ ├── co3040trim_charr.cs │ │ │ ├── co3041tostring.cs │ │ │ ├── co3042gethashcode.cs │ │ │ ├── co3043split_charr.cs │ │ │ ├── co3044join_strstrarrii.cs │ │ │ ├── co3045join_strstrarr.cs │ │ │ ├── co3130ctor_strstr.cs │ │ │ ├── co3140equals_obj.cs │ │ │ ├── co3146ctor_chararr.cs │ │ │ ├── co3148ctor_chararrintint.cs │ │ │ ├── co3408compare_strstr.cs │ │ │ ├── co3409compare_strintstrintint.cs │ │ │ ├── co3411compareto_str.cs │ │ │ ├── co3416indexof_charintint.cs │ │ │ ├── co3417indexof_chararr.cs │ │ │ ├── co3418indexof_chararrint.cs │ │ │ ├── co3419indexof_chararrintint.cs │ │ │ ├── co3420indexof_str.cs │ │ │ ├── co3421indexof_strint.cs │ │ │ ├── co3422indexof_strintint.cs │ │ │ ├── co3423lastindexof_charintint.cs │ │ │ ├── co3424lastindexof_chararr.cs │ │ │ ├── co3425lastindexof_chararrintint.cs │ │ │ ├── co3426lastindexof_char.cs │ │ │ ├── co3427startswith_str.cs │ │ │ ├── co3428trim.cs │ │ │ ├── co3440replace_charchar.cs │ │ │ ├── co3441compare_strintstrintintboolloc.cs │ │ │ ├── co3442tolower_loc.cs │ │ │ ├── co3443toupper_loc.cs │ │ │ ├── co3445compareordinal_strstr.cs │ │ │ ├── co3446compareordinal_strintstrintint.cs │ │ │ ├── co3709compare_strstrboolloc.cs │ │ │ ├── co3710substring_intint.cs │ │ │ ├── co3711lastindexof_strint.cs │ │ │ ├── co3712format_strobjarrifp.cs │ │ │ ├── co3713lastindexof_strintint.cs │ │ │ ├── co4000ctor_strarr.cs │ │ │ ├── co4825isinterned.cs │ │ │ ├── co4827ctor_sbyte_int_int.cs │ │ │ ├── co4828ctor_sbyte.cs │ │ │ ├── co4829concat_string_string_string.cs │ │ │ ├── co4830concat_string_string.cs │ │ │ ├── co4832ctor_char_int.cs │ │ │ ├── co4833copy.cs │ │ │ ├── co4834equals_string_string.cs │ │ │ ├── co5050format_objs.cs │ │ │ ├── co5100format_str_obj.cs │ │ │ ├── co5101format_str_4objs.cs │ │ │ ├── co5102format_str_3objs.cs │ │ │ ├── co5103format_str_2objs.cs │ │ │ ├── co5150compareto_obj.cs │ │ │ ├── co5151equals_str_str.cs │ │ │ ├── co5152tochararray.cs │ │ │ ├── co5153split_charr_int.cs │ │ │ ├── co5154remove_ii.cs │ │ │ ├── co5155insert_is.cs │ │ │ ├── co5156lastindexof_str.cs │ │ │ ├── co5463concat_obj.cs │ │ │ ├── co5464concat_oo.cs │ │ │ ├── co5465concat_ooo.cs │ │ │ ├── co5467concat_oarr.cs │ │ │ ├── co5472copyto_i_charr_ii.cs │ │ │ ├── co5504ctor_charptr.cs │ │ │ ├── co5800intern.cs │ │ │ ├── co9301padleft.cs │ │ │ ├── co9302padleft_ch_i.cs │ │ │ ├── co9303padright_i.cs │ │ │ ├── co9304padright_ch_i.cs │ │ │ └── rsources │ │ ├── timespan │ │ │ ├── co1528ctor_iiii.cs │ │ │ ├── co2900ctor.cs │ │ │ ├── co2902ctor_long.cs │ │ │ ├── co2904ctor_iii.cs │ │ │ ├── co2910add.cs │ │ │ ├── co2912compare.cs │ │ │ ├── co2914compareto.cs │ │ │ ├── co2916get_days.cs │ │ │ ├── co2918duration.cs │ │ │ ├── co2920equals.cs │ │ │ ├── co2922equals.cs │ │ │ ├── co2924get_days.cs │ │ │ ├── co2926gethashcode.cs │ │ │ ├── co2928get_hours.cs │ │ │ ├── co2930frommilliseconds.cs │ │ │ ├── co2932get_minutes.cs │ │ │ ├── co2934get_seconds.cs │ │ │ ├── co2936get_ticks.cs │ │ │ ├── co2938get_totaldays.cs │ │ │ ├── co2940get_totalhours.cs │ │ │ ├── co2944get_totalminutes.cs │ │ │ ├── co2948fromhours.cs │ │ │ ├── co2952fromminutes.cs │ │ │ ├── co2954negate.cs │ │ │ ├── co2956fromseconds.cs │ │ │ ├── co2958subtract.cs │ │ │ ├── co2960fromticks.cs │ │ │ ├── co2962tostring.cs │ │ │ ├── co3868op_comparisonoperators.cs │ │ │ ├── co5337tostring_ts.cs │ │ │ ├── co5338parse_str.cs │ │ │ ├── co5339fromdays.cs │ │ │ ├── co5340get_totalminutes.cs │ │ │ ├── co5341get_totalseconds.cs │ │ │ ├── co6009fromstring.cs │ │ │ ├── co8588ctor_iiiii.cs │ │ │ └── rsources │ │ ├── timezone │ │ │ ├── co5453getcurrenttimezone.cs │ │ │ └── rsources │ │ ├── uint16 │ │ │ ├── co5723iconvertible_uint16.cs │ │ │ ├── co6012compareto_ob.cs │ │ │ ├── co6013equals_object.cs │ │ │ ├── co6014tostring_str_ifp.cs │ │ │ ├── co6015format_u16_str_ifp.cs │ │ │ ├── co6016tostring_str.cs │ │ │ ├── co6017gethashcode.cs │ │ │ ├── co6019parse_str.cs │ │ │ ├── co6020parse_str_int.cs │ │ │ ├── co6021parse_str_int_nfi.cs │ │ │ ├── co6022tostring.cs │ │ │ ├── co6023tostring_uint.cs │ │ │ ├── co7045gettypecode.cs │ │ │ ├── co7070fromstring_str.cs │ │ │ ├── co8589tostring_ifp.cs │ │ │ ├── co8590parse_str_ifp.cs │ │ │ └── rsources │ │ ├── uint32 │ │ │ ├── co5722iconvertible_uint32.cs │ │ │ ├── co6026compareto_object.cs │ │ │ ├── co6027equals_object.cs │ │ │ ├── co6028tostring_str_ifp.cs │ │ │ ├── co6029format_u32_str_ifp.cs │ │ │ ├── co6030tostring_str.cs │ │ │ ├── co6031gethashcode.cs │ │ │ ├── co6033parse_str.cs │ │ │ ├── co6034parse_str_int.cs │ │ │ ├── co6035parse_str_int_nfi.cs │ │ │ ├── co6036tostring.cs │ │ │ ├── co6037tostring_uint.cs │ │ │ ├── co7044gettypecode.cs │ │ │ ├── co7069fromstring_str.cs │ │ │ ├── co8591tostring_ifp.cs │ │ │ ├── co8592parse_str_ifp.cs │ │ │ └── rsources │ │ ├── uint64 │ │ │ ├── co5721iconvertible_uint64.cs │ │ │ ├── co6040compareto_object.cs │ │ │ ├── co6041equals_object.cs │ │ │ ├── co6042tostring_str_ifp.cs │ │ │ ├── co6043format_u64_str_ifp.cs │ │ │ ├── co6044tostring_str.cs │ │ │ ├── co6045gethashcode.cs │ │ │ ├── co6047parse_str.cs │ │ │ ├── co6048parse_str_int.cs │ │ │ ├── co6049parse_str_int_nfi.cs │ │ │ ├── co6050tostring.cs │ │ │ ├── co6051tostring_ulong.cs │ │ │ ├── co7043gettypecode.cs │ │ │ ├── co7071fromstring_str.cs │ │ │ ├── co8593tostring_ifp.cs │ │ │ ├── co8594parse_str_ifp.cs │ │ │ └── rsources │ │ ├── uintptr │ │ │ ├── co8534ctor_uint.cs │ │ │ ├── co8535ctor_ulong.cs │ │ │ ├── co8536ctor_void.cs │ │ │ ├── co8537equals_obj.cs │ │ │ ├── co8538get_size.cs │ │ │ ├── co8539gethashcode.cs │ │ │ ├── co8540operator_multi.cs │ │ │ ├── co8541topointer.cs │ │ │ ├── co8542tostring.cs │ │ │ ├── co8543touint32.cs │ │ │ ├── co8544touint64.cs │ │ │ └── rsources │ │ ├── valuetype │ │ │ ├── co3873tostring.cs │ │ │ ├── co3874equals.cs │ │ │ ├── co3875gethashcode.cs │ │ │ └── rsources │ │ └── version │ │ │ ├── co5473clone.cs │ │ │ ├── co5474get_build.cs │ │ │ ├── co5475set_build.cs │ │ │ ├── co5476get_major.cs │ │ │ ├── co5477set_major.cs │ │ │ ├── co5478get_minor.cs │ │ │ ├── co5479set_minor.cs │ │ │ ├── co5480get_revision.cs │ │ │ ├── co5481set_revision.cs │ │ │ ├── co7037ctor_iii.cs │ │ │ ├── co7038ctor_ii.cs │ │ │ ├── co7039ctor_str.cs │ │ │ ├── co7040compareto_object.cs │ │ │ ├── co7041equals_object.cs │ │ │ ├── co7042tostring.cs │ │ │ ├── co8595gethashcode.cs │ │ │ ├── co8596tostring_int.cs │ │ │ └── rsources │ └── threadsafety │ │ ├── arraylist │ │ ├── co8502multiplereaders.cs │ │ └── rsources │ │ ├── hashtable │ │ ├── co8503singlewritermultiplereaders.cs │ │ └── rsources │ │ ├── methods │ │ ├── co8832nonautomatedmethods.cs │ │ └── rsources │ │ ├── rdirs │ │ ├── resourcemanager │ │ ├── co3878synchronized.cs │ │ └── rsources │ │ ├── serialization │ │ ├── co8501onegraphmultipleformatters.cs │ │ └── rsources │ │ └── types │ │ ├── co8545int32.cs │ │ ├── co8546int16.cs │ │ ├── co8547sbyte.cs │ │ ├── co8548intptr.cs │ │ ├── co8549uint16.cs │ │ ├── co8550uint32.cs │ │ ├── co8551byte.cs │ │ ├── co8552uintptr.cs │ │ ├── co8553char.cs │ │ ├── co8555boolean.cs │ │ ├── co8559enum.cs │ │ ├── co8788stringbuilder.cs │ │ ├── co8827console.cs │ │ ├── co8830single.cs │ │ └── rsources ├── bvt │ ├── jscript │ │ ├── class.js │ │ ├── factjs.js │ │ ├── fibjs.js │ │ ├── isnan.js │ │ ├── regexpjs.js │ │ └── rsources │ ├── rdirs │ ├── short │ │ ├── 33objref.cs │ │ ├── add_ovf.ifl │ │ ├── arglist.ifl │ │ ├── baseclass_dispatch.cs │ │ ├── co1245getbytes_double.cs │ │ ├── co1252append_string.cs │ │ ├── co1256append_float.cs │ │ ├── co2350remove.cs │ │ ├── co3579tobyte.cs │ │ ├── co3894regsiterobject_oiser.cs │ │ ├── co5056compareto.cs │ │ ├── co5209addresource_str_ubarr.cs │ │ ├── co5209addresource_str_ubarr.pl │ │ ├── co5287chainselector.cs │ │ ├── co5430ctor_obj.cs │ │ ├── co5445ctor_iostr.cs │ │ ├── cs_abort.cs │ │ ├── cs_ctor.cs │ │ ├── cs_interlocked.cs │ │ ├── cs_interlocked2.cs │ │ ├── cs_mutex.cs │ │ ├── cs_mutex2.cs │ │ ├── cs_mutexsample.cs │ │ ├── cs_tryfinally.cs │ │ ├── cse1.cs │ │ ├── decl1.cs │ │ ├── decl2.cs │ │ ├── declmscorlib1.cs │ │ ├── declmscorlib2.cs │ │ ├── div.ifl │ │ ├── hello.bsl │ │ ├── hello.cs │ │ ├── helloxml.cs │ │ ├── interface_dispatch.cs │ │ ├── newarr.cs │ │ ├── pow0.cs │ │ ├── readwritelock.cs │ │ ├── rem.ifl │ │ ├── rsources │ │ └── switch.ifl │ └── verifier │ │ ├── ai_newarr.il │ │ ├── box.il │ │ ├── call_ctor1.il │ │ ├── conv.il │ │ ├── conv1.il │ │ ├── fptr.il │ │ ├── i4_r8.il │ │ ├── merge1.il │ │ ├── merge2.il │ │ ├── merge_wrong_type.il │ │ ├── numneg.il │ │ ├── numneg1.il │ │ ├── numpos.il │ │ ├── rah_newobj.il │ │ ├── rah_newobj_a.il │ │ ├── rsources │ │ ├── scope11-1.il │ │ ├── stack_ovf.il │ │ ├── stack_und.il │ │ ├── test_13_fault.il │ │ ├── test_23_catch.il │ │ ├── test_3_catch.il │ │ ├── test_4_try.il │ │ ├── test_brtf1.il │ │ └── test_brtf2.il ├── cas ├── cas.bat ├── dev │ ├── appdomainstress.cs │ ├── arrayinitialize.il │ ├── bclvmconsistency.cs │ ├── bclvmconsistency.pl │ ├── complexdelegate.cs │ ├── constrained.cs │ ├── constrained.il │ ├── devtests.dat │ ├── excepfilter.il │ ├── excepgc1.il │ ├── excepgc2.il │ ├── ffitest.pl │ ├── ffitest │ │ ├── ffitest.cpp │ │ ├── makefile │ │ └── sources │ ├── float_to_long_overflow.cs │ ├── hugestruct.cs │ ├── interoptest1.cs │ ├── killdriver.cs │ ├── killself.cs │ ├── linenumbers.cs │ ├── loadwithpartialname.cs │ ├── multidimmarray.cs │ ├── nativedll.pl │ ├── nativedll │ │ ├── makefile │ │ ├── nativedll.cpp │ │ ├── nativedll.def │ │ ├── smallstructs.cpp │ │ └── sources │ ├── pow.cs │ ├── processproperties.cs │ ├── readonly.cs │ ├── readonly.il │ ├── reflectioninvoke.cs │ ├── regress1.cs │ ├── regress2.cs │ ├── regress3dll.il │ ├── regress3exe.il │ ├── regress4.cs │ ├── regress4.il │ ├── regress5.il │ ├── remoting.config │ ├── remotingconfig.cs │ ├── remotingmarshal.cs │ ├── rsources │ ├── rvafield_dll.il │ ├── rvafield_exe.il │ ├── sizeof.cs │ ├── sizeof.il │ ├── smallstructs.cs │ ├── staticlocks.cs │ ├── strongnamereflect.js │ ├── strongnamereflect.snk │ ├── syncblock.cs │ ├── tail.il │ ├── tail_calli.bsl │ ├── tail_calli.il │ ├── tailcall2.cs │ ├── tailcall2.il │ ├── tailunit.cs │ ├── tailunit.il │ ├── test_stfld.il │ ├── throw_from_synch_method.il │ ├── unaligned.cs │ ├── unaligned.il │ ├── val_prim_optm.il │ ├── varargtest.cs │ ├── varargtest2.cs │ ├── xmlencoding.cs │ └── xremoting.cs ├── gc │ ├── methodical │ │ ├── finalizer │ │ │ ├── finalizeio │ │ │ │ ├── finalizeio.cs │ │ │ │ └── rsources │ │ │ ├── finalizeother │ │ │ │ ├── finalizearray.cs │ │ │ │ ├── finalizearraysleep.cs │ │ │ │ ├── finalizedest.cs │ │ │ │ ├── finalizedirectedgraph.cs │ │ │ │ ├── finalizeexcep.cs │ │ │ │ ├── finalizeinherit.cs │ │ │ │ ├── finalizenested.cs │ │ │ │ ├── finalizeobjtimeout.cs │ │ │ │ ├── finalizeresurrect.cs │ │ │ │ ├── finalizestop.cs │ │ │ │ ├── finalizetotaltimeout.cs │ │ │ │ └── rsources │ │ │ └── rdirs │ │ ├── keepalive │ │ │ └── keepaliveother │ │ │ │ ├── keepalivearray.cs │ │ │ │ ├── keepalivedirectedgraph.cs │ │ │ │ ├── keepalivefinalize.cs │ │ │ │ ├── keepalivehandle.cs │ │ │ │ ├── keepaliveoutofmemory.cs │ │ │ │ ├── keepalivescope.cs │ │ │ │ ├── keepalivetry.cs │ │ │ │ ├── keepalivetypes.cs │ │ │ │ ├── keepaliveweak.cs │ │ │ │ └── rsources │ │ ├── pinning │ │ │ ├── pinningother │ │ │ │ ├── pinnedcollect.cs │ │ │ │ ├── pinnedgen.cs │ │ │ │ ├── pinnedgen_neg.cs │ │ │ │ ├── pinnedhandle.cs │ │ │ │ ├── pinnedint.cs │ │ │ │ ├── pinnedmany.cs │ │ │ │ ├── pinnedmultiple.cs │ │ │ │ ├── pinnedobject.cs │ │ │ │ ├── pinnedunsafeaddr.cs │ │ │ │ └── rsources │ │ │ └── rdirs │ │ └── rdirs │ ├── rdirs │ └── stress │ │ ├── directedgraph │ │ ├── directedgraph.cs │ │ └── rsources │ │ ├── largeobjectalloc │ │ ├── largeobjectalloc.cs │ │ ├── largeobjectalloc1.cs │ │ ├── largeobjectalloc2.cs │ │ ├── largeobjectalloc3.cs │ │ ├── largeobjectalloc4.cs │ │ └── rsources │ │ ├── rdirs │ │ └── redblacktree │ │ ├── redblacktree.cs │ │ └── rsources ├── generics │ ├── arrays │ │ ├── new.bsl │ │ ├── new.cs │ │ ├── newmulti.bsl │ │ ├── newmulti.cs │ │ └── rsources │ ├── casts │ │ ├── rsources │ │ ├── unbox1.bsl │ │ ├── unbox1.cs │ │ ├── unbox2.bsl │ │ └── unbox2.cs │ ├── classes │ │ ├── inline.bsl │ │ ├── inline.cs │ │ ├── rsources │ │ ├── tris.bsl │ │ └── tris.cs │ ├── constraints │ │ ├── call_instance01.cs │ │ ├── call_static01.cs │ │ ├── class1.cs │ │ ├── class1.il │ │ ├── class2.cs │ │ ├── class2.il │ │ ├── constraint-mutability-genmeth-invariant.il │ │ ├── constraint-mutability-gentype-covariant-multi.il │ │ ├── constraint-mutability-gentype-covariant.il │ │ ├── constraint-mutability-gentype-invariant-multi.il │ │ ├── constraint-mutability-gentype-invariant.il │ │ ├── convert_instance01.cs │ │ ├── convert_static01.cs │ │ ├── transitive_instance01.cs │ │ ├── transitive_static01.cs │ │ ├── vt1.cs │ │ ├── vt1.il │ │ ├── vt2.cs │ │ ├── vt2.il │ │ ├── vt3.cs │ │ ├── vt3.il │ │ ├── vt4.cs │ │ └── vt4.il │ ├── inherit │ │ ├── int1.bsl │ │ ├── int1.cs │ │ ├── rsources │ │ ├── virtual1.bsl │ │ └── virtual1.cs │ ├── methods │ │ ├── genmeth1.bsl │ │ ├── genmeth1.cs │ │ ├── genmeth2.bsl │ │ ├── genmeth2.cs │ │ ├── genmeth3.bsl │ │ ├── genmeth3.cs │ │ ├── genmeth4.bsl │ │ ├── genmeth4.cs │ │ ├── rsources │ │ ├── swap.bsl │ │ ├── swap.cs │ │ ├── test.bsl │ │ └── test.cs │ ├── micro │ │ └── testinstr.cs │ ├── misc │ │ ├── gset.bsl │ │ ├── gset.cs │ │ ├── rsources │ │ ├── struct.bsl │ │ └── struct.cs │ ├── rdirs │ ├── recursion │ │ ├── fields.bsl │ │ ├── fields.cs │ │ ├── genericint.bsl │ │ ├── genericint.cs │ │ ├── genericmutualsuper.bsl │ │ ├── genericmutualsuper.cs │ │ ├── genericsuper.bsl │ │ ├── genericsuper.cs │ │ ├── int.bsl │ │ ├── int.cs │ │ ├── mutualsuper.bsl │ │ ├── mutualsuper.cs │ │ ├── rsources │ │ ├── super.bsl │ │ └── super.cs │ ├── reflect │ │ ├── arraymeth.bsl │ │ ├── arraymeth.cs │ │ ├── decompose.cs │ │ ├── genericmethod.cs │ │ ├── reflect1.bsl │ │ ├── reflect1.cs │ │ ├── rsources │ │ ├── shared.cs │ │ ├── subclass.bsl │ │ ├── subclass.cs │ │ ├── testcreateinstance.cs │ │ └── testsuper.cs │ ├── serialize │ │ ├── gserialize.cs │ │ └── rsources │ ├── threads │ │ ├── polyrec.bsl │ │ ├── polyrec.cs │ │ └── rsources │ └── virtualmethods │ │ ├── delegate.bsl │ │ ├── delegate.il │ │ ├── inherit.bsl │ │ ├── inherit.cs │ │ ├── int.bsl │ │ ├── int.il │ │ ├── int_tail.bsl │ │ ├── int_tail.il │ │ ├── int_tail_ind.bsl │ │ ├── int_tail_ind.il │ │ ├── nested.cs │ │ ├── nested_ind.il │ │ ├── override.bsl │ │ ├── override.cs │ │ ├── override_debug.il │ │ ├── override_ind.bsl │ │ ├── override_ind.il │ │ ├── rsources │ │ ├── tail.bsl │ │ ├── tail.cs │ │ └── tail.il ├── harness │ ├── audittestconfig.sh │ ├── lib │ │ └── xport │ │ │ └── testharness │ │ │ ├── csvfile.pm │ │ │ └── record.pm │ ├── test_harness │ │ ├── configparser.c │ │ ├── configparser.h │ │ ├── error.c │ │ ├── error.h │ │ ├── exectest.h │ │ ├── exectest_unix.c │ │ ├── exectest_win32.c │ │ ├── harness_comp_commands.h.in │ │ ├── main.c │ │ ├── params.c │ │ ├── params.h │ │ ├── results.c │ │ ├── results.h │ │ ├── testharness.h │ │ ├── testinfo.c │ │ ├── testinfo.h │ │ ├── util.c │ │ └── util.h │ ├── testresults2html.pl │ └── xrun │ │ └── xrun.c ├── il_bvt │ ├── base │ │ ├── add.il │ │ ├── add_ovf.il │ │ ├── and.il │ │ ├── arglist.il │ │ ├── beq.il │ │ ├── bge.il │ │ ├── bgt.il │ │ ├── ble.il │ │ ├── blt.il │ │ ├── bne.il │ │ ├── br.il │ │ ├── break.il │ │ ├── brfalse.il │ │ ├── brtrue.il │ │ ├── call.il │ │ ├── ceq.il │ │ ├── cgt.il │ │ ├── ckfinite.il │ │ ├── clt.il │ │ ├── conv.il │ │ ├── conv_ovf.il │ │ ├── cpblk.il │ │ ├── div.il │ │ ├── dup.il │ │ ├── initblk.il │ │ ├── jmp.il │ │ ├── jmpi.il │ │ ├── ldarg_n.il │ │ ├── ldarg_starg.il │ │ ├── ldargs_stargs.il │ │ ├── ldc.il │ │ ├── ldc_i4_n.il │ │ ├── ldftn_calli.il │ │ ├── ldind_stind.il │ │ ├── ldloc_stloc.il │ │ ├── ldloca.il │ │ ├── ldnull.il │ │ ├── mul.il │ │ ├── mul_ovf.il │ │ ├── neg.il │ │ ├── nop.il │ │ ├── not.il │ │ ├── or.il │ │ ├── pop.il │ │ ├── rem.il │ │ ├── ret.il │ │ ├── rsources │ │ ├── shl.il │ │ ├── shr.il │ │ ├── sub.il │ │ ├── sub_ovf.il │ │ ├── switch.il │ │ ├── tailcall.il │ │ ├── unaligned.il │ │ ├── varargs.il │ │ ├── volatile.il │ │ └── xor.il │ ├── conformance_base │ │ ├── add_i.il │ │ ├── add_i4.il │ │ ├── add_i8.il │ │ ├── add_ovf_i1.il │ │ ├── add_ovf_i2.il │ │ ├── add_ovf_i4.il │ │ ├── add_ovf_i8.il │ │ ├── add_ovf_u1.il │ │ ├── add_ovf_u2.il │ │ ├── add_ovf_u4.il │ │ ├── add_ovf_u8.il │ │ ├── add_r4.il │ │ ├── add_r8.il │ │ ├── and_u4.il │ │ ├── and_u8.il │ │ ├── beq_i.il │ │ ├── beq_i4.il │ │ ├── beq_i8.il │ │ ├── beq_r4.il │ │ ├── beq_r8.il │ │ ├── bge_i4.il │ │ ├── bge_i8.il │ │ ├── bge_r4.il │ │ ├── bge_r8.il │ │ ├── bge_u.il │ │ ├── bge_un_i4.il │ │ ├── bge_un_i8.il │ │ ├── bge_un_r4.il │ │ ├── bge_un_r8.il │ │ ├── bgt_i4.il │ │ ├── bgt_i8.il │ │ ├── bgt_r4.il │ │ ├── bgt_r8.il │ │ ├── bgt_u.il │ │ ├── bgt_u4.il │ │ ├── bgt_u8.il │ │ ├── bgt_un_r4.il │ │ ├── bgt_un_r8.il │ │ ├── ble_i4.il │ │ ├── ble_i8.il │ │ ├── ble_r4.il │ │ ├── ble_r8.il │ │ ├── ble_u.il │ │ ├── ble_u4.il │ │ ├── ble_u8.il │ │ ├── ble_un_r4.il │ │ ├── ble_un_r8.il │ │ ├── blt_i4.il │ │ ├── blt_i8.il │ │ ├── blt_r4.il │ │ ├── blt_r8.il │ │ ├── blt_u.il │ │ ├── blt_u4.il │ │ ├── blt_u8.il │ │ ├── blt_un_r4.il │ │ ├── blt_un_r8.il │ │ ├── bne_u.il │ │ ├── bne_u4.il │ │ ├── bne_u8.il │ │ ├── bne_un_r4.il │ │ ├── bne_un_r8.il │ │ ├── br.il │ │ ├── brfalse.il │ │ ├── brtrue.il │ │ ├── c_br.il │ │ ├── c_brfalse.il │ │ ├── c_brtrue.il │ │ ├── c_call.il │ │ ├── c_cpblk.il │ │ ├── c_initblk.il │ │ ├── c_ldvirtftn.il │ │ ├── c_localloc.il │ │ ├── c_nop.il │ │ ├── c_ret.il │ │ ├── c_switch.il │ │ ├── call.il │ │ ├── ceq_i.il │ │ ├── ceq_i4.il │ │ ├── ceq_i8.il │ │ ├── ceq_r4.il │ │ ├── ceq_r8.il │ │ ├── cgt_i4.il │ │ ├── cgt_i8.il │ │ ├── cgt_r4.il │ │ ├── cgt_r8.il │ │ ├── cgt_u.il │ │ ├── cgt_u4.il │ │ ├── cgt_u8.il │ │ ├── cgt_un_r4.il │ │ ├── cgt_un_r8.il │ │ ├── ckfinite_r4.il │ │ ├── ckfinite_r8.il │ │ ├── clt_i4.il │ │ ├── clt_i8.il │ │ ├── clt_r4.il │ │ ├── clt_r8.il │ │ ├── clt_u.il │ │ ├── clt_u4.il │ │ ├── clt_u8.il │ │ ├── clt_un_r4.il │ │ ├── clt_un_r8.il │ │ ├── conv_i4.il │ │ ├── conv_i8.il │ │ ├── conv_ovf_i4_i1.il │ │ ├── conv_ovf_i4_i2.il │ │ ├── conv_ovf_i4_u4.il │ │ ├── conv_ovf_i8_i.il │ │ ├── conv_ovf_i8_i4.il │ │ ├── conv_ovf_i8_u8.il │ │ ├── conv_ovf_r8_i.il │ │ ├── conv_ovf_r8_i4.il │ │ ├── conv_ovf_r8_i8.il │ │ ├── conv_ovf_u4_i.il │ │ ├── conv_ovf_u4_i4.il │ │ ├── conv_ovf_u4_u1.il │ │ ├── conv_ovf_u4_u2.il │ │ ├── conv_ovf_u8_i8.il │ │ ├── conv_ovf_u8_u4.il │ │ ├── conv_r4.il │ │ ├── convdll.il │ │ ├── cpblk.il │ │ ├── div_i4.il │ │ ├── div_i8.il │ │ ├── div_r4.il │ │ ├── div_r8.il │ │ ├── div_u4.il │ │ ├── div_u8.il │ │ ├── dup4.il │ │ ├── dup8.il │ │ ├── dupi.il │ │ ├── initblk.il │ │ ├── ldarg_i.il │ │ ├── ldarg_i4.il │ │ ├── ldarg_i8.il │ │ ├── ldarg_r4.il │ │ ├── ldarg_r8.il │ │ ├── ldarg_ref.il │ │ ├── ldarga_i.il │ │ ├── ldarga_i4.il │ │ ├── ldarga_i8.il │ │ ├── ldarga_r4.il │ │ ├── ldarga_r8.il │ │ ├── ldarga_ref.il │ │ ├── ldc_i4.il │ │ ├── ldc_i8.il │ │ ├── ldc_r4.il │ │ ├── ldc_r8.il │ │ ├── ldftn.il │ │ ├── ldind_i.il │ │ ├── ldind_i1.il │ │ ├── ldind_i2.il │ │ ├── ldind_i4.il │ │ ├── ldind_i8.il │ │ ├── ldind_r4.il │ │ ├── ldind_r8.il │ │ ├── ldind_ref.il │ │ ├── ldind_u1.il │ │ ├── ldind_u2.il │ │ ├── ldind_u4.il │ │ ├── ldloc_i.il │ │ ├── ldloc_i4.il │ │ ├── ldloc_i8.il │ │ ├── ldloc_r4.il │ │ ├── ldloc_r8.il │ │ ├── ldloc_ref.il │ │ ├── ldnull_ref.il │ │ ├── ldvirtftn.il │ │ ├── localloc.il │ │ ├── mul_i4.il │ │ ├── mul_i8.il │ │ ├── mul_ovf_i1.il │ │ ├── mul_ovf_i2.il │ │ ├── mul_ovf_i4.il │ │ ├── mul_ovf_i8.il │ │ ├── mul_ovf_u1.il │ │ ├── mul_ovf_u2.il │ │ ├── mul_ovf_u4.il │ │ ├── mul_ovf_u8.il │ │ ├── mul_r4.il │ │ ├── mul_r8.il │ │ ├── neg_i4.il │ │ ├── neg_i8.il │ │ ├── neg_r4.il │ │ ├── neg_r8.il │ │ ├── nop.il │ │ ├── not_u4.il │ │ ├── not_u8.il │ │ ├── or_u4.il │ │ ├── or_u8.il │ │ ├── pop4.il │ │ ├── pop8.il │ │ ├── popi.il │ │ ├── refs.il │ │ ├── rem_i4.il │ │ ├── rem_i8.il │ │ ├── rem_r4.il │ │ ├── rem_r8.il │ │ ├── rem_u4.il │ │ ├── rem_u8.il │ │ ├── ret.il │ │ ├── ret_i.il │ │ ├── ret_i4.il │ │ ├── ret_i8.il │ │ ├── ret_r4.il │ │ ├── ret_r8.il │ │ ├── ret_ref.il │ │ ├── rsources │ │ ├── shl_u4.il │ │ ├── shl_u8.il │ │ ├── shr_i4.il │ │ ├── shr_i8.il │ │ ├── shr_u4.il │ │ ├── shr_u8.il │ │ ├── sizeof.il │ │ ├── starg_i.il │ │ ├── starg_i4.il │ │ ├── starg_i8.il │ │ ├── starg_r4.il │ │ ├── starg_r8.il │ │ ├── starg_ref.il │ │ ├── stind_i.il │ │ ├── stind_i1.il │ │ ├── stind_i2.il │ │ ├── stind_i4.il │ │ ├── stind_i8.il │ │ ├── stind_r4.il │ │ ├── stind_r8.il │ │ ├── stind_ref.il │ │ ├── stloc_i.il │ │ ├── stloc_i4.il │ │ ├── stloc_i8.il │ │ ├── stloc_r4.il │ │ ├── stloc_r8.il │ │ ├── stloc_ref.il │ │ ├── sub_i.il │ │ ├── sub_i4.il │ │ ├── sub_i8.il │ │ ├── sub_ovf_i1.il │ │ ├── sub_ovf_i2.il │ │ ├── sub_ovf_i4.il │ │ ├── sub_ovf_i8.il │ │ ├── sub_ovf_u1.il │ │ ├── sub_ovf_u2.il │ │ ├── sub_ovf_u4.il │ │ ├── sub_ovf_u8.il │ │ ├── sub_r4.il │ │ ├── sub_r8.il │ │ ├── switch.il │ │ ├── xor_u4.il │ │ └── xor_u8.il │ ├── objectmodel │ │ ├── array_tests.il │ │ ├── box_unbox.il │ │ ├── callintf.il │ │ ├── callnonvirt.il │ │ ├── callstatic.il │ │ ├── callsuper.il │ │ ├── callvirt.il │ │ ├── castclass.il │ │ ├── cpobj.il │ │ ├── field_tests.il │ │ ├── fielda_tests.il │ │ ├── initobj.il │ │ ├── isinst.il │ │ ├── ldlen.il │ │ ├── ldobj.il │ │ ├── ldstr.il │ │ ├── ldtoken.il │ │ ├── ldvirtftn.il │ │ ├── localloc.il │ │ ├── newobj.il │ │ ├── refany_tests.il │ │ ├── rsources │ │ ├── seh_tests.il │ │ └── throw.il │ └── rdirs ├── jscript │ ├── arrays │ │ ├── arraywrap01.js │ │ ├── arraywrap02.js │ │ ├── arrcon01.js │ │ ├── arrcon02.js │ │ ├── arrjoi01.js │ │ ├── arrjoi02.js │ │ ├── arrpop01.js │ │ ├── arrpsh01.js │ │ ├── arrrev01.js │ │ ├── arrshf01.js │ │ ├── arrslc01.js │ │ ├── arrspl01.js │ │ ├── arrsrt01.js │ │ ├── arrtls01.js │ │ ├── arruns01.js │ │ ├── arruns02.js │ │ ├── rsources │ │ ├── typarr01.js │ │ ├── typarr02.js │ │ ├── typarr03.js │ │ ├── typarr04.js │ │ ├── typarr05.js │ │ ├── typarr06.js │ │ ├── typarr07.js │ │ ├── typarr08.js │ │ ├── typarr10.js │ │ ├── typarr11.js │ │ ├── typarr12.js │ │ ├── typarr13.js │ │ ├── typarr14.js │ │ ├── typarr15.js │ │ ├── typarr16.js │ │ ├── typarr18.js │ │ ├── typarr19.js │ │ ├── typarr20.js │ │ ├── typarr21.js │ │ └── typarr22.js │ ├── behavior │ │ ├── asmattr01.js │ │ └── rsources │ ├── builtins │ │ ├── deuri001.js │ │ ├── deuri002a.js │ │ ├── deuri002b.js │ │ ├── deuri004.js │ │ ├── deuri005.js │ │ ├── duric001.js │ │ ├── duric002a.js │ │ ├── duric002b.js │ │ ├── duric004.js │ │ ├── duric005.js │ │ ├── enuri001.js │ │ ├── enuri002.js │ │ ├── escap001.js │ │ ├── escap006.js │ │ ├── escap007.js │ │ ├── escap008.js │ │ ├── escap009.js │ │ ├── escap010.js │ │ ├── escap011.js │ │ ├── escap020.js │ │ ├── euric001.js │ │ ├── euric002.js │ │ ├── eval001.js │ │ ├── eval002.js │ │ ├── isnan001.js │ │ ├── psint001.js │ │ ├── psint002.js │ │ ├── psint003.js │ │ ├── psint004.js │ │ ├── psint005.js │ │ ├── psint006.js │ │ ├── psint007.js │ │ ├── psint008.js │ │ ├── psint009.js │ │ ├── psint010.js │ │ ├── psint011.js │ │ ├── psint012.js │ │ ├── psint013.js │ │ ├── psint014.js │ │ ├── psint015.js │ │ ├── psint016.js │ │ ├── psint017.js │ │ ├── psint018.js │ │ ├── psint019.js │ │ ├── psint020.js │ │ ├── psint021.js │ │ ├── psint022.js │ │ ├── psint023.js │ │ ├── psint024.js │ │ ├── psint025.js │ │ ├── psint026.js │ │ ├── psint027.js │ │ ├── psint028.js │ │ ├── psint029.js │ │ ├── psint030.js │ │ ├── psint031.js │ │ ├── psint032.js │ │ ├── psint033.js │ │ ├── psint034.js │ │ ├── psint035.js │ │ ├── psint036.js │ │ ├── psint037.js │ │ ├── psint101.js │ │ ├── rsources │ │ ├── tostr001.js │ │ ├── tostr002.js │ │ ├── tostr003.js │ │ ├── tostr004.js │ │ ├── tostr005.js │ │ ├── tostr006.js │ │ ├── tostr007.js │ │ ├── tostr008.js │ │ ├── tostr009.js │ │ ├── tostr010.js │ │ ├── tostr011.js │ │ ├── tostr012.js │ │ ├── tostr013.js │ │ ├── tostr014.js │ │ ├── tostr015.js │ │ ├── tostr016.js │ │ ├── tostr017.js │ │ ├── tostr018.js │ │ ├── tostr019.js │ │ ├── tostr020.js │ │ ├── tostr021.js │ │ ├── tostr022.js │ │ ├── tostr023.js │ │ ├── tostr024.js │ │ ├── tostr025.js │ │ ├── tostra01.js │ │ ├── tostra02.js │ │ ├── tostrn01.js │ │ ├── tostrs01.js │ │ ├── tostrs02.js │ │ ├── tostrs03.js │ │ ├── tostrs04.js │ │ ├── unesc001.js │ │ ├── unesc002.js │ │ ├── unesc003.js │ │ ├── unesc005.js │ │ ├── unesc006.js │ │ ├── unesc007.js │ │ ├── unesc008.js │ │ ├── unesc009.js │ │ ├── unesc010.js │ │ ├── unesc011.js │ │ ├── unesc012.js │ │ ├── unesc013.js │ │ ├── unesc014.js │ │ ├── unesc015.js │ │ ├── unesc016.js │ │ ├── unesc017.js │ │ └── with03.js │ ├── classes │ │ ├── abstract01.js │ │ ├── abstract02.js │ │ ├── accesscontroltopackagefields.js │ │ ├── accesscontroltopackagemethods.js │ │ ├── accesscontroltoprivatefields1.js │ │ ├── accesscontroltoprivatefields2.js │ │ ├── accesscontroltoprivatemethods.js │ │ ├── accesscontroltoprotectedfields.js │ │ ├── accesscontroltoprotectedmethods.js │ │ ├── accesscontroltopublicfields.js │ │ ├── accesscontroltopublicmethods.js │ │ ├── class00.js │ │ ├── closure01.js │ │ ├── closure02.js │ │ ├── closure03.js │ │ ├── closure04.js │ │ ├── closure06.js │ │ ├── constants1.js │ │ ├── constants2.js │ │ ├── constructors01.js │ │ ├── constructors02.js │ │ ├── constructors04.js │ │ ├── constructors05.js │ │ ├── constructors06.js │ │ ├── constructors07.js │ │ ├── constructors08.js │ │ ├── constructors09.js │ │ ├── constructors10.js │ │ ├── constructors11.js │ │ ├── constructors12.js │ │ ├── constructors13.js │ │ ├── constructors14.js │ │ ├── constructors15.js │ │ ├── custattr01.js │ │ ├── custattr02.js │ │ ├── custattr03.js │ │ ├── custattr04.js │ │ ├── expando01.js │ │ ├── expando02.js │ │ ├── expando04.js │ │ ├── final01.js │ │ ├── getandsetaccessors.js │ │ ├── hideover01.js │ │ ├── hideover02.js │ │ ├── instantiatinganobject.js │ │ ├── interface01.js │ │ ├── interface02.js │ │ ├── methodoverloading.js │ │ ├── methodoverriding.js │ │ ├── methodoverriding1.js │ │ ├── methret01.js │ │ ├── methret02.js │ │ ├── nestedclasses1.js │ │ ├── nestedclasses2.js │ │ ├── packages.js │ │ ├── regressiontest1.js │ │ ├── regressiontests.js │ │ ├── rsources │ │ ├── staticinitializers01.js │ │ ├── staticinitializers02.js │ │ ├── staticmembers01.js │ │ ├── staticmembers02.js │ │ ├── super01.js │ │ ├── super02.js │ │ ├── super03.js │ │ ├── super04.js │ │ ├── super05.js │ │ ├── super06.js │ │ ├── super07.js │ │ ├── super08.js │ │ ├── super09.js │ │ ├── super10.js │ │ ├── super11.js │ │ ├── super12.js │ │ ├── super13.js │ │ └── super14.js │ ├── clr │ │ ├── dotnet00.js │ │ ├── dotnet01.js │ │ ├── dotnet02.js │ │ ├── dotnet03.js │ │ ├── dotnet04.js │ │ ├── dotnet05.js │ │ ├── dotnet10.js │ │ ├── dotnet12.js │ │ └── rsources │ ├── codedom │ │ ├── cmdline_f01.js │ │ ├── cmdline_f02.js │ │ ├── cmdline_f03.js │ │ ├── cmdline_f04.js │ │ ├── cmdline_f05.js │ │ ├── cmdline_f06.js │ │ ├── cmdline_f07.js │ │ ├── cmdline_f08.js │ │ ├── cmdline_f09.js │ │ ├── cmdline_f20.js │ │ └── rsources │ ├── condcomp │ │ ├── cc001.js │ │ ├── cc002.js │ │ ├── cc004.js │ │ └── rsources │ ├── ctrlflow │ │ ├── autosemi01.js │ │ ├── break001.js │ │ ├── break002.js │ │ ├── cond001.js │ │ ├── cond002.js │ │ ├── cond003.js │ │ ├── cond004.js │ │ ├── cond005.js │ │ ├── cond006.js │ │ ├── cond007.js │ │ ├── cond008.js │ │ ├── cond009.js │ │ ├── cond010.js │ │ ├── cond011.js │ │ ├── cond012.js │ │ ├── cond013.js │ │ ├── cond014.js │ │ ├── cond015.js │ │ ├── cond016.js │ │ ├── cond017.js │ │ ├── cond018.js │ │ ├── cont001.js │ │ ├── cont002.js │ │ ├── do001.js │ │ ├── do002.js │ │ ├── do003.js │ │ ├── do004.js │ │ ├── do005.js │ │ ├── do006.js │ │ ├── do007.js │ │ ├── do008.js │ │ ├── do009.js │ │ ├── do010.js │ │ ├── do011.js │ │ ├── do012.js │ │ ├── do013.js │ │ ├── do014.js │ │ ├── do015.js │ │ ├── do016.js │ │ ├── do017.js │ │ ├── do018.js │ │ ├── do019.js │ │ ├── do020.js │ │ ├── do102.js │ │ ├── do103.js │ │ ├── do104.js │ │ ├── do105.js │ │ ├── do106.js │ │ ├── do107.js │ │ ├── do108.js │ │ ├── do109.js │ │ ├── do110.js │ │ ├── do111.js │ │ ├── do112.js │ │ ├── do113.js │ │ ├── do114.js │ │ ├── do115.js │ │ ├── do116.js │ │ ├── do117.js │ │ ├── do118.js │ │ ├── do119.js │ │ ├── do120.js │ │ ├── for001.js │ │ ├── for002.js │ │ ├── for003.js │ │ ├── for004.js │ │ ├── for005.js │ │ ├── for006.js │ │ ├── for007.js │ │ ├── for008.js │ │ ├── for009.js │ │ ├── for010.js │ │ ├── for011.js │ │ ├── for012.js │ │ ├── for013.js │ │ ├── for014.js │ │ ├── for015.js │ │ ├── for016.js │ │ ├── for017.js │ │ ├── for018.js │ │ ├── for019.js │ │ ├── for020.js │ │ ├── for021.js │ │ ├── for022.js │ │ ├── for023.js │ │ ├── for102.js │ │ ├── for103.js │ │ ├── for104.js │ │ ├── for105.js │ │ ├── for106.js │ │ ├── for107.js │ │ ├── for108.js │ │ ├── for109.js │ │ ├── for110.js │ │ ├── for111.js │ │ ├── for112.js │ │ ├── for113.js │ │ ├── for114.js │ │ ├── for115.js │ │ ├── for116.js │ │ ├── for117.js │ │ ├── for118.js │ │ ├── for119.js │ │ ├── for120.js │ │ ├── for121.js │ │ ├── forin001.js │ │ ├── forin002.js │ │ ├── forin003.js │ │ ├── forin004.js │ │ ├── forin005.js │ │ ├── forin006.js │ │ ├── forin007.js │ │ ├── forin008.js │ │ ├── forin009.js │ │ ├── forin010.js │ │ ├── forin011.js │ │ ├── forin012.js │ │ ├── forin013.js │ │ ├── forin014.js │ │ ├── forin015.js │ │ ├── forin016.js │ │ ├── forin017.js │ │ ├── forin018.js │ │ ├── forin019.js │ │ ├── forin020.js │ │ ├── forin021.js │ │ ├── forin022.js │ │ ├── forin023.js │ │ ├── forin024.js │ │ ├── forin101.js │ │ ├── forin102.js │ │ ├── forin103.js │ │ ├── forin104.js │ │ ├── forin105.js │ │ ├── forin106.js │ │ ├── forin107.js │ │ ├── forin108.js │ │ ├── forin109.js │ │ ├── forin110.js │ │ ├── forin111.js │ │ ├── forin112.js │ │ ├── forin113.js │ │ ├── forin114.js │ │ ├── forin115.js │ │ ├── forin116.js │ │ ├── forin117.js │ │ ├── forin118.js │ │ ├── forin119.js │ │ ├── forin120.js │ │ ├── forin121.js │ │ ├── forin122.js │ │ ├── forin123.js │ │ ├── forin124.js │ │ ├── forin125.js │ │ ├── forin126.js │ │ ├── forin127.js │ │ ├── forin128.js │ │ ├── forin129.js │ │ ├── forin130.js │ │ ├── forin131.js │ │ ├── forin132.js │ │ ├── forin133.js │ │ ├── forin134.js │ │ ├── forin135.js │ │ ├── forin136.js │ │ ├── forin137.js │ │ ├── forin138.js │ │ ├── forin139.js │ │ ├── forin140.js │ │ ├── forin141.js │ │ ├── forin142.js │ │ ├── forin143.js │ │ ├── if001.js │ │ ├── if002.js │ │ ├── if003.js │ │ ├── if004.js │ │ ├── if005.js │ │ ├── if006.js │ │ ├── if007.js │ │ ├── if008.js │ │ ├── if009.js │ │ ├── if010.js │ │ ├── if011.js │ │ ├── if012.js │ │ ├── if013.js │ │ ├── if014.js │ │ ├── if015.js │ │ ├── if016.js │ │ ├── if017.js │ │ ├── if018.js │ │ ├── if019.js │ │ ├── if020.js │ │ ├── if021.js │ │ ├── if102.js │ │ ├── if103.js │ │ ├── if104.js │ │ ├── if105.js │ │ ├── if106.js │ │ ├── if107.js │ │ ├── if108.js │ │ ├── if109.js │ │ ├── if110.js │ │ ├── if111.js │ │ ├── if112.js │ │ ├── if113.js │ │ ├── if114.js │ │ ├── if115.js │ │ ├── if116.js │ │ ├── if117.js │ │ ├── if118.js │ │ ├── if119.js │ │ ├── labbrk01.js │ │ ├── labbrk02.js │ │ ├── labbrk03.js │ │ ├── labbrk04.js │ │ ├── labbrk05.js │ │ ├── labbrk06.js │ │ ├── labcon01.js │ │ ├── labcon02.js │ │ ├── labcon03.js │ │ ├── labcon04.js │ │ ├── labcon05.js │ │ ├── labcon06.js │ │ ├── labcon07.js │ │ ├── rsources │ │ ├── switch01.js │ │ ├── switch02.js │ │ ├── switch03.js │ │ ├── switch04.js │ │ ├── switch05.js │ │ ├── switch06.js │ │ ├── whil001.js │ │ ├── whil002.js │ │ ├── whil003.js │ │ ├── whil004.js │ │ ├── whil005.js │ │ ├── whil006.js │ │ ├── whil007.js │ │ ├── whil008.js │ │ ├── whil009.js │ │ ├── whil010.js │ │ ├── whil011.js │ │ ├── whil012.js │ │ ├── whil013.js │ │ ├── whil014.js │ │ ├── whil015.js │ │ ├── whil016.js │ │ ├── whil017.js │ │ ├── whil018.js │ │ ├── whil019.js │ │ ├── whil020.js │ │ ├── whil102.js │ │ ├── whil103.js │ │ ├── whil104.js │ │ ├── whil105.js │ │ ├── whil106.js │ │ ├── whil107.js │ │ ├── whil108.js │ │ ├── whil109.js │ │ ├── whil110.js │ │ ├── whil111.js │ │ ├── whil112.js │ │ ├── whil113.js │ │ ├── whil114.js │ │ ├── whil115.js │ │ ├── whil116.js │ │ ├── whil117.js │ │ ├── whil118.js │ │ ├── whil119.js │ │ └── whil120.js │ ├── date │ │ ├── date0001.js │ │ ├── date0002.js │ │ ├── date0003.js │ │ ├── datmth01.js │ │ ├── datmth02.js │ │ ├── datmth03.js │ │ ├── datmth04.js │ │ ├── dtcon01.js │ │ ├── dtfunc01.js │ │ ├── dttds01.js │ │ ├── dttts01.js │ │ ├── dtutc01.js │ │ └── rsources │ ├── dattypes │ │ ├── bastyp01.js │ │ ├── bastyp02.js │ │ ├── boolean2types.js │ │ ├── char2types.js │ │ ├── coerce01.js │ │ ├── coerce02.js │ │ ├── coerce03.js │ │ ├── coerce04.js │ │ ├── datetype_regressions.js │ │ ├── decimal2types.js │ │ ├── double2types.js │ │ ├── empty2types.js │ │ ├── explicit01.js │ │ ├── explicitcov01.js │ │ ├── explicitcov02.js │ │ ├── explicitcov03.js │ │ ├── explicitcov04.js │ │ ├── explicitcov05.js │ │ ├── explicitcov06.js │ │ ├── explicitcov07.js │ │ ├── explicitcov08.js │ │ ├── explicitcov09.js │ │ ├── explicitcov10.js │ │ ├── explicitcov11.js │ │ ├── float2types.js │ │ ├── int2types.js │ │ ├── null01.js │ │ ├── rsources │ │ ├── str2types.js │ │ ├── typcon03.js │ │ ├── typcon07.js │ │ ├── typcon08.js │ │ ├── typcon09.js │ │ ├── typcon10.js │ │ ├── typcon13.js │ │ ├── typcon14.js │ │ ├── typcon15.js │ │ ├── typearr01.js │ │ ├── various2enum01.js │ │ ├── various2enum02.js │ │ ├── various2enum03.js │ │ └── various2enum04.js │ ├── hctrlflow │ │ ├── break003.js │ │ ├── break004.js │ │ ├── do201.js │ │ ├── for201.js │ │ ├── hardctrl01.js │ │ ├── hardctrl02.js │ │ ├── hardctrl03.js │ │ ├── hardctrl04.js │ │ ├── hardctrl05.js │ │ ├── hardctrl06.js │ │ ├── hardctrl07.js │ │ ├── hardctrl08.js │ │ ├── rsources │ │ └── with01.js │ ├── math │ │ ├── abs001.js │ │ ├── abs002.js │ │ ├── abs003.js │ │ ├── abs004.js │ │ ├── abs005.js │ │ ├── abs006.js │ │ ├── abs007.js │ │ ├── absh001.js │ │ ├── absh002.js │ │ ├── absh003.js │ │ ├── absh004.js │ │ ├── acos001.js │ │ ├── acos002.js │ │ ├── acos003.js │ │ ├── acos004.js │ │ ├── acos005.js │ │ ├── acos006.js │ │ ├── acosh001.js │ │ ├── acosh002.js │ │ ├── asin001.js │ │ ├── asin002.js │ │ ├── asin003.js │ │ ├── asin004.js │ │ ├── asin005.js │ │ ├── asin006.js │ │ ├── asinh001.js │ │ ├── asinh002.js │ │ ├── atan001.js │ │ ├── atan002.js │ │ ├── atan003.js │ │ ├── atan004.js │ │ ├── atan005.js │ │ ├── atan006.js │ │ ├── atan2001.js │ │ ├── atan2002.js │ │ ├── atan2h001.js │ │ ├── atan2h002.js │ │ ├── atanh001.js │ │ ├── atanh002.js │ │ ├── bitwisenot.js │ │ ├── ceil001.js │ │ ├── ceil002.js │ │ ├── ceil003.js │ │ ├── ceil004.js │ │ ├── ceil005.js │ │ ├── ceil006.js │ │ ├── ceil011.js │ │ ├── ceil012.js │ │ ├── ceil013.js │ │ ├── ceil014.js │ │ ├── ceil015.js │ │ ├── ceil016.js │ │ ├── ceil101.js │ │ ├── ceil102.js │ │ ├── ceil103.js │ │ ├── ceil104.js │ │ ├── ceil105.js │ │ ├── ceil106.js │ │ ├── ceil107.js │ │ ├── ceilh001.js │ │ ├── ceilh002.js │ │ ├── cos001.js │ │ ├── cos002.js │ │ ├── cos003.js │ │ ├── cos004.js │ │ ├── cos005.js │ │ ├── cos006.js │ │ ├── cosh001.js │ │ ├── cosh002.js │ │ ├── cstmod01.js │ │ ├── exp001.js │ │ ├── exp002.js │ │ ├── exp003.js │ │ ├── exp004.js │ │ ├── exp005.js │ │ ├── exp006.js │ │ ├── exph001.js │ │ ├── exph002.js │ │ ├── floor001.js │ │ ├── floor002.js │ │ ├── floor003.js │ │ ├── floor004.js │ │ ├── floor005.js │ │ ├── floor006.js │ │ ├── floor011.js │ │ ├── floor012.js │ │ ├── floor013.js │ │ ├── floor014.js │ │ ├── floor015.js │ │ ├── floor016.js │ │ ├── floor101.js │ │ ├── floor102.js │ │ ├── floor103.js │ │ ├── floor104.js │ │ ├── floor105.js │ │ ├── floor106.js │ │ ├── floor107.js │ │ ├── floorh001.js │ │ ├── floorh002.js │ │ ├── log001.js │ │ ├── log002.js │ │ ├── log003.js │ │ ├── log004.js │ │ ├── log005.js │ │ ├── log006.js │ │ ├── logh001.js │ │ ├── logh002.js │ │ ├── max001.js │ │ ├── max002.js │ │ ├── max003.js │ │ ├── max004.js │ │ ├── max005.js │ │ ├── max006.js │ │ ├── max011.js │ │ ├── max012.js │ │ ├── max013.js │ │ ├── max014.js │ │ ├── max015.js │ │ ├── max101.js │ │ ├── maxh001.js │ │ ├── min001.js │ │ ├── min002.js │ │ ├── min003.js │ │ ├── min004.js │ │ ├── min005.js │ │ ├── min006.js │ │ ├── min011.js │ │ ├── min012.js │ │ ├── min013.js │ │ ├── min014.js │ │ ├── min015.js │ │ ├── min101.js │ │ ├── minh001.js │ │ ├── pow001.js │ │ ├── pow002.js │ │ ├── pow003.js │ │ ├── pow004.js │ │ ├── pow005.js │ │ ├── pow011.js │ │ ├── pow012.js │ │ ├── pow013.js │ │ ├── pow014.js │ │ ├── pow015.js │ │ ├── pow016.js │ │ ├── powh001.js │ │ ├── powh002.js │ │ ├── props001.js │ │ ├── rand001.js │ │ ├── round001.js │ │ ├── round002.js │ │ ├── round003.js │ │ ├── round004.js │ │ ├── round005.js │ │ ├── round006.js │ │ ├── round011.js │ │ ├── round012.js │ │ ├── round013.js │ │ ├── round014.js │ │ ├── round015.js │ │ ├── round016.js │ │ ├── round101.js │ │ ├── round102.js │ │ ├── round103.js │ │ ├── round104.js │ │ ├── round105.js │ │ ├── round106.js │ │ ├── round107.js │ │ ├── roundh001.js │ │ ├── roundh002.js │ │ ├── rsources │ │ ├── sin001.js │ │ ├── sin002.js │ │ ├── sin003.js │ │ ├── sin004.js │ │ ├── sin005.js │ │ ├── sin006.js │ │ ├── sinh001.js │ │ ├── sinh002.js │ │ ├── sqrt001.js │ │ ├── sqrt002.js │ │ ├── sqrt003.js │ │ ├── sqrt004.js │ │ ├── sqrt005.js │ │ ├── sqrt006.js │ │ ├── sqrth001.js │ │ ├── sqrth002.js │ │ ├── tan001.js │ │ ├── tan002.js │ │ ├── tan003.js │ │ ├── tan004.js │ │ ├── tan005.js │ │ ├── tan006.js │ │ ├── tanh001.js │ │ └── tanh002.js │ ├── objmodel │ │ ├── apply01.js │ │ ├── arg001.js │ │ ├── arg002.js │ │ ├── arg003.js │ │ ├── arjoin01.js │ │ ├── arjoin02.js │ │ ├── arjoin03.js │ │ ├── arjoin04.js │ │ ├── arjoin05.js │ │ ├── arlen001.js │ │ ├── array001.js │ │ ├── array002.js │ │ ├── array003.js │ │ ├── array004.js │ │ ├── array005.js │ │ ├── arsort004.js │ │ ├── arsort01.js │ │ ├── arsort02.js │ │ ├── arsort03.js │ │ ├── bool001.js │ │ ├── call01.js │ │ ├── callee01.js │ │ ├── callee02.js │ │ ├── caller02.js │ │ ├── cc_blank.js │ │ ├── del001.js │ │ ├── fnmems01.js │ │ ├── funcobj1.js │ │ ├── length01.js │ │ ├── length02.js │ │ ├── length03.js │ │ ├── number01.js │ │ ├── number02.js │ │ ├── object01.js │ │ ├── object02.js │ │ ├── object03.js │ │ ├── object04.js │ │ ├── object05.js │ │ ├── parray01.js │ │ ├── proto001.js │ │ ├── proto002.js │ │ ├── proto003.js │ │ ├── proto004.js │ │ ├── proto005.js │ │ ├── proto006.js │ │ ├── proto008.js │ │ ├── proto009.js │ │ ├── proto010.js │ │ ├── proto011.js │ │ ├── psflt001.js │ │ ├── psflt002.js │ │ ├── psflt003.js │ │ ├── psflt004.js │ │ ├── psflt005.js │ │ ├── psflt006.js │ │ ├── psflt007.js │ │ ├── psflt01a.js │ │ ├── psflt01b.js │ │ ├── psflt101.js │ │ ├── rsources │ │ ├── string01.js │ │ ├── string011.js │ │ └── usrdef01.js │ ├── operator │ │ ├── and001.js │ │ ├── asgn01.js │ │ ├── asgnadd01.js │ │ ├── asgnadd02.js │ │ ├── asgnand01.js │ │ ├── asgnand02.js │ │ ├── asgndiv01.js │ │ ├── asgndiv02.js │ │ ├── asgnmod01.js │ │ ├── asgnmod02.js │ │ ├── asgnmult01.js │ │ ├── asgnmult02.js │ │ ├── asgnor01.js │ │ ├── asgnor02.js │ │ ├── asgnsub01.js │ │ ├── asgnsub02.js │ │ ├── asgnxor02.js │ │ ├── band01.js │ │ ├── band02.js │ │ ├── bcmp01.js │ │ ├── bnot01.js │ │ ├── bor01.js │ │ ├── bor02.js │ │ ├── bxor01.js │ │ ├── bxor02.js │ │ ├── comma001.js │ │ ├── divi01.js │ │ ├── divi02.js │ │ ├── divi03.js │ │ ├── equ001.js │ │ ├── equ002.js │ │ ├── equ003.js │ │ ├── in01.js │ │ ├── instanceof01.js │ │ ├── logicalop01.js │ │ ├── minu01.js │ │ ├── minu02.js │ │ ├── minu03.js │ │ ├── minu04.js │ │ ├── mod001.js │ │ ├── mod002.js │ │ ├── mult01.js │ │ ├── mult02.js │ │ ├── mult03.js │ │ ├── not001.js │ │ ├── not002.js │ │ ├── oper001.js │ │ ├── oper002.js │ │ ├── oper003.js │ │ ├── oper004.js │ │ ├── oper005.js │ │ ├── oper006.js │ │ ├── oper007.js │ │ ├── oper008.js │ │ ├── oper009.js │ │ ├── oper010.js │ │ ├── oper011.js │ │ ├── oper012.js │ │ ├── or001.js │ │ ├── plus01.js │ │ ├── plus02.js │ │ ├── plus03.js │ │ ├── plus04.js │ │ ├── postpp01.js │ │ ├── prepp001.js │ │ ├── rsources │ │ ├── shiftr01.js │ │ ├── strop01.js │ │ ├── strop02.js │ │ ├── strop03.js │ │ ├── strop04.js │ │ ├── strop05.js │ │ ├── strop06.js │ │ ├── strop07.js │ │ ├── strop08.js │ │ ├── tripeq01.js │ │ ├── tripeq02.js │ │ ├── tripeq03.js │ │ ├── uplus001.js │ │ └── ushiftr01.js │ ├── precedence │ │ ├── prcdnc01.js │ │ ├── prcdnc02.js │ │ ├── prcdnc03.js │ │ ├── prcdnc04.js │ │ ├── prcdnc05.js │ │ ├── prcdnc06.js │ │ └── rsources │ ├── rdirs │ ├── regexp │ │ ├── regex000.js │ │ ├── regex001.js │ │ ├── regex013.js │ │ ├── regex014.js │ │ ├── regex015.js │ │ ├── regex016.js │ │ ├── regex017.js │ │ ├── regexp01.js │ │ ├── regexp02sec.js │ │ ├── rep_01.js │ │ ├── rep_011.js │ │ ├── rep_0121.js │ │ ├── rep_0122.js │ │ ├── rep_0123.js │ │ ├── rep_0131.js │ │ ├── rep_0132.js │ │ ├── rep_0133.js │ │ ├── rep_0134.js │ │ ├── rep_0135.js │ │ ├── rep_0136.js │ │ ├── rep_014.js │ │ ├── rep_015.js │ │ ├── rep_016.js │ │ ├── rep_0170.js │ │ ├── rep_0171.js │ │ ├── rep_018.js │ │ ├── rep_019.js │ │ ├── rep_03.js │ │ ├── rep_034.js │ │ ├── rep_035.js │ │ ├── rep_036.js │ │ ├── rep_0370.js │ │ ├── rep_0371.js │ │ ├── rep_038.js │ │ ├── rep_039.js │ │ ├── rep_11.js │ │ ├── rep_111.js │ │ ├── rep_1121.js │ │ ├── rep_1122.js │ │ ├── rep_1123.js │ │ ├── rep_1131.js │ │ ├── rep_1132.js │ │ ├── rep_1133.js │ │ ├── rep_1134.js │ │ ├── rep_1135.js │ │ ├── rep_1136.js │ │ ├── rep_114.js │ │ ├── rep_115.js │ │ ├── rep_116.js │ │ ├── rep_1170.js │ │ ├── rep_1171.js │ │ ├── rep_118.js │ │ ├── rep_119.js │ │ ├── rep_124.js │ │ ├── rep_128.js │ │ ├── rep_236.js │ │ ├── rep_311.js │ │ ├── rep_32.js │ │ ├── rep_33.js │ │ ├── rep_331.js │ │ ├── repa01.js │ │ ├── repa011.js │ │ ├── repa0121.js │ │ ├── repa0122.js │ │ ├── repa0123.js │ │ ├── repa0131.js │ │ ├── repa0132.js │ │ ├── repa0133.js │ │ ├── repa0134.js │ │ ├── repa0135.js │ │ ├── repa0136.js │ │ ├── repa014.js │ │ ├── repa015.js │ │ ├── repa0170.js │ │ ├── repa0171.js │ │ ├── repa018.js │ │ ├── repa019.js │ │ ├── repa03.js │ │ ├── repa034.js │ │ ├── repa035.js │ │ ├── repa0370.js │ │ ├── repa0371.js │ │ ├── repa038.js │ │ ├── repa039.js │ │ ├── repa11.js │ │ ├── repa111.js │ │ ├── repa1121.js │ │ ├── repa1122.js │ │ ├── repa1123.js │ │ ├── repa1131.js │ │ ├── repa1132.js │ │ ├── repa1133.js │ │ ├── repa1134.js │ │ ├── repa1135.js │ │ ├── repa1136.js │ │ ├── repa114.js │ │ ├── repa115.js │ │ ├── repa1170.js │ │ ├── repa1171.js │ │ ├── repa118.js │ │ ├── repa128.js │ │ ├── repa311.js │ │ ├── repa32.js │ │ ├── repa32b.js │ │ ├── repa33.js │ │ ├── repa33b.js │ │ ├── rsources │ │ ├── rxp_01.js │ │ ├── rxp_011.js │ │ ├── rxp_0121.js │ │ ├── rxp_0122.js │ │ ├── rxp_0123.js │ │ ├── rxp_0131.js │ │ ├── rxp_0132.js │ │ ├── rxp_0133.js │ │ ├── rxp_0134.js │ │ ├── rxp_0135.js │ │ ├── rxp_0136.js │ │ ├── rxp_014.js │ │ ├── rxp_015.js │ │ ├── rxp_016.js │ │ ├── rxp_0170.js │ │ ├── rxp_0171.js │ │ ├── rxp_018.js │ │ ├── rxp_019.js │ │ ├── rxp_02.js │ │ ├── rxp_024.js │ │ ├── rxp_025.js │ │ ├── rxp_026.js │ │ ├── rxp_0270.js │ │ ├── rxp_0271.js │ │ ├── rxp_028.js │ │ ├── rxp_029.js │ │ ├── rxp_03.js │ │ ├── rxp_031.js │ │ ├── rxp_034.js │ │ ├── rxp_035.js │ │ ├── rxp_036.js │ │ ├── rxp_0370.js │ │ ├── rxp_0371.js │ │ ├── rxp_038.js │ │ ├── rxp_039.js │ │ ├── rxp_11.js │ │ ├── rxp_111.js │ │ ├── rxp_1121.js │ │ ├── rxp_1122.js │ │ ├── rxp_1123.js │ │ ├── rxp_1131.js │ │ ├── rxp_1132.js │ │ ├── rxp_1133.js │ │ ├── rxp_1134.js │ │ ├── rxp_1135.js │ │ ├── rxp_1136.js │ │ ├── rxp_114.js │ │ ├── rxp_115.js │ │ ├── rxp_116.js │ │ ├── rxp_1170.js │ │ ├── rxp_1171.js │ │ ├── rxp_118.js │ │ ├── rxp_119.js │ │ ├── rxp_124.js │ │ ├── rxp_128.js │ │ ├── rxp_23.js │ │ ├── rxp_236.js │ │ ├── rxp_32.js │ │ ├── rxp_33.js │ │ ├── rxp_341.js │ │ ├── rxp_342.js │ │ ├── rxpa014.js │ │ ├── rxpa0171.js │ │ ├── rxpa024.js │ │ ├── rxpa0271.js │ │ ├── rxpa034.js │ │ ├── rxpa0371.js │ │ ├── rxpa114.js │ │ ├── rxpa1171.js │ │ ├── spt_01.js │ │ ├── spt_011.js │ │ ├── spt_0131.js │ │ ├── spt_0132.js │ │ ├── spt_0133.js │ │ ├── spt_0134.js │ │ ├── spt_0135.js │ │ ├── spt_0136.js │ │ ├── spt_014.js │ │ ├── spt_015.js │ │ ├── spt_015b.js │ │ ├── spt_016.js │ │ ├── spt_031.js │ │ ├── spt_036.js │ │ ├── spt_111.js │ │ ├── spt_1131.js │ │ ├── spt_1132.js │ │ ├── spt_1133.js │ │ ├── spt_1134.js │ │ ├── spt_1135.js │ │ ├── spt_1136.js │ │ ├── spt_1141.js │ │ ├── spt_116.js │ │ ├── spt_226.js │ │ ├── spt_236.js │ │ ├── spt_31.js │ │ ├── spt_341.js │ │ ├── spt_342.js │ │ ├── spta01.js │ │ ├── spta011.js │ │ ├── spta0131.js │ │ ├── spta0132.js │ │ ├── spta0133.js │ │ ├── spta0134.js │ │ ├── spta0135.js │ │ ├── spta0136.js │ │ ├── spta0159.js │ │ ├── spta0188.js │ │ ├── spta31.js │ │ ├── src_01.js │ │ ├── src_011.js │ │ ├── src_0121.js │ │ ├── src_0122.js │ │ ├── src_0123.js │ │ ├── src_0131.js │ │ ├── src_0132.js │ │ ├── src_0133.js │ │ ├── src_0134.js │ │ ├── src_0135.js │ │ ├── src_0136.js │ │ ├── src_014.js │ │ ├── src_015.js │ │ ├── src_016.js │ │ ├── src_0170.js │ │ ├── src_0171.js │ │ ├── src_0171b.js │ │ ├── src_018.js │ │ ├── src_019.js │ │ ├── src_02.js │ │ ├── src_024.js │ │ ├── src_025.js │ │ ├── src_026.js │ │ ├── src_0270.js │ │ ├── src_0271.js │ │ ├── src_0271b.js │ │ ├── src_028.js │ │ ├── src_029.js │ │ ├── src_03.js │ │ ├── src_034.js │ │ ├── src_035.js │ │ ├── src_036.js │ │ ├── src_038.js │ │ ├── src_039.js │ │ ├── src_21.js │ │ ├── src_214.js │ │ ├── src_215.js │ │ ├── src_216.js │ │ ├── src_2170.js │ │ ├── src_2171.js │ │ ├── src_2171b.js │ │ ├── src_219.js │ │ ├── src_22.js │ │ ├── src_225.js │ │ ├── src_226.js │ │ ├── src_2270.js │ │ ├── src_2271.js │ │ ├── src_229.js │ │ ├── src_31.js │ │ ├── src_32.js │ │ ├── src_33.js │ │ ├── src_341.js │ │ ├── src_342.js │ │ ├── srca01.js │ │ ├── srca011.js │ │ ├── srca0121.js │ │ ├── srca0122.js │ │ ├── srca0123.js │ │ ├── srca0131.js │ │ ├── srca0132.js │ │ ├── srca0133.js │ │ ├── srca0134.js │ │ ├── srca0135.js │ │ ├── srca0136.js │ │ ├── srca014.js │ │ ├── srca0170.js │ │ ├── srca0171.js │ │ ├── srca02.js │ │ ├── srca024.js │ │ ├── srca0270.js │ │ ├── srca0271.js │ │ ├── srca03.js │ │ ├── srca034.js │ │ ├── srca21.js │ │ ├── srca2170.js │ │ ├── srca2171.js │ │ ├── srca22.js │ │ ├── srca225.js │ │ ├── srca2270.js │ │ ├── srca2270b.js │ │ ├── srca2271.js │ │ ├── srca229.js │ │ ├── srca31.js │ │ ├── srca32.js │ │ ├── srca33.js │ │ ├── srcb0171.js │ │ ├── srcb0173.js │ │ ├── srcb0175.js │ │ ├── srcb0177.js │ │ ├── srcb0179.js │ │ ├── srcb0271.js │ │ ├── srcb0273.js │ │ ├── srcb0275.js │ │ ├── srcb0277.js │ │ ├── srcb0279.js │ │ ├── srcb2271.js │ │ ├── srcb2275.js │ │ ├── srcc2271.js │ │ ├── srcc2275.js │ │ ├── srcd2271.js │ │ └── srcd2275.js │ ├── strings │ │ ├── charat01.js │ │ ├── charcd01.js │ │ ├── charcd02.js │ │ ├── exea01.js │ │ ├── exea011.js │ │ ├── exea0121.js │ │ ├── exea0122.js │ │ ├── exea0123.js │ │ ├── exea0131.js │ │ ├── exea0132.js │ │ ├── exea014.js │ │ ├── exea0170.js │ │ ├── exea0171.js │ │ ├── exea0171b.js │ │ ├── exea02.js │ │ ├── exea021.js │ │ ├── exea0221.js │ │ ├── exea0222.js │ │ ├── exea0223.js │ │ ├── exea0231.js │ │ ├── exea024.js │ │ ├── exea0270.js │ │ ├── exea0271.js │ │ ├── exea0271b.js │ │ ├── exea03.js │ │ ├── exea031.js │ │ ├── exea0321.js │ │ ├── exea034.js │ │ ├── exea111.js │ │ ├── exea114.js │ │ ├── exea1141.js │ │ ├── exea1170.js │ │ ├── exea1171.js │ │ ├── exea1171b.js │ │ ├── exea154.js │ │ ├── exea21.js │ │ ├── exea2170.js │ │ ├── exea2171.js │ │ ├── exea2171b.js │ │ ├── exea22.js │ │ ├── exea225.js │ │ ├── exea2270.js │ │ ├── exea2285.js │ │ ├── exea229.js │ │ ├── exea23.js │ │ ├── exea2385.js │ │ ├── exea2387.js │ │ ├── exea31.js │ │ ├── exea32.js │ │ ├── exea33.js │ │ ├── exeb2271.js │ │ ├── exec01.js │ │ ├── exec011.js │ │ ├── exec0121.js │ │ ├── exec0122.js │ │ ├── exec0123.js │ │ ├── exec0131.js │ │ ├── exec0132.js │ │ ├── exec0134.js │ │ ├── exec0135.js │ │ ├── exec0136.js │ │ ├── exec014.js │ │ ├── exec015.js │ │ ├── exec016.js │ │ ├── exec0170.js │ │ ├── exec0171.js │ │ ├── exec0171b.js │ │ ├── exec018.js │ │ ├── exec019.js │ │ ├── exec02.js │ │ ├── exec021.js │ │ ├── exec024.js │ │ ├── exec025.js │ │ ├── exec026.js │ │ ├── exec0270.js │ │ ├── exec0271.js │ │ ├── exec0271b.js │ │ ├── exec028.js │ │ ├── exec029.js │ │ ├── exec03.js │ │ ├── exec031.js │ │ ├── exec034.js │ │ ├── exec035.js │ │ ├── exec036.js │ │ ├── exec038.js │ │ ├── exec039.js │ │ ├── exec11.js │ │ ├── exec114.js │ │ ├── exec115.js │ │ ├── exec116.js │ │ ├── exec1170.js │ │ ├── exec1171.js │ │ ├── exec1171b.js │ │ ├── exec118.js │ │ ├── exec119.js │ │ ├── exec154.js │ │ ├── exec21.js │ │ ├── exec214.js │ │ ├── exec215.js │ │ ├── exec216.js │ │ ├── exec2170.js │ │ ├── exec2171.js │ │ ├── exec2171b.js │ │ ├── exec219.js │ │ ├── exec22.js │ │ ├── exec226.js │ │ ├── exec2270.js │ │ ├── exec2285.js │ │ ├── exec229.js │ │ ├── exec23.js │ │ ├── exec235.js │ │ ├── exec235b.js │ │ ├── exec236.js │ │ ├── exec238.js │ │ ├── exec2387.js │ │ ├── exec238b.js │ │ ├── exec239.js │ │ ├── exec239b.js │ │ ├── exec31.js │ │ ├── exec32.js │ │ ├── exec33.js │ │ ├── exec341.js │ │ ├── exec342.js │ │ ├── exed2271.js │ │ ├── exee2271.js │ │ ├── indxf03.js │ │ ├── indxf06.js │ │ ├── indxf07.js │ │ ├── indxf08.js │ │ ├── indxf12.js │ │ ├── indxf13.js │ │ ├── indxf19.js │ │ ├── lcase03.js │ │ ├── lcase06.js │ │ ├── lcase07.js │ │ ├── lcase08.js │ │ ├── lcase09.js │ │ ├── lcase10.js │ │ ├── len0002.js │ │ ├── len0004.js │ │ ├── len0006.js │ │ ├── len0007.js │ │ ├── lstnd02.js │ │ ├── lstnd03.js │ │ ├── lstnd06.js │ │ ├── lstnd07.js │ │ ├── lstnd08.js │ │ ├── lstnd12.js │ │ ├── lstnd13.js │ │ ├── lstnd19.js │ │ ├── mtc_01.js │ │ ├── mtc_011.js │ │ ├── mtc_0121.js │ │ ├── mtc_0122.js │ │ ├── mtc_0123.js │ │ ├── mtc_0131.js │ │ ├── mtc_0132.js │ │ ├── mtc_0133.js │ │ ├── mtc_0134.js │ │ ├── mtc_0135.js │ │ ├── mtc_0136.js │ │ ├── mtc_014.js │ │ ├── mtc_015.js │ │ ├── mtc_016.js │ │ ├── mtc_0170.js │ │ ├── mtc_0171.js │ │ ├── mtc_018.js │ │ ├── mtc_019.js │ │ ├── mtc_02.js │ │ ├── mtc_024.js │ │ ├── mtc_025.js │ │ ├── mtc_026.js │ │ ├── mtc_0270.js │ │ ├── mtc_0271.js │ │ ├── mtc_028.js │ │ ├── mtc_029.js │ │ ├── mtc_03.js │ │ ├── mtc_034.js │ │ ├── mtc_035.js │ │ ├── mtc_036.js │ │ ├── mtc_0370.js │ │ ├── mtc_0371.js │ │ ├── mtc_038.js │ │ ├── mtc_039.js │ │ ├── mtc_128.js │ │ ├── mtc_1281.js │ │ ├── mtc_1282.js │ │ ├── mtc_1283.js │ │ ├── mtc_1284.js │ │ ├── mtc_21.js │ │ ├── mtc_214.js │ │ ├── mtc_215.js │ │ ├── mtc_216.js │ │ ├── mtc_2170.js │ │ ├── mtc_2171.js │ │ ├── mtc_2185.js │ │ ├── mtc_2185b.js │ │ ├── mtc_2186.js │ │ ├── mtc_2187.js │ │ ├── mtc_219.js │ │ ├── mtc_22.js │ │ ├── mtc_225.js │ │ ├── mtc_226.js │ │ ├── mtc_2270.js │ │ ├── mtc_2271.js │ │ ├── mtc_2285.js │ │ ├── mtc_2287.js │ │ ├── mtc_23.js │ │ ├── mtc_235.js │ │ ├── mtc_236.js │ │ ├── mtc_311.js │ │ ├── mtc_32.js │ │ ├── mtc_33.js │ │ ├── mtc_341.js │ │ ├── mtc_342.js │ │ ├── mtca01.js │ │ ├── mtca011.js │ │ ├── mtca0121.js │ │ ├── mtca0122.js │ │ ├── mtca0123.js │ │ ├── mtca0131.js │ │ ├── mtca0133.js │ │ ├── mtca0134.js │ │ ├── mtca0135.js │ │ ├── mtca0136.js │ │ ├── mtca014.js │ │ ├── mtca0170.js │ │ ├── mtca0171.js │ │ ├── mtca0171b.js │ │ ├── mtca02.js │ │ ├── mtca024.js │ │ ├── mtca0270.js │ │ ├── mtca0271.js │ │ ├── mtca0271b.js │ │ ├── mtca03.js │ │ ├── mtca031.js │ │ ├── mtca034.js │ │ ├── mtca0370.js │ │ ├── mtca0371.js │ │ ├── mtca0371b.js │ │ ├── mtca21.js │ │ ├── mtca2170.js │ │ ├── mtca2171.js │ │ ├── mtca2171b.js │ │ ├── mtca22.js │ │ ├── mtca225.js │ │ ├── mtca2270.js │ │ ├── mtca2271.js │ │ ├── mtca2285.js │ │ ├── mtca2287.js │ │ ├── mtca23.js │ │ ├── mtca311.js │ │ ├── mtca32.js │ │ ├── mtca33.js │ │ ├── mtcb2271.js │ │ ├── mtcc2271.js │ │ ├── rsources │ │ ├── split001.js │ │ ├── strcha01.js │ │ ├── strcon01.js │ │ ├── strcon02sec.js │ │ ├── string02.js │ │ ├── string03.js │ │ ├── string04.js │ │ ├── string05.js │ │ ├── string06.js │ │ ├── string07.js │ │ ├── string08.js │ │ ├── string09.js │ │ ├── string10.js │ │ ├── string11.js │ │ ├── string12.js │ │ ├── string13.js │ │ ├── string14.js │ │ ├── string15.js │ │ ├── string16.js │ │ ├── string17.js │ │ ├── stringsec01.js │ │ ├── strino01.js │ │ ├── strino02.js │ │ ├── strlio01.js │ │ ├── strlio02.js │ │ ├── strlio03.js │ │ ├── strloc01.js │ │ ├── strmat01.js │ │ ├── strmat02sec.js │ │ ├── strrpl01.js │ │ ├── strrpl02.js │ │ ├── strrpl03.js │ │ ├── strrpl04sec.js │ │ ├── strslc01.js │ │ ├── strspl01.js │ │ ├── strspl02sec.js │ │ ├── strsrc01.js │ │ ├── strsrc02sec.js │ │ ├── strsub01.js │ │ ├── subst01.js │ │ ├── subst02.js │ │ ├── subst03.js │ │ ├── subst04.js │ │ ├── tolst200.js │ │ ├── tolst201.js │ │ ├── tolst202.js │ │ ├── tolst203.js │ │ ├── tolst205.js │ │ ├── tolst206.js │ │ ├── tolst207.js │ │ ├── tolst300.js │ │ ├── tolst301.js │ │ ├── tolst302.js │ │ ├── tolst303.js │ │ ├── tolst304.js │ │ ├── tolst305.js │ │ ├── tolst306.js │ │ ├── tolst307.js │ │ ├── tst_01.js │ │ ├── tst_011.js │ │ ├── tst_0121.js │ │ ├── tst_0122.js │ │ ├── tst_0123.js │ │ ├── tst_0131.js │ │ ├── tst_0132.js │ │ ├── tst_0133.js │ │ ├── tst_0134.js │ │ ├── tst_0135.js │ │ ├── tst_0136.js │ │ ├── tst_014.js │ │ ├── tst_015.js │ │ ├── tst_016.js │ │ ├── tst_0170.js │ │ ├── tst_0171.js │ │ ├── tst_018.js │ │ ├── tst_019.js │ │ ├── tst_02.js │ │ ├── tst_024.js │ │ ├── tst_025.js │ │ ├── tst_026.js │ │ ├── tst_0270.js │ │ ├── tst_0271.js │ │ ├── tst_028.js │ │ ├── tst_029.js │ │ ├── tst_03.js │ │ ├── tst_034.js │ │ ├── tst_035.js │ │ ├── tst_036.js │ │ ├── tst_038.js │ │ ├── tst_039.js │ │ ├── tst_11.js │ │ ├── tst_111.js │ │ ├── tst_1121.js │ │ ├── tst_1131.js │ │ ├── tst_114.js │ │ ├── tst_1141.js │ │ ├── tst_1142.js │ │ ├── tst_1143.js │ │ ├── tst_1145.js │ │ ├── tst_1146.js │ │ ├── tst_1147.js │ │ ├── tst_1148.js │ │ ├── tst_1149.js │ │ ├── tst_115.js │ │ ├── tst_1170.js │ │ ├── tst_1171.js │ │ ├── tst_118.js │ │ ├── tst_119.js │ │ ├── tst_11b.js │ │ ├── tst_154.js │ │ ├── tst_21.js │ │ ├── tst_214.js │ │ ├── tst_215.js │ │ ├── tst_216.js │ │ ├── tst_2170.js │ │ ├── tst_2171.js │ │ ├── tst_219.js │ │ ├── tst_2195.js │ │ ├── tst_22.js │ │ ├── tst_225.js │ │ ├── tst_226.js │ │ ├── tst_2270.js │ │ ├── tst_2271.js │ │ ├── tst_229.js │ │ ├── tst_23.js │ │ ├── tst_235.js │ │ ├── tst_236.js │ │ ├── tst_238.js │ │ ├── tst_239.js │ │ ├── tst_31.js │ │ ├── tst_32.js │ │ ├── tst_33.js │ │ ├── tst_341.js │ │ ├── tst_342.js │ │ ├── tsta01.js │ │ ├── tsta011.js │ │ ├── tsta0121.js │ │ ├── tsta0122.js │ │ ├── tsta0123.js │ │ ├── tsta0131.js │ │ ├── tsta0132.js │ │ ├── tsta0133.js │ │ ├── tsta0134.js │ │ ├── tsta0135.js │ │ ├── tsta0136.js │ │ ├── tsta014.js │ │ ├── tsta0170.js │ │ ├── tsta0171.js │ │ ├── tsta0171b.js │ │ ├── tsta02.js │ │ ├── tsta024.js │ │ ├── tsta0270.js │ │ ├── tsta0271.js │ │ ├── tsta0271b.js │ │ ├── tsta03.js │ │ ├── tsta034.js │ │ ├── tsta114.js │ │ ├── tsta1170.js │ │ ├── tsta1171.js │ │ ├── tsta1171b.js │ │ ├── tsta154.js │ │ ├── tsta21.js │ │ ├── tsta2170.js │ │ ├── tsta2171.js │ │ ├── tsta22.js │ │ ├── tsta225.js │ │ ├── tsta2270.js │ │ ├── tsta2271.js │ │ ├── tsta2271b.js │ │ ├── tsta2285.js │ │ ├── tsta229.js │ │ ├── tsta23.js │ │ ├── tsta31.js │ │ ├── tsta32.js │ │ ├── tsta33.js │ │ ├── tstb2271.js │ │ ├── tstb2275.js │ │ ├── tstc2271.js │ │ ├── tstc2275.js │ │ ├── ucase01.js │ │ ├── ucase02.js │ │ ├── ucase03.js │ │ ├── ucase04.js │ │ ├── ucase05.js │ │ ├── ucase06.js │ │ ├── ucase07.js │ │ ├── ucase08.js │ │ ├── ucase09.js │ │ └── ucase10.js │ ├── trycatch │ │ ├── finally01.js │ │ ├── finally02.js │ │ ├── rsources │ │ ├── tcatch01.js │ │ ├── tcatch02.js │ │ ├── tcatch03.js │ │ ├── tcatch04.js │ │ ├── tcatch05.js │ │ ├── tcatch05a.js │ │ ├── tcatch06.js │ │ └── tcatch07.js │ ├── typeannotation │ │ ├── rsources │ │ ├── typann01.js │ │ ├── typann02.js │ │ ├── typann03.js │ │ ├── typann04.js │ │ ├── typann06.js │ │ ├── typann07.js │ │ ├── typann08.js │ │ ├── typann10.js │ │ ├── typann11.js │ │ ├── typann12.js │ │ ├── typann13.js │ │ ├── typann14.js │ │ ├── typann15.js │ │ ├── typann16.js │ │ ├── typann17.js │ │ ├── typann18.js │ │ ├── typann19.js │ │ ├── typann20.js │ │ ├── typann21.js │ │ ├── typann22.js │ │ ├── typann23.js │ │ ├── typann24.js │ │ ├── typann25.js │ │ ├── typann26.js │ │ ├── typann27.js │ │ └── typann28.js │ └── unicode │ │ ├── rsources │ │ ├── unicod01.js │ │ ├── unicod02.js │ │ ├── unicod03.js │ │ ├── unicod04.js │ │ ├── unicod05.js │ │ ├── unicod06.js │ │ ├── unicod07.js │ │ ├── unicod08.js │ │ ├── unicod09.js │ │ └── unicod10.js ├── palsuite │ ├── c_runtime │ │ ├── __iscsym │ │ │ └── test1 │ │ │ │ ├── __iscsym.c │ │ │ │ └── testinfo.dat │ │ ├── _alloca │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _ecvt │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _fdopen │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _finite │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _fullpath │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _gcvt │ │ │ ├── test1 │ │ │ │ ├── _gcvt.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── _getw │ │ │ └── test1 │ │ │ │ ├── test.dat │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _isnan │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _itow │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _makepath │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _mbsdec │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _mbsinc │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _mbslen │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _mbsninc │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _open_osfhandle │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── _putenv │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── _putw │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _rotl │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _rotr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _snprintf │ │ │ ├── _snprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── _snwprintf │ │ │ ├── _snwprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── _splitpath │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _stricmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _strlwr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _strnicmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _swab │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _vsnprintf │ │ │ ├── _vsnprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── _vsnwprintf │ │ │ ├── _vsnwprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── _wcsicmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _wcslwr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _wcsnicmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _wfopen │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── _wmakepath │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _wsplitpath │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _wtoi │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── abs │ │ │ └── test1 │ │ │ │ ├── abs.c │ │ │ │ └── testinfo.dat │ │ ├── acos │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── asin │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── atan │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── atan2 │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── atof │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── atoi │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── atol │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── bsearch │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── ceil │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── cos │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── cosh │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── ctime │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── errno │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── exit │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── exp │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── fabs │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── fclose │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── feof │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ ├── ferror │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ ├── fflush │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── fgets │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── floor │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── fmod │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── fopen │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── fprintf │ │ │ ├── fprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── fputs │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── fread │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ ├── testfile │ │ │ │ └── testinfo.dat │ │ ├── free │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── fseek │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── ftell │ │ │ └── test1 │ │ │ │ ├── ftell.c │ │ │ │ ├── testfile.txt │ │ │ │ └── testinfo.dat │ │ ├── fwprintf │ │ │ ├── fwprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── fwrite │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getc │ │ │ └── test1 │ │ │ │ ├── getc.c │ │ │ │ └── testinfo.dat │ │ ├── getenv │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── isalnum │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isalpha │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isdigit │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── islower │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isprint │ │ │ ├── test1 │ │ │ │ ├── isprint.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── isspace │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isupper │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── iswdigit │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── iswprint │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── iswspace │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── iswupper │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── iswxdigit │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isxdigit │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── labs │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── localtime │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── log │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── log10 │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── malloc │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── memchr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── memcmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── memcpy │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── memmove │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── memset │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── modf │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── pow │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── printf │ │ │ ├── printf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── qsort │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── rand_srand │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── realloc │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── sin │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── sinh │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── sprintf │ │ │ ├── sprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── sqrt │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── sscanf │ │ │ ├── sscanf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── strcat │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strchr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strcmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strcpy │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strcspn │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strlen │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strncat │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strncmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strncpy │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strpbrk │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strrchr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strspn │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strstr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strtod │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── strtok │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── strtoul │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── swprintf │ │ │ ├── swprintf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── swscanf │ │ │ ├── swscanf.h │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── tan │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── tanh │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── time │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── tolower │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── toupper │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── towlower │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── towupper │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── ungetc │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── ungetc.c │ │ │ └── test2 │ │ │ │ ├── test2.txt │ │ │ │ ├── testinfo.dat │ │ │ │ └── ungetc.c │ │ ├── vfprintf │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ ├── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ │ └── vfprintf.h │ │ ├── vprintf │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ ├── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ │ └── vprintf.h │ │ ├── vsprintf │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ ├── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ │ └── vsprintf.h │ │ ├── vswprintf │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test13.c │ │ │ │ └── testinfo.dat │ │ │ ├── test14 │ │ │ │ ├── test14.c │ │ │ │ └── testinfo.dat │ │ │ ├── test15 │ │ │ │ ├── test15.c │ │ │ │ └── testinfo.dat │ │ │ ├── test16 │ │ │ │ ├── test16.c │ │ │ │ └── testinfo.dat │ │ │ ├── test17 │ │ │ │ ├── test17.c │ │ │ │ └── testinfo.dat │ │ │ ├── test18 │ │ │ │ ├── test18.c │ │ │ │ └── testinfo.dat │ │ │ ├── test19 │ │ │ │ ├── test19.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ ├── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ │ └── vswprintf.h │ │ ├── wcscat │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcschr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcscmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcscpy │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcslen │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcsncat │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcsncmp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcsncpy │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcspbrk │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcsrchr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcsstr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcstod │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── wcstok │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wcstol │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ ├── wcstoul │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ └── wprintf │ │ │ ├── test1 │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ ├── test2.c │ │ │ └── testinfo.dat │ │ │ └── wprintf.h │ ├── common │ │ ├── pal_stdclib.h │ │ └── palsuite.h │ ├── conditional-fail.dat │ ├── debug_api │ │ ├── debugbreak │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── outputdebugstringa │ │ │ └── test1 │ │ │ │ ├── helper.c │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── outputdebugstringw │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ └── writeprocessmemory │ │ │ ├── test1 │ │ │ ├── commonconsts.h │ │ │ ├── helper.c │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ ├── commonconsts.h │ │ │ ├── helper.c │ │ │ ├── test3.c │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ ├── helper.c │ │ │ ├── test4.c │ │ │ └── testinfo.dat │ ├── exception_handling │ │ ├── pal_except │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── pal_except_filter │ │ │ ├── test1 │ │ │ │ ├── pal_except_filter.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── pal_except_filter.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── pal_except_filter.c │ │ │ │ └── testinfo.dat │ │ ├── pal_except_filter_ex │ │ │ ├── test1 │ │ │ │ ├── pal_except_filter_ex.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── pal_except_filter_ex.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── pal_except_filter.c │ │ │ │ └── testinfo.dat │ │ ├── pal_finally │ │ │ └── test1 │ │ │ │ ├── pal_finally.c │ │ │ │ └── testinfo.dat │ │ ├── pal_getbottommostregistration │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── pal_try_except │ │ │ ├── test1 │ │ │ │ ├── pal_try_except.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── pal_try_except.c │ │ │ │ └── testinfo.dat │ │ ├── pal_try_except_ex │ │ │ ├── test1 │ │ │ │ ├── pal_try_except_ex.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── pal_try_except_ex.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── pal_try_except_ex.c │ │ │ │ └── testinfo.dat │ │ ├── pal_try_leave_finally │ │ │ └── test1 │ │ │ │ ├── pal_try_leave_finally.c │ │ │ │ └── testinfo.dat │ │ ├── raiseexception │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ └── setunhandledexceptionfilter │ │ │ └── test1 │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ ├── file_io │ │ ├── arefileapisansi │ │ │ └── test1 │ │ │ │ ├── arefileapisansi.c │ │ │ │ └── testinfo.dat │ │ ├── comparefiletime │ │ │ └── test1 │ │ │ │ ├── comparefiletime.c │ │ │ │ └── testinfo.dat │ │ ├── copyfilea │ │ │ ├── test1 │ │ │ │ ├── copyfilea.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── copyfilew │ │ │ ├── test1 │ │ │ │ ├── copyfilew.c │ │ │ │ ├── expectedresults.txt │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── createdirectorya │ │ │ ├── test1 │ │ │ │ ├── createdirectorya.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── createdirectorya.c │ │ │ │ └── testinfo.dat │ │ ├── createdirectoryw │ │ │ ├── test1 │ │ │ │ ├── createdirectoryw.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── createdirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── createfilea │ │ │ └── test1 │ │ │ │ ├── createfilea.c │ │ │ │ ├── testinfo.dat │ │ │ │ └── winoutput │ │ ├── createfilew │ │ │ └── test1 │ │ │ │ ├── createfilew.c │ │ │ │ ├── testinfo.dat │ │ │ │ └── winoutput │ │ ├── deletefilea │ │ │ └── test1 │ │ │ │ ├── deletefilea.c │ │ │ │ └── testinfo.dat │ │ ├── deletefilew │ │ │ └── test1 │ │ │ │ ├── deletefilew.c │ │ │ │ └── testinfo.dat │ │ ├── dosdatetimetofiletime │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── errorpathnotfound │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── filetimetodosdatetime │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── filetimetolocalfiletime │ │ │ └── test1 │ │ │ │ ├── filetimetolocalfiletime.c │ │ │ │ └── testinfo.dat │ │ ├── findclose │ │ │ └── test1 │ │ │ │ ├── findclose.c │ │ │ │ └── testinfo.dat │ │ ├── findfirstfilea │ │ │ └── test1 │ │ │ │ ├── findfirstfilea.c │ │ │ │ └── testinfo.dat │ │ ├── findfirstfilew │ │ │ └── test1 │ │ │ │ ├── findfirstfilew.c │ │ │ │ └── testinfo.dat │ │ ├── findnextfilea │ │ │ ├── test1 │ │ │ │ ├── findnextfilea.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── findnextfilea.c │ │ │ │ └── testinfo.dat │ │ ├── findnextfilew │ │ │ ├── test1 │ │ │ │ ├── findnextfilew.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── findnextfilew.c │ │ │ │ └── testinfo.dat │ │ ├── flushfilebuffers │ │ │ └── test1 │ │ │ │ ├── flushfilebuffers.c │ │ │ │ └── testinfo.dat │ │ ├── getconsolecp │ │ │ └── test1 │ │ │ │ ├── getconsolecp.c │ │ │ │ └── testinfo.dat │ │ ├── getconsoleoutputcp │ │ │ └── test1 │ │ │ │ ├── getconsoleoutputcp.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentdirectorya │ │ │ └── test1 │ │ │ │ ├── getcurrentdirectorya.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentdirectoryw │ │ │ └── test1 │ │ │ │ ├── getcurrentdirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── getdiskfreespacew │ │ │ ├── test1 │ │ │ │ ├── getdiskfreespacew.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── getdiskfreespacew.c │ │ │ │ └── testinfo.dat │ │ ├── getfileattributesa │ │ │ └── test1 │ │ │ │ ├── .hidden_directory │ │ │ │ └── keepme │ │ │ │ ├── .hidden_file │ │ │ │ ├── .hidden_ro_directory │ │ │ │ └── keepme │ │ │ │ ├── .hidden_ro_file │ │ │ │ ├── getfileattributesa.c │ │ │ │ ├── no_directory │ │ │ │ └── keepme │ │ │ │ ├── no_file │ │ │ │ ├── normal_test_directory │ │ │ │ └── keepme │ │ │ │ ├── normal_test_file │ │ │ │ ├── ro_test_directory │ │ │ │ └── keepme │ │ │ │ ├── ro_test_file │ │ │ │ ├── rw_directory │ │ │ │ └── keepme │ │ │ │ ├── rw_file │ │ │ │ └── testinfo.dat │ │ ├── getfileattributesexw │ │ │ ├── test1 │ │ │ │ ├── .hidden_directory │ │ │ │ │ └── anchor.txt │ │ │ │ ├── .hidden_file │ │ │ │ ├── normal_test_directory │ │ │ │ │ └── keepme │ │ │ │ ├── normal_test_file │ │ │ │ ├── ro_test_directory │ │ │ │ │ └── keepme │ │ │ │ ├── ro_test_file │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── getfileattributesw │ │ │ └── test1 │ │ │ │ ├── .hidden_directory │ │ │ │ └── keepme │ │ │ │ ├── .hidden_file │ │ │ │ ├── .hidden_ro_directory │ │ │ │ └── keepme │ │ │ │ ├── .hidden_ro_file │ │ │ │ ├── getfileattributesw.c │ │ │ │ ├── no_directory │ │ │ │ └── keepme │ │ │ │ ├── no_file │ │ │ │ ├── normal_test_directory │ │ │ │ └── keepme │ │ │ │ ├── normal_test_file │ │ │ │ ├── ro_test_directory │ │ │ │ └── keepme │ │ │ │ ├── ro_test_file │ │ │ │ ├── rw_file │ │ │ │ ├── rw_test_directory │ │ │ │ └── keepme │ │ │ │ └── testinfo.dat │ │ ├── getfilesize │ │ │ └── test1 │ │ │ │ ├── getfilesize.c │ │ │ │ └── testinfo.dat │ │ ├── getfiletime │ │ │ ├── test1 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── getfiletime.c │ │ │ │ └── testinfo.dat │ │ ├── getfiletype │ │ │ ├── test1 │ │ │ │ ├── getfiletype.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── getfiletype.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── getfiletype.c │ │ │ │ └── testinfo.dat │ │ ├── getfullpathnamea │ │ │ ├── test1 │ │ │ │ ├── getfullpathnamea.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── getfullpathnamew │ │ │ ├── test1 │ │ │ │ ├── getfullpathnamew.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── getlongpathnamew │ │ │ ├── test1 │ │ │ │ ├── getlongpathnamew.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── getlongpathnamew.c │ │ │ │ └── testinfo.dat │ │ ├── getstdhandle │ │ │ └── test1 │ │ │ │ ├── getstdhandle.c │ │ │ │ └── testinfo.dat │ │ ├── getsystemtime │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getsystemtimeasfiletime │ │ │ └── test1 │ │ │ │ ├── getsystemtimeasfiletime.c │ │ │ │ └── testinfo.dat │ │ ├── gettempfilenamea │ │ │ ├── test1 │ │ │ │ ├── gettempfilenamea.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── gettempfilenamea.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── gettempfilenamea.c │ │ │ │ └── testinfo.dat │ │ ├── gettempfilenamew │ │ │ ├── test1 │ │ │ │ ├── gettempfilenamew.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── gettempfilenamew.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── gettempfilenamew.c │ │ │ │ └── testinfo.dat │ │ ├── gettemppatha │ │ │ └── test1 │ │ │ │ ├── gettemppatha.c │ │ │ │ └── testinfo.dat │ │ ├── gettemppathw │ │ │ └── test1 │ │ │ │ ├── gettemppathw.c │ │ │ │ └── testinfo.dat │ │ ├── localfiletimetofiletime │ │ │ ├── test1 │ │ │ │ ├── localfiletimetofiletime.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── localfiletimetofiletime.c │ │ │ │ └── testinfo.dat │ │ ├── movefilea │ │ │ └── test1 │ │ │ │ ├── expectedresults.txt │ │ │ │ ├── movefilea.c │ │ │ │ └── testinfo.dat │ │ ├── movefileexa │ │ │ └── test1 │ │ │ │ ├── expectedresults.txt │ │ │ │ ├── movefileexa.c │ │ │ │ └── testinfo.dat │ │ ├── movefileexw │ │ │ └── test1 │ │ │ │ ├── expectedresults.txt │ │ │ │ ├── movefileexw.c │ │ │ │ └── testinfo.dat │ │ ├── movefilew │ │ │ └── test1 │ │ │ │ ├── expectedresults.txt │ │ │ │ ├── movefilew.c │ │ │ │ └── testinfo.dat │ │ ├── readfile │ │ │ ├── test1 │ │ │ │ ├── nonreadablefile.txt │ │ │ │ ├── readfile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── readfile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── readfile.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── readfile.c │ │ │ │ └── testinfo.dat │ │ ├── removedirectorya │ │ │ └── test1 │ │ │ │ ├── removedirectorya.c │ │ │ │ └── testinfo.dat │ │ ├── removedirectoryw │ │ │ └── test1 │ │ │ │ ├── removedirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── searchpathw │ │ │ └── test1 │ │ │ │ ├── searchpathw.c │ │ │ │ └── testinfo.dat │ │ ├── setcurrentdirectorya │ │ │ ├── test1 │ │ │ │ ├── setcurrentdirectorya.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setcurrentdirectorya.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── setcurrentdirectorya.c │ │ │ │ └── testinfo.dat │ │ ├── setcurrentdirectoryw │ │ │ ├── test1 │ │ │ │ ├── setcurrentdirectoryw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setcurrentdirectoryw.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── setcurrentdirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── setendoffile │ │ │ ├── test1 │ │ │ │ ├── setendoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setendoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── setendoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── setendoffile.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ ├── setfileattributesa │ │ │ ├── test1 │ │ │ │ ├── setfileattributesa.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setfileattributesa.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── setfileattributesa.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── setfileattributesa.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ ├── setfileattributesw │ │ │ ├── test1 │ │ │ │ ├── setfileattributesw.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setfileattributesw.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── setfileattributesw.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── setfileattributesw.c │ │ │ │ ├── test_file │ │ │ │ └── testinfo.dat │ │ ├── setfilepointer │ │ │ ├── test1 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── setfilepointer.c │ │ │ │ └── testinfo.dat │ │ ├── setfiletime │ │ │ ├── test1 │ │ │ │ ├── setfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── setfiletime.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── setfiletime.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── setfiletime.c │ │ │ │ └── testinfo.dat │ │ └── writefile │ │ │ ├── test1 │ │ │ ├── testinfo.dat │ │ │ └── writefile.c │ │ │ ├── test2 │ │ │ ├── results.txt │ │ │ ├── testinfo.dat │ │ │ └── writefile.c │ │ │ ├── test3 │ │ │ ├── testinfo.dat │ │ │ └── writefile.c │ │ │ ├── test4 │ │ │ ├── testinfo.dat │ │ │ └── writefile.c │ │ │ └── test5 │ │ │ ├── testinfo.dat │ │ │ └── writefile.c │ ├── filemapping_memmgt │ │ ├── createfilemappinga │ │ │ ├── test1 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ ├── createfilemappingw │ │ │ ├── createfilemapping_neg1 │ │ │ │ ├── createfilemapping_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── test1 │ │ │ │ ├── createfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ └── createfilemappingw.c │ │ │ ├── test3 │ │ │ │ ├── createfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── createfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── createfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── createfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── createfilemapping.c │ │ │ │ └── testinfo.dat │ │ ├── freelibrary │ │ │ ├── test1 │ │ │ │ ├── dlltest.c │ │ │ │ ├── freelibrary.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── freelibraryandexitthread │ │ │ └── test1 │ │ │ │ ├── dlltest.c │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getmodulefilenamea │ │ │ ├── test1 │ │ │ │ ├── getmodulefilenamea.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── getmodulefilenamea.c │ │ │ │ └── testinfo.dat │ │ ├── getmodulefilenamew │ │ │ ├── test1 │ │ │ │ ├── getmodulefilenamew.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── getmodulefilenamew.c │ │ │ │ └── testinfo.dat │ │ ├── getprocaddress │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ ├── testinfo.dat │ │ │ │ └── testlib.c │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ ├── testinfo.dat │ │ │ │ └── testlib.c │ │ ├── getprocessheap │ │ │ └── test1 │ │ │ │ ├── getprocessheap.c │ │ │ │ └── testinfo.dat │ │ ├── heapalloc │ │ │ ├── test1 │ │ │ │ ├── heapalloc.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── heapalloc.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── heapalloc.c │ │ │ │ └── testinfo.dat │ │ ├── heapfree │ │ │ └── test1 │ │ │ │ ├── heapfree.c │ │ │ │ └── testinfo.dat │ │ ├── heaprealloc │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ ├── localalloc │ │ │ └── test1 │ │ │ │ ├── localalloc.c │ │ │ │ └── testinfo.dat │ │ ├── localfree │ │ │ ├── test1 │ │ │ │ ├── localfree.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── localfree.c │ │ │ │ └── testinfo.dat │ │ ├── lockfile │ │ │ ├── lockfile.h │ │ │ ├── test1 │ │ │ │ ├── helper.c │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── helper.c │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── helper.c │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── helper.c │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── mapviewoffile │ │ │ ├── test1 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── mapviewoffile.c │ │ │ │ └── testinfo.dat │ │ ├── openfilemappinga │ │ │ ├── test1 │ │ │ │ ├── openfilemappinga.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── openfilemappinga.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── openfilemappinga.c │ │ │ │ └── testinfo.dat │ │ ├── openfilemappingw │ │ │ ├── test1 │ │ │ │ ├── openfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── openfilemappingw.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── openfilemappingw.c │ │ │ │ └── testinfo.dat │ │ ├── readprocessmemory │ │ │ ├── readprocessmemory_neg1 │ │ │ │ ├── readprocessmemory_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── test1 │ │ │ │ ├── readprocessmemory.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── commonconsts.h │ │ │ │ ├── helper.c │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── rtlmovememory │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ ├── unlockfile │ │ │ ├── test1 │ │ │ │ ├── helper.c │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── helper.c │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── unlockfile.h │ │ ├── unmapviewoffile │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── unmapviewoffile.c │ │ │ └── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── unmapviewoffile.c │ │ ├── virtualalloc │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test10 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test11 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test12 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test13 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test14 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test15 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test16 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test17 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test18 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test19 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test20 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test21 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test5 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test6 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test7 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ ├── test8 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ │ └── test9 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualalloc.c │ │ ├── virtualfree │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualfree.c │ │ │ ├── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualfree.c │ │ │ └── test3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualfree.c │ │ ├── virtualprotect │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ │ ├── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ │ ├── test3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ │ ├── test4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ │ ├── test6 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ │ └── test7 │ │ │ │ ├── testinfo.dat │ │ │ │ └── virtualprotect.c │ │ └── virtualquery │ │ │ └── test1 │ │ │ ├── testinfo.dat │ │ │ └── virtualquery.c │ ├── loader │ │ ├── loadlibrarya │ │ │ ├── test1 │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── loadlibrarya.c │ │ │ │ ├── mymodule.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── dlltest.c │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ │ └── test8 │ │ │ │ ├── dlltest.c │ │ │ │ ├── loadlibrarya.c │ │ │ │ └── testinfo.dat │ │ └── loadlibraryw │ │ │ ├── test1 │ │ │ ├── loadlibraryw.c │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ ├── loadlibraryw.c │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ ├── loadlibraryw.c │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ ├── loadlibraryw.c │ │ │ └── testinfo.dat │ ├── locale_info │ │ ├── comparestringa │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── comparestringw │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getacp │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getcpinfo │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── getlocaleinfow │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── getstringtypeexw │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── getsystemdefaultlangid │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getthreadlocale │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── gettimezoneinformation │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getuserdefaultlangid │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getuserdefaultlcid │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isdbcsleadbyte │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isdbcsleadbyteex │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isvalidcodepage │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── isvalidlocale │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── multibytetowidechar │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── setthreadlocale │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ └── widechartomultibyte │ │ │ ├── test1 │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ ├── test2.c │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ ├── test3.c │ │ │ └── testinfo.dat │ ├── manual-inspect.dat │ ├── manual-unautomatable.dat │ ├── miscellaneous │ │ ├── _i64tow │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── _ui64tow │ │ │ ├── test1 │ │ │ │ ├── _ui64tow.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── _ui64tow.c │ │ │ │ └── testinfo.dat │ │ ├── charnexta │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── charnextexa │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── closehandle │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── createpipe │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── flushinstructioncache │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── formatmessagew │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── freeenvironmentstringsw │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getcalendarinfow │ │ │ ├── test1 │ │ │ │ ├── getcalendarinfow.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── getcalendarinfow.c │ │ │ │ └── testinfo.dat │ │ ├── getcommandlinew │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getdateformatw │ │ │ ├── getdateformatw_neg1 │ │ │ │ ├── getdateformatw_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getdateformatw_neg2 │ │ │ │ ├── getdateformatw_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── test1 │ │ │ │ ├── getdateformatw.c │ │ │ │ └── testinfo.dat │ │ ├── getenvironmentstringsw │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getenvironmentvariablea │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ ├── getenvironmentvariablew │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ ├── getlasterror │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getsysteminfo │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── gettickcount │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getversionexa │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── getversionexw │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedcompareexchange │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedcompareexchange64 │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedcompareexchangepointer │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockeddecrement │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockeddecrement64 │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedexchange │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedexchange64 │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedexchangeadd │ │ │ └── test1 │ │ │ │ └── test.c │ │ ├── interlockedexchangepointer │ │ │ └── test1 │ │ │ │ ├── interlockedexchangepointer.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedincrement │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── interlockedincrement64 │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── isbadcodeptr │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── isbadreadptr │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── isbadwriteptr │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── lstrcatw │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── lstrcpynw │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── lstrcpyw │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── lstrlena │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── lstrlenw │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── messageboxw │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── queryperformancecounter │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── queryperformancefrequency │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── setenvironmentvariablea │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── setenvironmentvariablew │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── setlasterror │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── wsprintfa │ │ │ ├── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ └── wsprintfw │ │ │ ├── test1 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test13 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ ├── networking │ │ ├── accept_connect │ │ │ ├── accept_connect1 │ │ │ │ ├── accept_connect_client.c │ │ │ │ ├── accept_connect_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_connect2 │ │ │ │ ├── accept_connect_client.c │ │ │ │ ├── accept_connect_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg1 │ │ │ │ ├── accept_neg_client.c │ │ │ │ ├── accept_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg2 │ │ │ │ ├── accept_neg_client.c │ │ │ │ ├── accept_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg3 │ │ │ │ ├── accept_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg4 │ │ │ │ ├── accept_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg5 │ │ │ │ ├── accept_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── accept_neg6 │ │ │ │ ├── accept_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg10 │ │ │ │ ├── connect_neg_client.c │ │ │ │ ├── connect_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg2 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg3 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg4 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg5 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── connect_neg7 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── connect_neg8 │ │ │ │ ├── connect_neg.c │ │ │ │ └── testinfo.dat │ │ ├── bind │ │ │ ├── bind_dgram │ │ │ │ ├── bind_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_dgram2 │ │ │ │ ├── bind_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg1 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg2 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg3 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg4 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg5 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_neg6 │ │ │ │ ├── bind_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── bind_stream │ │ │ │ ├── bind_stream.c │ │ │ │ └── testinfo.dat │ │ │ └── bind_stream2 │ │ │ │ ├── bind_stream.c │ │ │ │ └── testinfo.dat │ │ ├── closesocket │ │ │ ├── closesocket_dgram │ │ │ │ ├── closesocket_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── closesocket_neg1 │ │ │ │ ├── closesocket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── closesocket_neg2 │ │ │ │ ├── closesocket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── closesocket_raw │ │ │ │ ├── closesocket_raw.c │ │ │ │ └── testinfo.dat │ │ │ └── closesocket_stream │ │ │ │ ├── closesocket_stream.c │ │ │ │ └── testinfo.dat │ │ ├── gethostbyaddr │ │ │ ├── gethostbyaddr1 │ │ │ │ ├── gethostbyaddr.c │ │ │ │ └── testinfo.dat │ │ │ └── gethostbyaddr_neg1 │ │ │ │ ├── gethostbyaddr_neg.c │ │ │ │ └── testinfo.dat │ │ ├── gethostbyname │ │ │ ├── gethostbyname1 │ │ │ │ ├── gethostbyname.c │ │ │ │ └── testinfo.dat │ │ │ ├── gethostbyname2 │ │ │ │ ├── gethostbyname.c │ │ │ │ └── testinfo.dat │ │ │ ├── gethostbyname_neg1 │ │ │ │ ├── gethostbyname_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── gethostbyname_neg2 │ │ │ │ ├── gethostbyname_neg.c │ │ │ │ └── testinfo.dat │ │ ├── gethostname │ │ │ ├── gethostname1 │ │ │ │ ├── gethostname.c │ │ │ │ └── testinfo.dat │ │ │ ├── gethostname_neg1 │ │ │ │ ├── gethostname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── gethostname_neg2 │ │ │ │ ├── gethostname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── gethostname_neg3 │ │ │ │ ├── gethostname_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── gethostname_neg4 │ │ │ │ ├── gethostname_neg.c │ │ │ │ └── testinfo.dat │ │ ├── getpeername │ │ │ ├── getpeername_dgram │ │ │ │ ├── getpeername.c │ │ │ │ └── testinfo.dat │ │ │ ├── getpeername_neg1 │ │ │ │ ├── getpeername_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getpeername_neg2 │ │ │ │ ├── getpeername_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getpeername_neg3 │ │ │ │ ├── getpeername_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getpeername_neg4 │ │ │ │ ├── getpeername_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getpeername_neg5 │ │ │ │ ├── getpeername_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── getpeername_stream │ │ │ │ ├── getpeername.c │ │ │ │ └── testinfo.dat │ │ ├── getsockname │ │ │ ├── getsockname_dgram1 │ │ │ │ ├── getsockname_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_dgram2 │ │ │ │ ├── getsockname_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_neg1 │ │ │ │ ├── getsockname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_neg2 │ │ │ │ ├── getsockname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_neg3 │ │ │ │ ├── getsockname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_neg4 │ │ │ │ ├── getsockname_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_neg5 │ │ │ │ ├── getsockname_neg_client.c │ │ │ │ ├── getsockname_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockname_stream1 │ │ │ │ ├── getsockname_stream.c │ │ │ │ ├── getsockname_stream_client.c │ │ │ │ ├── getsockname_stream_server.c │ │ │ │ └── testinfo.dat │ │ │ └── getsockname_stream2 │ │ │ │ ├── getsockname_stream.c │ │ │ │ └── testinfo.dat │ │ ├── getsockopt │ │ │ ├── getsockopt_dgram │ │ │ │ ├── getsockopt_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg1 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg2 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg3 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg4 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg5 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── getsockopt_neg6 │ │ │ │ ├── getsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── getsockopt_stream │ │ │ │ ├── getsockopt_stream.c │ │ │ │ └── testinfo.dat │ │ ├── inet_addr │ │ │ ├── inet_addr1 │ │ │ │ ├── inet_addr.c │ │ │ │ └── testinfo.dat │ │ │ └── inet_addr_neg1 │ │ │ │ ├── inet_addr_neg.c │ │ │ │ └── testinfo.dat │ │ ├── ioctlsocket │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ └── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ ├── listen │ │ │ ├── listen1 │ │ │ │ ├── listen.c │ │ │ │ └── testinfo.dat │ │ │ ├── listen2 │ │ │ │ ├── listen.c │ │ │ │ └── testinfo.dat │ │ │ ├── listen_neg1 │ │ │ │ ├── listen_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── listen_neg2 │ │ │ │ ├── listen_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── listen_neg3 │ │ │ │ ├── listen_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── listen_neg4 │ │ │ │ ├── listen_neg.c │ │ │ │ └── testinfo.dat │ │ ├── select │ │ │ ├── select1 │ │ │ │ ├── select.c │ │ │ │ └── testinfo.dat │ │ │ ├── select2 │ │ │ │ ├── select.c │ │ │ │ └── testinfo.dat │ │ │ ├── select3 │ │ │ │ ├── select_client.c │ │ │ │ ├── select_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── select4 │ │ │ │ ├── select_client.c │ │ │ │ ├── select_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── select_neg1 │ │ │ │ ├── select_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── select_neg2 │ │ │ │ ├── select_neg.c │ │ │ │ └── testinfo.dat │ │ │ └── select_neg3 │ │ │ │ ├── select_neg.c │ │ │ │ └── testinfo.dat │ │ ├── send_recv │ │ │ ├── recv_neg1 │ │ │ │ ├── recv_neg_client.c │ │ │ │ ├── recv_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recv_neg2 │ │ │ │ ├── recv_neg_client.c │ │ │ │ ├── recv_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recv_neg3 │ │ │ │ ├── recv_neg_client.c │ │ │ │ ├── recv_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recv_neg4 │ │ │ │ ├── recv_neg_client.c │ │ │ │ ├── recv_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recv_neg6 │ │ │ │ ├── recv_neg_client.c │ │ │ │ ├── recv_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recv_neg9 │ │ │ │ ├── recv_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg1 │ │ │ │ ├── send_neg_client.c │ │ │ │ ├── send_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg2 │ │ │ │ ├── send_neg_client.c │ │ │ │ ├── send_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg3 │ │ │ │ ├── send_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg4 │ │ │ │ ├── send_neg_client.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg8 │ │ │ │ ├── send_neg_client.c │ │ │ │ ├── send_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_neg9 │ │ │ │ ├── send_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_recv1 │ │ │ │ ├── send_recv_client.c │ │ │ │ ├── send_recv_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_recv2 │ │ │ │ ├── send_recv_client.c │ │ │ │ ├── send_recv_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_recv3 │ │ │ │ ├── send_recv_client.c │ │ │ │ ├── send_recv_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── send_recv4 │ │ │ │ ├── send_recv_client.c │ │ │ │ ├── send_recv_server.c │ │ │ │ └── testinfo.dat │ │ │ └── send_recv5 │ │ │ │ ├── send_recv_client.c │ │ │ │ ├── send_recv_server.c │ │ │ │ └── testinfo.dat │ │ ├── sendto_recvfrom │ │ │ ├── recvfrom_neg1 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg2 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg3 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg4 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg5 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg6 │ │ │ │ ├── recvfrom_neg.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── recvfrom_neg9 │ │ │ │ ├── recvfrom_neg_client.c │ │ │ │ ├── recvfrom_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── sendto_neg1 │ │ │ │ ├── sendto_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── sendto_neg4 │ │ │ │ ├── sendto_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── sendto_neg9 │ │ │ │ ├── sendto_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── sendto_recvfrom1 │ │ │ │ ├── sendto_recvfrom_client.c │ │ │ │ ├── sendto_recvfrom_server.c │ │ │ │ └── testinfo.dat │ │ │ └── sendto_recvfrom3 │ │ │ │ ├── sendto_recvfrom_client.c │ │ │ │ ├── sendto_recvfrom_server.c │ │ │ │ └── testinfo.dat │ │ ├── setsockopt │ │ │ ├── reuseaddr_exclusiveaddruse │ │ │ │ └── reuseaddr_exclusiveaddruse.c │ │ │ ├── setsockopt_dgram │ │ │ │ ├── setsockopt_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_neg1 │ │ │ │ ├── setsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_neg2 │ │ │ │ ├── setsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_neg3 │ │ │ │ ├── setsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_neg4 │ │ │ │ ├── setsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_neg5 │ │ │ │ ├── setsockopt_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── setsockopt_recvtimeo │ │ │ │ └── main.c │ │ │ └── setsockopt_stream │ │ │ │ ├── setsockopt_stream.c │ │ │ │ └── testinfo.dat │ │ ├── shutdown │ │ │ ├── shutdown_dgram1 │ │ │ │ ├── shutdown_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_dgram2 │ │ │ │ ├── shutdown_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_dgram3 │ │ │ │ ├── shutdown_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_neg1 │ │ │ │ ├── shutdown_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_neg2 │ │ │ │ ├── shutdown_neg_client.c │ │ │ │ ├── shutdown_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_neg3 │ │ │ │ ├── shutdown_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_neg4 │ │ │ │ ├── shutdown_neg_client.c │ │ │ │ ├── shutdown_neg_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_stream1 │ │ │ │ ├── shutdown_stream_client.c │ │ │ │ ├── shutdown_stream_server.c │ │ │ │ └── testinfo.dat │ │ │ ├── shutdown_stream2 │ │ │ │ ├── shutdown_stream_client.c │ │ │ │ ├── shutdown_stream_server.c │ │ │ │ └── testinfo.dat │ │ │ └── shutdown_stream3 │ │ │ │ ├── shutdown_stream_client.c │ │ │ │ ├── shutdown_stream_server.c │ │ │ │ └── testinfo.dat │ │ ├── socket │ │ │ ├── socket_dgram │ │ │ │ ├── socket_dgram.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_neg1 │ │ │ │ ├── socket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_neg2 │ │ │ │ ├── socket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_neg3 │ │ │ │ ├── socket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_neg5 │ │ │ │ ├── socket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_neg6 │ │ │ │ ├── socket_neg.c │ │ │ │ └── testinfo.dat │ │ │ ├── socket_raw │ │ │ │ ├── socket_raw.c │ │ │ │ └── testinfo.dat │ │ │ └── socket_stream │ │ │ │ ├── socket_stream.c │ │ │ │ └── testinfo.dat │ │ ├── wsacleanup │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── wsaenumnetworkevents │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsaenumnetworkevents_client.c │ │ │ │ └── wsaenumnetworkevents_server.c │ │ │ ├── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsaenumnetworkevents.c │ │ │ ├── test_neg1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsaenumnetworkevents_neg.c │ │ │ ├── test_neg2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsaenumnetworkevents_neg.c │ │ │ └── test_neg3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsaenumnetworkevents_neg.c │ │ ├── wsaeventselect │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── wsaioctl │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── wsacommon.h │ │ ├── wsasend_wsarecv │ │ │ ├── wsacommon.h │ │ │ ├── wsarecv1 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv1_client.c │ │ │ │ └── wsarecv1_server.c │ │ │ ├── wsarecv10 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecv10.c │ │ │ ├── wsarecv13 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecv13.c │ │ │ ├── wsarecv14 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecv14.c │ │ │ ├── wsarecv2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecv2_client.c │ │ │ ├── wsarecv3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecv3_client.c │ │ │ ├── wsarecv5 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv5_client.c │ │ │ │ └── wsarecv5_server.c │ │ │ ├── wsarecv6 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv6_client.c │ │ │ │ └── wsarecv6_server.c │ │ │ ├── wsarecv7 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv7_client.c │ │ │ │ └── wsarecv7_server.c │ │ │ ├── wsarecv8 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv8_client.c │ │ │ │ └── wsarecv8_server.c │ │ │ ├── wsarecv9 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecv9_client.c │ │ │ │ └── wsarecv9_server.c │ │ │ ├── wsasend1 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsasend1_client.c │ │ │ │ └── wsasend1_server.c │ │ │ ├── wsasend2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasend2_client.c │ │ │ ├── wsasend3 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsasend3.c │ │ │ │ └── wsasend3_client.c │ │ │ ├── wsasend5 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsasend5_client.c │ │ │ │ └── wsasend5_server.c │ │ │ ├── wsasend6 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasend6.c │ │ │ ├── wsasend7 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasend7_client.c │ │ │ ├── wsasend8 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasend8_client.c │ │ │ ├── wsasendrecv1 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsasendrecv1_client.c │ │ │ │ └── wsasendrecv1_server.c │ │ │ ├── wsasendrecv2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendrecv2.c │ │ │ ├── wsasendrecv3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendrecv3.c │ │ │ ├── wsasendrecv4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendrecv4.c │ │ │ └── wsasendrecv5 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendrecv5.c │ │ ├── wsasendto_wsarecvfrom │ │ │ ├── wsacommon.h │ │ │ ├── wsarecvfrom1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom1_server.c │ │ │ ├── wsarecvfrom10 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom10.c │ │ │ ├── wsarecvfrom2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom2_server.c │ │ │ ├── wsarecvfrom3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom3_server.c │ │ │ ├── wsarecvfrom4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom4_server.c │ │ │ ├── wsarecvfrom5 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom5_server.c │ │ │ ├── wsarecvfrom6 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecvfrom6_client.c │ │ │ │ └── wsarecvfrom6_server.c │ │ │ ├── wsarecvfrom7 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsarecvfrom7_client.c │ │ │ │ └── wsarecvfrom7_server.c │ │ │ ├── wsarecvfrom8 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom8.c │ │ │ ├── wsarecvfrom9 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsarecvfrom9.c │ │ │ ├── wsasendto1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto1_client.c │ │ │ ├── wsasendto10 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto10.c │ │ │ ├── wsasendto11 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto11.c │ │ │ ├── wsasendto2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto2_client.c │ │ │ ├── wsasendto3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto3_client.c │ │ │ ├── wsasendto4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto4_client.c │ │ │ ├── wsasendto5 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto5_client.c │ │ │ ├── wsasendto6 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto6.c │ │ │ ├── wsasendto7 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendto7.c │ │ │ ├── wsasendtorecvfrom1 │ │ │ │ ├── testinfo.dat │ │ │ │ ├── wsasendtorecvfrom1_client.c │ │ │ │ └── wsasendtorecvfrom1_server.c │ │ │ ├── wsasendtorecvfrom2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendtorecvfrom2.c │ │ │ ├── wsasendtorecvfrom3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendtorecvfrom3.c │ │ │ ├── wsasendtorecvfrom4 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendtorecvfrom4.c │ │ │ └── wsasendtorecvfrom5 │ │ │ │ ├── testinfo.dat │ │ │ │ └── wsasendtorecvfrom5.c │ │ ├── wsasocketw │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ └── wsastartup │ │ │ ├── test1 │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ ├── test2.c │ │ │ └── testinfo.dat │ ├── pal_specific │ │ ├── pal_errno │ │ │ └── test1 │ │ │ │ ├── pal_errno.c │ │ │ │ └── testinfo.dat │ │ ├── pal_get_stderr │ │ │ └── test1 │ │ │ │ ├── pal_get_stderr.c │ │ │ │ └── testinfo.dat │ │ ├── pal_get_stdin │ │ │ └── test1 │ │ │ │ ├── pal_get_stdin.c │ │ │ │ └── testinfo.dat │ │ ├── pal_get_stdout │ │ │ └── test1 │ │ │ │ ├── pal_get_stdout.c │ │ │ │ └── testinfo.dat │ │ ├── pal_getmachineconfigurationdirectoryw │ │ │ └── test1 │ │ │ │ ├── pal_getmachineconfigurationdirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── pal_getpaldirectoryw │ │ │ └── test1 │ │ │ │ ├── pal_getpaldirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── pal_getuserconfigurationdirectoryw │ │ │ └── test1 │ │ │ │ ├── pal_getuserconfigurationdirectoryw.c │ │ │ │ └── testinfo.dat │ │ ├── pal_initialize_terminate │ │ │ └── test1 │ │ │ │ ├── pal_initialize_terminate.c │ │ │ │ └── testinfo.dat │ │ └── pal_registerlibraryw_unregisterlibraryw │ │ │ ├── pal_registerlibraryw_unregisterlibraryw_neg │ │ │ ├── pal_registerlibraryw_unregisterlibraryw_neg.c │ │ │ └── testinfo.dat │ │ │ └── test1 │ │ │ ├── pal_registerlibraryw_unregisterlibraryw.c │ │ │ └── testinfo.dat │ ├── palverify.dat │ ├── readme.txt │ ├── runsuite.bat │ ├── samples │ │ ├── test1 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ │ └── test2 │ │ │ ├── test.c │ │ │ └── testinfo.dat │ ├── severebug.dat │ ├── tests-manual.dat │ ├── threading │ │ ├── createeventa │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── createeventw │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── createmutexa_releasemutex │ │ │ ├── test1 │ │ │ │ ├── createmutexa.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── createmutexa.c │ │ │ │ └── testinfo.dat │ │ ├── createmutexw_releasemutex │ │ │ ├── test1 │ │ │ │ ├── createmutexw.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── createmutexw.c │ │ │ │ └── testinfo.dat │ │ ├── createprocessa │ │ │ ├── test1 │ │ │ │ ├── childprocess.c │ │ │ │ ├── parentprocess.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── childprocess.c │ │ │ │ ├── parentprocess.c │ │ │ │ ├── test2.h │ │ │ │ └── testinfo.dat │ │ ├── createprocessw │ │ │ ├── test1 │ │ │ │ ├── childprocess.c │ │ │ │ ├── parentprocess.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── childprocess.c │ │ │ │ ├── parentprocess.c │ │ │ │ ├── test2.h │ │ │ │ └── testinfo.dat │ │ ├── createsemaphorea_releasesemaphore │ │ │ ├── test1 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ ├── createsemaphorew_releasesemaphore │ │ │ ├── test1 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── createsemaphore.c │ │ │ │ └── testinfo.dat │ │ ├── createthread │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── criticalsectionfunctions │ │ │ ├── test1 │ │ │ │ ├── initializecriticalsection.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── disablethreadlibrarycalls │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ ├── testinfo.dat │ │ │ │ └── testlib.c │ │ │ └── test2 │ │ │ │ ├── dllmain1.c │ │ │ │ ├── dllmain2.c │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── duplicatehandle │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test11 │ │ │ │ ├── childprocess.c │ │ │ │ ├── myexitcode.h │ │ │ │ ├── test11.c │ │ │ │ └── testinfo.dat │ │ │ ├── test12 │ │ │ │ ├── test12.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ ├── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ │ └── test9 │ │ │ │ ├── test9.c │ │ │ │ └── testinfo.dat │ │ ├── exitprocess │ │ │ ├── test1 │ │ │ │ ├── exitprocess.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── exitthread │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── childprocess.c │ │ │ │ ├── myexitcode.h │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ └── test3 │ │ │ │ ├── dllmain.c │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentprocess │ │ │ └── test1 │ │ │ │ ├── process.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentprocessid │ │ │ └── test1 │ │ │ │ ├── processid.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentthread │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── thread.c │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── getcurrentthreadid │ │ │ └── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── threadid.c │ │ ├── getexitcodeprocess │ │ │ └── test1 │ │ │ │ ├── childprocess.c │ │ │ │ ├── myexitcode.h │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── getprocesstimes │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── openeventw │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── childprocess.c │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ ├── openprocess │ │ │ └── test1 │ │ │ │ ├── childprocess.c │ │ │ │ ├── myexitcode.h │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── queueuserapc │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ └── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ ├── releasemutex │ │ │ └── test3 │ │ │ │ ├── releasemutex.c │ │ │ │ └── testinfo.dat │ │ ├── releasesemaphore │ │ │ └── test1 │ │ │ │ ├── test.c │ │ │ │ └── testinfo.dat │ │ ├── resetevent │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── resumethread │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── setconsolectrlhandler │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test10 │ │ │ │ ├── test10.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ ├── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ │ ├── test6 │ │ │ │ ├── test6.c │ │ │ │ └── testinfo.dat │ │ │ ├── test7 │ │ │ │ ├── test7.c │ │ │ │ └── testinfo.dat │ │ │ └── test8 │ │ │ │ ├── test8.c │ │ │ │ └── testinfo.dat │ │ ├── seterrormode │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── setevent │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ └── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ ├── setthreadcontext │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── sleep │ │ │ ├── test1 │ │ │ │ ├── sleep.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── sleep.c │ │ │ │ └── testinfo.dat │ │ ├── sleepex │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── suspendthread │ │ │ └── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ ├── terminateprocess │ │ │ └── test1 │ │ │ │ ├── terminateprocess.c │ │ │ │ └── testinfo.dat │ │ ├── threadpriority │ │ │ └── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── threadpriority.c │ │ ├── tls │ │ │ ├── test1 │ │ │ │ ├── testinfo.dat │ │ │ │ └── tls.c │ │ │ ├── test2 │ │ │ │ ├── testinfo.dat │ │ │ │ └── tls.c │ │ │ ├── test3 │ │ │ │ ├── testinfo.dat │ │ │ │ └── tls.c │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ ├── waitformultipleobjects │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ └── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ ├── waitformultipleobjectsex │ │ │ ├── test1 │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ │ ├── test2 │ │ │ │ ├── test2.c │ │ │ │ └── testinfo.dat │ │ │ ├── test3 │ │ │ │ ├── test3.c │ │ │ │ └── testinfo.dat │ │ │ ├── test4 │ │ │ │ ├── test4.c │ │ │ │ └── testinfo.dat │ │ │ └── test5 │ │ │ │ ├── commonconsts.h │ │ │ │ ├── helper.c │ │ │ │ ├── test5.c │ │ │ │ └── testinfo.dat │ │ └── waitforsingleobject │ │ │ └── test1 │ │ │ ├── test1.c │ │ │ └── testinfo.dat │ └── unused.dat ├── pvtrun.pl ├── rdirs ├── rrun.pl ├── security │ ├── rdirs │ └── verifier │ │ ├── delegate │ │ ├── call_ctor.il │ │ ├── call_ctor1.il │ │ ├── call_ctor10.il │ │ ├── call_ctor11.il │ │ ├── call_ctor12.il │ │ ├── call_ctor13.il │ │ ├── call_ctor2.il │ │ ├── call_ctor3.il │ │ ├── call_ctor4.il │ │ ├── call_ctor5.il │ │ ├── call_ctor6.il │ │ ├── call_ctor7.il │ │ ├── call_ctor8.il │ │ ├── call_ctor9.il │ │ ├── ctor_badmerge1.il │ │ ├── ctor_deleg.il │ │ ├── ctor_garbage1.il │ │ ├── ctor_garbage2.il │ │ ├── ctor_garbage3.il │ │ ├── ctor_global.il │ │ ├── ctor_iface.il │ │ ├── ctor_merge1.il │ │ ├── ctor_merge2.il │ │ ├── ctor_strict1.il │ │ ├── ctor_unrelated1.il │ │ ├── ctor_unrelated2.il │ │ ├── ctor_unrelated3.il │ │ ├── ctor_unrelated4.il │ │ ├── ctor_unrelated5.il │ │ ├── ctor_wrongarg1.il │ │ ├── ctor_wrongarg2.il │ │ ├── ctor_wrongconv1.il │ │ ├── ctor_wrongconv2.il │ │ ├── decl_ctor1.il │ │ ├── decl_ctor2.il │ │ ├── decl_invoke1.il │ │ ├── decl_invoke2.il │ │ ├── dlg1.il │ │ ├── dlg12.il │ │ ├── dlg13.il │ │ ├── dlg14.il │ │ ├── dlg15.il │ │ ├── dlg16.il │ │ ├── dlg17.il │ │ ├── dlg18.il │ │ ├── dlg19.il │ │ ├── dlg2.il │ │ ├── dlg20.il │ │ ├── dlg22.il │ │ ├── dlg23.il │ │ ├── dlg24.il │ │ ├── dlg25.il │ │ ├── dlg26.il │ │ ├── dlg27.il │ │ ├── dlg28.il │ │ ├── dlg3.il │ │ ├── dlg4.il │ │ ├── dlg5.il │ │ ├── dlg6.il │ │ ├── dlg7.il │ │ ├── dlg8.il │ │ ├── dlg9.il │ │ ├── dlg_a.il │ │ ├── invoke_flowctrl1.il │ │ ├── invoke_tail2.il │ │ ├── invoke_tail3.il │ │ ├── invoke_wrongconv1.il │ │ ├── invoke_wrongconv2.il │ │ ├── invoke_wronginstr1.il │ │ ├── invoke_wronginstr2.il │ │ ├── invoke_wronginstr3.il │ │ ├── invoke_wrongsig1.il │ │ ├── invoke_wrongsig2.il │ │ ├── merge_fptr.il │ │ └── rsources │ │ ├── exceptions │ │ ├── b1 │ │ │ ├── excep1-1.il │ │ │ ├── excep1-2.il │ │ │ ├── excep1-3.il │ │ │ ├── excep1-4.il │ │ │ ├── excep1-5.il │ │ │ ├── excep10-1_a.il │ │ │ ├── excep10-5_a.il │ │ │ ├── excep11-1.il │ │ │ ├── excep11-2.il │ │ │ ├── excep11-3.il │ │ │ ├── excep11-4.il │ │ │ ├── excep2-1.il │ │ │ ├── excep2-2.il │ │ │ ├── excep2-3.il │ │ │ ├── excep2-4.il │ │ │ ├── excep2-5.il │ │ │ ├── excep3-1.il │ │ │ ├── excep4-1.il │ │ │ ├── excep5-1.il │ │ │ ├── excep6-1.il │ │ │ ├── excep6_a.il │ │ │ ├── excep7-1.il │ │ │ ├── excep8-1.il │ │ │ ├── excep8-2.il │ │ │ ├── excep9-1.il │ │ │ ├── excep9-2.il │ │ │ ├── excep9-3.il │ │ │ ├── excep9-4.il │ │ │ ├── excep9-6.il │ │ │ ├── excep9-7.il │ │ │ └── rsources │ │ ├── b2 │ │ │ ├── finallytest.il │ │ │ ├── rsources │ │ │ ├── test_10_catch.il │ │ │ ├── test_10_fault.il │ │ │ ├── test_10_filter.il │ │ │ ├── test_10_finally.il │ │ │ ├── test_10_try.il │ │ │ ├── test_111_fault.il │ │ │ ├── test_11_catch.il │ │ │ ├── test_11_fault.il │ │ │ ├── test_11_filter.il │ │ │ ├── test_11_finally.il │ │ │ ├── test_11_try.il │ │ │ ├── test_12_catch.il │ │ │ ├── test_12_filter.il │ │ │ ├── test_12_try.il │ │ │ ├── test_13_catch.il │ │ │ ├── test_13_fault.il │ │ │ ├── test_13_filter.il │ │ │ ├── test_13_finally.il │ │ │ ├── test_13_try.il │ │ │ ├── test_14_catch.il │ │ │ ├── test_14_fault.il │ │ │ ├── test_14_filter.il │ │ │ ├── test_14_finally.il │ │ │ ├── test_14_try.il │ │ │ ├── test_14_try_a.il │ │ │ ├── test_15_fault.il │ │ │ ├── test_15_finally.il │ │ │ ├── test_15_try.il │ │ │ ├── test_15_try_a.il │ │ │ ├── test_16_catch.il │ │ │ ├── test_16_fault.il │ │ │ ├── test_16_finally.il │ │ │ ├── test_16_try.il │ │ │ ├── test_17_catch.il │ │ │ ├── test_17_fault.il │ │ │ ├── test_17_finally.il │ │ │ ├── test_18_catch.il │ │ │ ├── test_18_fault.il │ │ │ ├── test_18_finally.il │ │ │ ├── test_18_try.il │ │ │ ├── test_19_fault.il │ │ │ ├── test_19_finally.il │ │ │ ├── test_1_catch.il │ │ │ ├── test_1_fault.il │ │ │ ├── test_1_filter.il │ │ │ ├── test_1_finally.il │ │ │ ├── test_1_try.il │ │ │ ├── test_20_catch.il │ │ │ ├── test_20_try.il │ │ │ ├── test_21_catch.il │ │ │ ├── test_21_try.il │ │ │ ├── test_22_catch.il │ │ │ ├── test_22_try.il │ │ │ ├── test_23_try.il │ │ │ ├── test_24_catch.il │ │ │ ├── test_24_try.il │ │ │ ├── test_25_catch.il │ │ │ ├── test_25_try.il │ │ │ ├── test_26_catch.il │ │ │ ├── test_26_try.il │ │ │ ├── test_27_try.il │ │ │ ├── test_28_try.il │ │ │ ├── test_29_try.il │ │ │ ├── test_2_catch.il │ │ │ ├── test_2_fault.il │ │ │ ├── test_2_filter.il │ │ │ ├── test_2_finally.il │ │ │ ├── test_2_try.il │ │ │ ├── test_30_try.il │ │ │ ├── test_31_try.il │ │ │ ├── test_32_try.il │ │ │ ├── test_33_try.il │ │ │ ├── test_34_try.il │ │ │ ├── test_35_try.il │ │ │ ├── test_36_try.il │ │ │ ├── test_37_try.il │ │ │ ├── test_38_try.il │ │ │ ├── test_3_catch.il │ │ │ ├── test_3_fault.il │ │ │ ├── test_3_filter.il │ │ │ ├── test_3_finally.il │ │ │ ├── test_3_try.il │ │ │ ├── test_4_catch.il │ │ │ ├── test_4_fault.il │ │ │ ├── test_4_filter.il │ │ │ ├── test_4_finally.il │ │ │ ├── test_4_try.il │ │ │ ├── test_5_catch.il │ │ │ ├── test_5_fault.il │ │ │ ├── test_5_finally.il │ │ │ ├── test_5_try.il │ │ │ ├── test_5_try_a.il │ │ │ ├── test_6_catch.il │ │ │ ├── test_6_fault.il │ │ │ ├── test_6_filter.il │ │ │ ├── test_6_finally.il │ │ │ ├── test_6_try.il │ │ │ ├── test_7_catch.il │ │ │ ├── test_7_catch_a.il │ │ │ ├── test_7_fault.il │ │ │ ├── test_7_filter.il │ │ │ ├── test_7_finally.il │ │ │ ├── test_7_try.il │ │ │ ├── test_8_catch.il │ │ │ ├── test_8_fault.il │ │ │ ├── test_8_filter.il │ │ │ ├── test_8_finally.il │ │ │ ├── test_8_try.il │ │ │ ├── test_9_catch.il │ │ │ ├── test_9_fault.il │ │ │ ├── test_9_filter.il │ │ │ ├── test_9_finally.il │ │ │ └── test_9_try.il │ │ ├── b2jit │ │ │ ├── br_in_try.il │ │ │ ├── filter_handler.il │ │ │ ├── leave_block.il │ │ │ ├── leave_in_try.il │ │ │ ├── nbug.cs │ │ │ ├── nested_seh.il │ │ │ ├── overlap_try.il │ │ │ ├── overlap_try1.il │ │ │ ├── rsources │ │ │ ├── seh_in_filter.il │ │ │ ├── test_101_catch.il │ │ │ ├── test_102_catch.il │ │ │ ├── test_102_try.il │ │ │ ├── test_103_fault.il │ │ │ ├── test_103_try.il │ │ │ ├── test_105_catch.il │ │ │ ├── test_106_catch.il │ │ │ ├── test_10_catch.il │ │ │ ├── test_10_fault.il │ │ │ ├── test_10_filter.il │ │ │ ├── test_10_finally.il │ │ │ ├── test_10_try.il │ │ │ ├── test_116_try.il │ │ │ ├── test_117_try.il │ │ │ ├── test_11_catch.il │ │ │ ├── test_11_fault.il │ │ │ ├── test_11_filter.il │ │ │ ├── test_11_finally.il │ │ │ ├── test_11_try.il │ │ │ ├── test_120_catch.il │ │ │ ├── test_121_catch.il │ │ │ ├── test_12_filter.il │ │ │ ├── test_131_try.il │ │ │ ├── test_13_catch.il │ │ │ ├── test_13_fault.il │ │ │ ├── test_13_filter.il │ │ │ ├── test_13_finally.il │ │ │ ├── test_13_try.il │ │ │ ├── test_13a_catch.il │ │ │ ├── test_14_catch.il │ │ │ ├── test_14_fault.il │ │ │ ├── test_14_filter.il │ │ │ ├── test_14_finally.il │ │ │ ├── test_14_try.il │ │ │ ├── test_15_fault.il │ │ │ ├── test_15_finally.il │ │ │ ├── test_15_try.il │ │ │ ├── test_16_catch.il │ │ │ ├── test_16_fault.il │ │ │ ├── test_16_finally.il │ │ │ ├── test_16_try.il │ │ │ ├── test_17_catch.il │ │ │ ├── test_17_fault.il │ │ │ ├── test_17_finally.il │ │ │ ├── test_18_catch.il │ │ │ ├── test_18_fault.il │ │ │ ├── test_18_finally.il │ │ │ ├── test_18_try.il │ │ │ ├── test_19_fault.il │ │ │ ├── test_19_finally.il │ │ │ ├── test_19a_fault.il │ │ │ ├── test_1_catch.il │ │ │ ├── test_1_fault.il │ │ │ ├── test_1_filter.il │ │ │ ├── test_1_finally.il │ │ │ ├── test_1_try.il │ │ │ ├── test_20_catch.il │ │ │ ├── test_20_fault.il │ │ │ ├── test_20_try.il │ │ │ ├── test_21_catch.il │ │ │ ├── test_21_fault.il │ │ │ ├── test_21_try.il │ │ │ ├── test_22_catch.il │ │ │ ├── test_22_try.il │ │ │ ├── test_24_catch.il │ │ │ ├── test_24_try.il │ │ │ ├── test_25_catch.il │ │ │ ├── test_25_try.il │ │ │ ├── test_26_catch.il │ │ │ ├── test_26_try.il │ │ │ ├── test_27_try.il │ │ │ ├── test_28_try.il │ │ │ ├── test_29_try.il │ │ │ ├── test_2_catch.il │ │ │ ├── test_2_fault.il │ │ │ ├── test_2_filter.il │ │ │ ├── test_2_finally.il │ │ │ ├── test_2_try.il │ │ │ ├── test_30_try.il │ │ │ ├── test_31_try.il │ │ │ ├── test_32_try.il │ │ │ ├── test_33_try.il │ │ │ ├── test_3_catch.il │ │ │ ├── test_3_fault.il │ │ │ ├── test_3_filter.il │ │ │ ├── test_3_finally.il │ │ │ ├── test_40_try.il │ │ │ ├── test_4_catch.il │ │ │ ├── test_4_fault.il │ │ │ ├── test_4_filter.il │ │ │ ├── test_4_finally.il │ │ │ ├── test_4_try.il │ │ │ ├── test_5_catch.il │ │ │ ├── test_5_fault.il │ │ │ ├── test_5_finally.il │ │ │ ├── test_5_try.il │ │ │ ├── test_6_catch.il │ │ │ ├── test_6_fault.il │ │ │ ├── test_6_filter.il │ │ │ ├── test_6_finally.il │ │ │ ├── test_6_try.il │ │ │ ├── test_7_catch.il │ │ │ ├── test_7_fault.il │ │ │ ├── test_7_filter.il │ │ │ ├── test_7_finally.il │ │ │ ├── test_7_try.il │ │ │ ├── test_8_catch.il │ │ │ ├── test_8_fault.il │ │ │ ├── test_8_filter.il │ │ │ ├── test_8_finally.il │ │ │ ├── test_8_finallyb.il │ │ │ ├── test_8_try.il │ │ │ ├── test_9_catch.il │ │ │ ├── test_9_fault.il │ │ │ ├── test_9_filter.il │ │ │ ├── test_9_finally.il │ │ │ └── test_9_try.il │ │ └── rdirs │ │ ├── ilinstructions │ │ ├── arglist_neg_a.il │ │ ├── arglist_pos.il │ │ ├── break_pos.il │ │ ├── call_neg1.il │ │ ├── calli_neg1.il │ │ ├── ldftn_neg1.il │ │ ├── ldloc_neg.il │ │ ├── ldloca_neg.il │ │ ├── localloc_neg.il │ │ ├── ret_neg.il │ │ └── rsources │ │ ├── ilvalidation │ │ ├── afterret_a.il │ │ ├── branch1.il │ │ ├── branch2.il │ │ ├── lastbyte1_a.il │ │ ├── leave1.il │ │ ├── leave2.il │ │ ├── rsources │ │ ├── tailcall1_a.il │ │ ├── tailcall2.il │ │ ├── tailcalli1_a.il │ │ ├── tailcalli2.il │ │ ├── tailcallvirt1.il │ │ ├── tailcallvirt2.il │ │ ├── tailfollow_a.il │ │ ├── templ_pos.il │ │ ├── unaligned_pos.il │ │ └── volatile_pos.il │ │ ├── opcodes │ │ ├── break.il │ │ ├── castclass.il │ │ ├── ckfinite.il │ │ ├── cpblk.il │ │ ├── cpobj.il │ │ ├── initblk.il │ │ ├── initobj_a.il │ │ ├── isinst.il │ │ ├── jmp.il │ │ ├── ldarg.il │ │ ├── ldarga.il │ │ ├── ldelem.il │ │ ├── ldelema.il │ │ ├── ldfld.il │ │ ├── ldflda.il │ │ ├── ldftn.il │ │ ├── ldind_i.il │ │ ├── ldind_i1.il │ │ ├── ldind_i4.il │ │ ├── ldind_i8.il │ │ ├── ldind_r4.il │ │ ├── ldind_r8.il │ │ ├── ldind_u.il │ │ ├── ldind_u1.il │ │ ├── ldind_u4.il │ │ ├── ldind_u8.il │ │ ├── ldloc.il │ │ ├── ldloca.il │ │ ├── ldobj.il │ │ ├── ldsfld.il │ │ ├── ldsflda.il │ │ ├── ldstr.il │ │ ├── localloc.il │ │ ├── newarr.il │ │ ├── refany.il │ │ ├── rsources │ │ ├── sizeof.il │ │ ├── starg.il │ │ ├── stelem1.il │ │ ├── stelem2.il │ │ ├── stind.il │ │ ├── stloc.il │ │ └── stobj.il │ │ ├── patch │ │ ├── arrbrefs.il │ │ ├── bad_endfilt_arg.il │ │ ├── bad_ldlen.il │ │ ├── bad_pop.il │ │ ├── bad_stelem_ref.il │ │ ├── bad_switch.il │ │ ├── bad_unbox_arg.il │ │ ├── br_in_try.il │ │ ├── brafterprfx.il │ │ ├── brtrue_bad_val.il │ │ ├── callvirt_val.il │ │ ├── callvirt_vt.il │ │ ├── castclass_not_ref.il │ │ ├── cpobj_need_val.il │ │ ├── dlg1.il │ │ ├── endfilt_must_be_1.il │ │ ├── endfilterout.il │ │ ├── endfinallyout.il │ │ ├── illegalop.il │ │ ├── jmp2.il │ │ ├── ldarga_bad_arg_num.il │ │ ├── ldelem_i4_bad_index.il │ │ ├── ldelema_bad_index.il │ │ ├── ldvftnst.il │ │ ├── leave_block.il │ │ ├── leave_in_try.il │ │ ├── locallocst.il │ │ ├── meth_abstract.il │ │ ├── nested_seh.il │ │ ├── newobj_stat.il │ │ ├── overlap_try.il │ │ ├── overlap_try1.il │ │ ├── rsources │ │ ├── seh5.il │ │ ├── seh_in_filter.il │ │ ├── stack_u.il │ │ ├── starg_bad_arg_num.il │ │ ├── stelem_i4_bad_index.il │ │ ├── stelem_ref_bad_index.il │ │ ├── stloc_bad_loc_num.il │ │ ├── stsfld_inst.il │ │ ├── stsfldtm.il │ │ ├── tail_ret_mismatch.il │ │ ├── tail_ret_mismatch1.il │ │ ├── throwint.il │ │ ├── unbox1.il │ │ ├── unbox_not_val.il │ │ ├── zerocode.il │ │ └── zerocodeloader.cs │ │ ├── rdirs │ │ └── scope │ │ ├── another.il │ │ ├── anothermethod.il │ │ ├── anothermethodnoassem.il │ │ ├── anothermethodnoassm.il │ │ ├── anothernoassm.il │ │ ├── anotherprivatescope.il │ │ ├── anotherprivatescopediffassem.il │ │ ├── anotherstruct.il │ │ ├── anotherstuct.il │ │ ├── fptr1.il │ │ ├── rsources │ │ ├── scope1-2.il │ │ ├── scope1-3.il │ │ ├── scope10-1.il │ │ ├── scope11-1.il │ │ ├── scope11-2.il │ │ ├── scope11-3.il │ │ ├── scope11-4.il │ │ ├── scope12-1.il │ │ ├── scope12-10.il │ │ ├── scope12-11.il │ │ ├── scope12-12.il │ │ ├── scope12-13.il │ │ ├── scope12-14.il │ │ ├── scope12-15.il │ │ ├── scope12-16.il │ │ ├── scope12-17.il │ │ ├── scope12-18.il │ │ ├── scope12-19.il │ │ ├── scope12-2.il │ │ ├── scope12-20.il │ │ ├── scope12-3.il │ │ ├── scope12-4.il │ │ ├── scope12-5.il │ │ ├── scope12-6.il │ │ ├── scope12-7.il │ │ ├── scope12-8.il │ │ ├── scope12-9.il │ │ ├── scope13-1.il │ │ ├── scope13-2.il │ │ ├── scope13-3.il │ │ ├── scope13-4.il │ │ ├── scope14-1.il │ │ ├── scope15-1.il │ │ ├── scope15-2.il │ │ ├── scope15-3.il │ │ ├── scope15-4.il │ │ ├── scope16-1.il │ │ ├── scope2-1.il │ │ ├── scope2-2.il │ │ ├── scope20.il │ │ ├── scope21.il │ │ ├── scope22.il │ │ ├── scope25.cs │ │ ├── scope3-1.il │ │ ├── scope4-1.il │ │ ├── scope4-2.il │ │ ├── scope4-3.il │ │ ├── scope5-1.il │ │ ├── scope5-2.il │ │ ├── scope6-1.il │ │ ├── scope6-2.il │ │ ├── scope7-1.il │ │ ├── scope7-2.il │ │ ├── scope8-1.il │ │ ├── scope8-2.il │ │ ├── scope8-3.il │ │ ├── scope8-4.il │ │ ├── scope8-5.il │ │ ├── scope8-6.il │ │ ├── scope8-7.il │ │ ├── scope9-1.il │ │ ├── scope9-10.il │ │ ├── scope9-11.il │ │ ├── scope9-12.il │ │ ├── scope9-14.il │ │ ├── scope9-2.il │ │ ├── scope9-3.il │ │ ├── scope9-4.il │ │ ├── scope9-5.il │ │ ├── scope9-6.il │ │ ├── scope9-7.il │ │ ├── scope9-8.il │ │ └── scope9-9.il └── utilities │ ├── arabic.txt │ ├── baseline.pl │ ├── chinesesim.txt │ ├── chinesetra.txt │ ├── english.txt │ ├── french.txt │ ├── fxtest.cs │ ├── genstrings.cs │ ├── genstrings.resources │ ├── german.txt │ ├── intlresource.cs │ ├── italian.txt │ ├── japanese.txt │ ├── korean.txt │ ├── loaderneg.cs │ ├── loadernegdel.cs │ ├── loaderpos.cs │ ├── log.cs │ ├── makefile.unix │ ├── makefile.win │ ├── norwegianbok.txt │ ├── norwegiannyn.txt │ ├── rsources │ ├── scenarioresult.cs │ ├── spanish.txt │ └── turkish.txt ├── tools ├── bin │ ├── binplace.cmd │ └── empty.cpp ├── binplace │ ├── binplace.c │ ├── binplace.cmd │ ├── binplace.rc │ ├── default.mac │ ├── make.cmd │ ├── makefile │ ├── makefile.in │ ├── makefile.win │ └── sources ├── build │ ├── binplace.cmd │ ├── build.c │ ├── build.h │ ├── build.rc │ ├── builddb.c │ ├── buildexe.c │ ├── buildinc.c │ ├── buildmak.c │ ├── buildscn.c │ ├── buildscr.cpp │ ├── buildscr.h │ ├── buildsrc.c │ ├── buildutl.c │ ├── default.mac │ ├── make.cmd │ ├── makefile │ ├── makefile.in │ ├── makefile.win │ ├── scrproc.h │ └── sources ├── cppmunge │ ├── cppmunge.c │ ├── default.mac │ ├── make.cmd │ ├── makefile │ ├── makefile.in │ ├── makefile.win │ └── sources ├── genpalunitable │ ├── genpalunitable.cpp │ ├── makefile │ └── sources ├── ildbconv │ ├── ildbconv.cpp │ ├── makefile │ ├── sources │ └── stdafx.h ├── nmake │ ├── action.cpp │ ├── binplace.cmd │ ├── build.cpp │ ├── charmap.cpp │ ├── charmap.h │ ├── command.cpp │ ├── def.mak │ ├── default.mac │ ├── error.cpp │ ├── errstr.rc │ ├── exec.cpp │ ├── file.cpp │ ├── getmsg.h │ ├── getrcmsg.c │ ├── globals.cpp │ ├── globals.h │ ├── grammar.h │ ├── ifexpr.cpp │ ├── init.cpp │ ├── inline.cpp │ ├── lexer.cpp │ ├── macro.cpp │ ├── make.cmd │ ├── makefile │ ├── makefile.in │ ├── makefile.inc │ ├── makefile.win │ ├── mkmsg.bat │ ├── nmake.cpp │ ├── nmake.h │ ├── nmmsg.h │ ├── nmmsg.us │ ├── nmtime.h │ ├── parser.cpp │ ├── precomp.h │ ├── print.cpp │ ├── proto.h │ ├── register.h │ ├── rpn.cpp │ ├── rpn.h │ ├── rule.cpp │ ├── sources │ ├── table.h │ ├── util.cpp │ ├── utilp.cpp │ ├── version.h │ ├── verstamp.h │ └── win32.cpp ├── palsatellite │ ├── makefile │ ├── palsatellite.cpp │ ├── palsatellite.rc │ └── sources └── resourcecompiler │ ├── binplace.cmd │ ├── empty.c │ ├── empty.rc │ ├── expeval.c │ ├── expeval.h │ ├── makefile │ ├── rc.c │ ├── rc.h │ └── sources ├── vscommon └── inc │ ├── asm_version.h │ ├── commacro.h │ ├── common.ver │ ├── product_version.h │ ├── version.h │ ├── verstamp.h │ ├── vsver.h │ └── vsverstrings.h └── win.env.bat /README.md: -------------------------------------------------------------------------------- 1 | # sscli 2 | Shared Source Common Language Infrastructure 2.0 Release 3 | -------------------------------------------------------------------------------- /clr/dac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/dac.mk -------------------------------------------------------------------------------- /clr/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/project.mk -------------------------------------------------------------------------------- /clr/src/bcl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/makefile -------------------------------------------------------------------------------- /clr/src/bcl/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/makefile.inc -------------------------------------------------------------------------------- /clr/src/bcl/mscorlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/mscorlib.txt -------------------------------------------------------------------------------- /clr/src/bcl/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/native.rc -------------------------------------------------------------------------------- /clr/src/bcl/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/sources -------------------------------------------------------------------------------- /clr/src/bcl/system/gc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/bcl/system/gc.cs -------------------------------------------------------------------------------- /clr/src/debug/di/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/debug/di/sources -------------------------------------------------------------------------------- /clr/src/debug/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/debug/dirs -------------------------------------------------------------------------------- /clr/src/debug/ee/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/debug/ee/dirs -------------------------------------------------------------------------------- /clr/src/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/dirs -------------------------------------------------------------------------------- /clr/src/dlls/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/dlls/dirs -------------------------------------------------------------------------------- /clr/src/fjit/fjit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/fjit.cpp -------------------------------------------------------------------------------- /clr/src/fjit/fjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/fjit.h -------------------------------------------------------------------------------- /clr/src/fjit/fjitcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/fjitcore.h -------------------------------------------------------------------------------- /clr/src/fjit/fjitdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/fjitdef.h -------------------------------------------------------------------------------- /clr/src/fjit/jitpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/jitpch.h -------------------------------------------------------------------------------- /clr/src/fjit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/makefile -------------------------------------------------------------------------------- /clr/src/fjit/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/native.rc -------------------------------------------------------------------------------- /clr/src/fjit/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fjit/sources -------------------------------------------------------------------------------- /clr/src/fusion/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fusion/dirs -------------------------------------------------------------------------------- /clr/src/fusion/inc/adl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fusion/inc/adl.h -------------------------------------------------------------------------------- /clr/src/fusion/inc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/fusion/inc/asm.h -------------------------------------------------------------------------------- /clr/src/ilasm/asmenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/asmenum.h -------------------------------------------------------------------------------- /clr/src/ilasm/asmman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/asmman.cpp -------------------------------------------------------------------------------- /clr/src/ilasm/asmman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/asmman.hpp -------------------------------------------------------------------------------- /clr/src/ilasm/asmparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/asmparse.h -------------------------------------------------------------------------------- /clr/src/ilasm/asmparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/asmparse.y -------------------------------------------------------------------------------- /clr/src/ilasm/assem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/assem.cpp -------------------------------------------------------------------------------- /clr/src/ilasm/binstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/binstr.h -------------------------------------------------------------------------------- /clr/src/ilasm/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/class.hpp -------------------------------------------------------------------------------- /clr/src/ilasm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/main.cpp -------------------------------------------------------------------------------- /clr/src/ilasm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/makefile -------------------------------------------------------------------------------- /clr/src/ilasm/method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/method.cpp -------------------------------------------------------------------------------- /clr/src/ilasm/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/method.hpp -------------------------------------------------------------------------------- /clr/src/ilasm/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/native.rc -------------------------------------------------------------------------------- /clr/src/ilasm/nvpair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/nvpair.h -------------------------------------------------------------------------------- /clr/src/ilasm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/sources -------------------------------------------------------------------------------- /clr/src/ilasm/typar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/typar.hpp -------------------------------------------------------------------------------- /clr/src/ilasm/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ilasm/writer.cpp -------------------------------------------------------------------------------- /clr/src/ildasm/ceeload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/ceeload.h -------------------------------------------------------------------------------- /clr/src/ildasm/dasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dasm.cpp -------------------------------------------------------------------------------- /clr/src/ildasm/dasm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dasm.rc -------------------------------------------------------------------------------- /clr/src/ildasm/dasm_sz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dasm_sz.h -------------------------------------------------------------------------------- /clr/src/ildasm/dasmgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dasmgui.h -------------------------------------------------------------------------------- /clr/src/ildasm/dis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dis.cpp -------------------------------------------------------------------------------- /clr/src/ildasm/dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dis.h -------------------------------------------------------------------------------- /clr/src/ildasm/dman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dman.cpp -------------------------------------------------------------------------------- /clr/src/ildasm/dres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/dres.cpp -------------------------------------------------------------------------------- /clr/src/ildasm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/makefile -------------------------------------------------------------------------------- /clr/src/ildasm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/sources -------------------------------------------------------------------------------- /clr/src/ildasm/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ildasm/util.hpp -------------------------------------------------------------------------------- /clr/src/inc/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/arraylist.h -------------------------------------------------------------------------------- /clr/src/inc/bbsweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/bbsweep.h -------------------------------------------------------------------------------- /clr/src/inc/bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/bitmask.h -------------------------------------------------------------------------------- /clr/src/inc/bitmask.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/bitmask.inl -------------------------------------------------------------------------------- /clr/src/inc/cahlpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/cahlpr.h -------------------------------------------------------------------------------- /clr/src/inc/ceegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/ceegen.h -------------------------------------------------------------------------------- /clr/src/inc/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/check.h -------------------------------------------------------------------------------- /clr/src/inc/check.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/check.inl -------------------------------------------------------------------------------- /clr/src/inc/classfac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/classfac.h -------------------------------------------------------------------------------- /clr/src/inc/clrdata.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/clrdata.idl -------------------------------------------------------------------------------- /clr/src/inc/clrhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/clrhost.h -------------------------------------------------------------------------------- /clr/src/inc/clrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/clrtypes.h -------------------------------------------------------------------------------- /clr/src/inc/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/contract.h -------------------------------------------------------------------------------- /clr/src/inc/contract.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/contract.inl -------------------------------------------------------------------------------- /clr/src/inc/contxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/contxt.h -------------------------------------------------------------------------------- /clr/src/inc/cor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/cor.h -------------------------------------------------------------------------------- /clr/src/inc/cordbpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/cordbpriv.h -------------------------------------------------------------------------------- /clr/src/inc/cordebug.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/cordebug.idl -------------------------------------------------------------------------------- /clr/src/inc/corerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corerror.h -------------------------------------------------------------------------------- /clr/src/inc/corexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corexcep.h -------------------------------------------------------------------------------- /clr/src/inc/corffi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corffi.idl -------------------------------------------------------------------------------- /clr/src/inc/corhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corhdr.h -------------------------------------------------------------------------------- /clr/src/inc/corhlpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corhlpr.cpp -------------------------------------------------------------------------------- /clr/src/inc/corhlpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corhlpr.h -------------------------------------------------------------------------------- /clr/src/inc/corhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corhost.h -------------------------------------------------------------------------------- /clr/src/inc/corimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corimage.h -------------------------------------------------------------------------------- /clr/src/inc/corinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corinfo.h -------------------------------------------------------------------------------- /clr/src/inc/corjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corjit.h -------------------------------------------------------------------------------- /clr/src/inc/corperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corperm.h -------------------------------------------------------------------------------- /clr/src/inc/corperme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corperme.h -------------------------------------------------------------------------------- /clr/src/inc/corpermp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corpermp.h -------------------------------------------------------------------------------- /clr/src/inc/corpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corpolicy.h -------------------------------------------------------------------------------- /clr/src/inc/corpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corpriv.h -------------------------------------------------------------------------------- /clr/src/inc/corprof.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corprof.idl -------------------------------------------------------------------------------- /clr/src/inc/corpub.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/corpub.idl -------------------------------------------------------------------------------- /clr/src/inc/crstlevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/crstlevels.h -------------------------------------------------------------------------------- /clr/src/inc/crtwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/crtwrap.h -------------------------------------------------------------------------------- /clr/src/inc/daccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/daccess.h -------------------------------------------------------------------------------- /clr/src/inc/dacprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/dacprivate.h -------------------------------------------------------------------------------- /clr/src/inc/dacvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/dacvars.h -------------------------------------------------------------------------------- /clr/src/inc/dbgalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/dbgalloc.h -------------------------------------------------------------------------------- /clr/src/inc/dbgmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/dbgmeta.h -------------------------------------------------------------------------------- /clr/src/inc/declsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/declsec.h -------------------------------------------------------------------------------- /clr/src/inc/dlwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/dlwrap.h -------------------------------------------------------------------------------- /clr/src/inc/eetwain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/eetwain.h -------------------------------------------------------------------------------- /clr/src/inc/eexcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/eexcp.h -------------------------------------------------------------------------------- /clr/src/inc/enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/enc.h -------------------------------------------------------------------------------- /clr/src/inc/eventtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/eventtrace.h -------------------------------------------------------------------------------- /clr/src/inc/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/ex.h -------------------------------------------------------------------------------- /clr/src/inc/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/factory.h -------------------------------------------------------------------------------- /clr/src/inc/factory.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/factory.inl -------------------------------------------------------------------------------- /clr/src/inc/fusion.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/fusion.idl -------------------------------------------------------------------------------- /clr/src/inc/fusionbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/fusionbind.h -------------------------------------------------------------------------------- /clr/src/inc/fusionsink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/fusionsink.h -------------------------------------------------------------------------------- /clr/src/inc/gcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/gcdump.h -------------------------------------------------------------------------------- /clr/src/inc/gchost.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/gchost.idl -------------------------------------------------------------------------------- /clr/src/inc/gcinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/gcinfo.h -------------------------------------------------------------------------------- /clr/src/inc/genrops.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/genrops.pl -------------------------------------------------------------------------------- /clr/src/inc/holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/holder.h -------------------------------------------------------------------------------- /clr/src/inc/holderinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/holderinst.h -------------------------------------------------------------------------------- /clr/src/inc/hrex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/hrex.h -------------------------------------------------------------------------------- /clr/src/inc/il_kywd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/il_kywd.h -------------------------------------------------------------------------------- /clr/src/inc/intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/intrinsic.h -------------------------------------------------------------------------------- /clr/src/inc/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/iterator.h -------------------------------------------------------------------------------- /clr/src/inc/jithelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/jithelpers.h -------------------------------------------------------------------------------- /clr/src/inc/jitperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/jitperf.h -------------------------------------------------------------------------------- /clr/src/inc/loaderheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/loaderheap.h -------------------------------------------------------------------------------- /clr/src/inc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/log.h -------------------------------------------------------------------------------- /clr/src/inc/loglf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/loglf.h -------------------------------------------------------------------------------- /clr/src/inc/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/machine.h -------------------------------------------------------------------------------- /clr/src/inc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/makefile -------------------------------------------------------------------------------- /clr/src/inc/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/makefile.inc -------------------------------------------------------------------------------- /clr/src/inc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/md5.h -------------------------------------------------------------------------------- /clr/src/inc/mdcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/mdcommon.h -------------------------------------------------------------------------------- /clr/src/inc/memorypool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/memorypool.h -------------------------------------------------------------------------------- /clr/src/inc/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/metadata.h -------------------------------------------------------------------------------- /clr/src/inc/mscorcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/mscorcfg.h -------------------------------------------------------------------------------- /clr/src/inc/mscoree.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/mscoree.idl -------------------------------------------------------------------------------- /clr/src/inc/new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/new.hpp -------------------------------------------------------------------------------- /clr/src/inc/nsutilpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/nsutilpriv.h -------------------------------------------------------------------------------- /clr/src/inc/opcode.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/opcode.def -------------------------------------------------------------------------------- /clr/src/inc/openum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/openum.h -------------------------------------------------------------------------------- /clr/src/inc/opinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/opinfo.h -------------------------------------------------------------------------------- /clr/src/inc/ostype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/ostype.h -------------------------------------------------------------------------------- /clr/src/inc/outstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/outstring.h -------------------------------------------------------------------------------- /clr/src/inc/palclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/palclr.h -------------------------------------------------------------------------------- /clr/src/inc/pedecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/pedecoder.h -------------------------------------------------------------------------------- /clr/src/inc/perflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/perflog.h -------------------------------------------------------------------------------- /clr/src/inc/posterror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/posterror.h -------------------------------------------------------------------------------- /clr/src/inc/rangetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/rangetree.h -------------------------------------------------------------------------------- /clr/src/inc/regdisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/regdisp.h -------------------------------------------------------------------------------- /clr/src/inc/safecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/safecast.h -------------------------------------------------------------------------------- /clr/src/inc/safemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/safemath.h -------------------------------------------------------------------------------- /clr/src/inc/safewrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/safewrap.h -------------------------------------------------------------------------------- /clr/src/inc/sarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sarray.h -------------------------------------------------------------------------------- /clr/src/inc/sarray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sarray.inl -------------------------------------------------------------------------------- /clr/src/inc/sbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sbuffer.h -------------------------------------------------------------------------------- /clr/src/inc/sbuffer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sbuffer.inl -------------------------------------------------------------------------------- /clr/src/inc/setupcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/setupcodes.h -------------------------------------------------------------------------------- /clr/src/inc/shash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/shash.h -------------------------------------------------------------------------------- /clr/src/inc/shash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/shash.inl -------------------------------------------------------------------------------- /clr/src/inc/shimload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/shimload.h -------------------------------------------------------------------------------- /clr/src/inc/sighelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sighelper.h -------------------------------------------------------------------------------- /clr/src/inc/sigparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sigparser.h -------------------------------------------------------------------------------- /clr/src/inc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sources -------------------------------------------------------------------------------- /clr/src/inc/sstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sstring.h -------------------------------------------------------------------------------- /clr/src/inc/sstring.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/sstring.inl -------------------------------------------------------------------------------- /clr/src/inc/stackframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stackframe.h -------------------------------------------------------------------------------- /clr/src/inc/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stacktrace.h -------------------------------------------------------------------------------- /clr/src/inc/stdmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stdmacros.h -------------------------------------------------------------------------------- /clr/src/inc/stgpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stgpool.h -------------------------------------------------------------------------------- /clr/src/inc/stgpooli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stgpooli.h -------------------------------------------------------------------------------- /clr/src/inc/stresslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/stresslog.h -------------------------------------------------------------------------------- /clr/src/inc/strongname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/strongname.h -------------------------------------------------------------------------------- /clr/src/inc/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/switches.h -------------------------------------------------------------------------------- /clr/src/inc/testhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/testhook.h -------------------------------------------------------------------------------- /clr/src/inc/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/threadpool.h -------------------------------------------------------------------------------- /clr/src/inc/timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/timeline.h -------------------------------------------------------------------------------- /clr/src/inc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/timer.h -------------------------------------------------------------------------------- /clr/src/inc/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/tls.h -------------------------------------------------------------------------------- /clr/src/inc/unsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/unsafe.h -------------------------------------------------------------------------------- /clr/src/inc/utilcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/utilcode.h -------------------------------------------------------------------------------- /clr/src/inc/utsem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/utsem.h -------------------------------------------------------------------------------- /clr/src/inc/vererror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/vererror.h -------------------------------------------------------------------------------- /clr/src/inc/vptr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/vptr_list.h -------------------------------------------------------------------------------- /clr/src/inc/winwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/winwrap.h -------------------------------------------------------------------------------- /clr/src/inc/wsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/wsinfo.h -------------------------------------------------------------------------------- /clr/src/inc/xclrdata.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/xclrdata.idl -------------------------------------------------------------------------------- /clr/src/inc/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/inc/xmlparser.h -------------------------------------------------------------------------------- /clr/src/ipcman/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ipcman/dirs -------------------------------------------------------------------------------- /clr/src/ipcman/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/ipcman/stdafx.h -------------------------------------------------------------------------------- /clr/src/jit64/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/dirs -------------------------------------------------------------------------------- /clr/src/jit64/inc/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/inc/jit.h -------------------------------------------------------------------------------- /clr/src/jit64/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/native.rc -------------------------------------------------------------------------------- /clr/src/jit64/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/reader.cpp -------------------------------------------------------------------------------- /clr/src/jit64/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/reader.h -------------------------------------------------------------------------------- /clr/src/jit64/readerir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/jit64/readerir.h -------------------------------------------------------------------------------- /clr/src/md/compiler/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/compiler/dirs -------------------------------------------------------------------------------- /clr/src/md/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/dirs -------------------------------------------------------------------------------- /clr/src/md/enc/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/enc/dirs -------------------------------------------------------------------------------- /clr/src/md/enc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/enc/stdafx.h -------------------------------------------------------------------------------- /clr/src/md/enc/stgio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/enc/stgio.cpp -------------------------------------------------------------------------------- /clr/src/md/inc/mdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/inc/mdlog.h -------------------------------------------------------------------------------- /clr/src/md/inc/rwutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/inc/rwutil.h -------------------------------------------------------------------------------- /clr/src/md/inc/stgio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/inc/stgio.h -------------------------------------------------------------------------------- /clr/src/md/runtime/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/md/runtime/dirs -------------------------------------------------------------------------------- /clr/src/profile/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/profile/dirs -------------------------------------------------------------------------------- /clr/src/profile/ee/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/profile/ee/sem.h -------------------------------------------------------------------------------- /clr/src/toolbox/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/toolbox/dirs -------------------------------------------------------------------------------- /clr/src/tools/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/tools/dirs -------------------------------------------------------------------------------- /clr/src/tools/gac/gac.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/tools/gac/gac.rc -------------------------------------------------------------------------------- /clr/src/tools/gac/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/tools/gac/list.h -------------------------------------------------------------------------------- /clr/src/utilcode/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/utilcode/dirs -------------------------------------------------------------------------------- /clr/src/utilcode/ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/utilcode/ex.cpp -------------------------------------------------------------------------------- /clr/src/utilcode/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/utilcode/log.cpp -------------------------------------------------------------------------------- /clr/src/utilcode/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/utilcode/md5.cpp -------------------------------------------------------------------------------- /clr/src/utilcode/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/utilcode/tls.cpp -------------------------------------------------------------------------------- /clr/src/vm/appdomain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/appdomain.cpp -------------------------------------------------------------------------------- /clr/src/vm/appdomain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/appdomain.hpp -------------------------------------------------------------------------------- /clr/src/vm/appdomain.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/appdomain.inl -------------------------------------------------------------------------------- /clr/src/vm/argslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/argslot.h -------------------------------------------------------------------------------- /clr/src/vm/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/array.cpp -------------------------------------------------------------------------------- /clr/src/vm/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/array.h -------------------------------------------------------------------------------- /clr/src/vm/assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/assembly.cpp -------------------------------------------------------------------------------- /clr/src/vm/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/assembly.hpp -------------------------------------------------------------------------------- /clr/src/vm/binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/binder.cpp -------------------------------------------------------------------------------- /clr/src/vm/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/binder.h -------------------------------------------------------------------------------- /clr/src/vm/ceeload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ceeload.cpp -------------------------------------------------------------------------------- /clr/src/vm/ceeload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ceeload.h -------------------------------------------------------------------------------- /clr/src/vm/ceeload.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ceeload.inl -------------------------------------------------------------------------------- /clr/src/vm/ceemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ceemain.cpp -------------------------------------------------------------------------------- /clr/src/vm/ceemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ceemain.h -------------------------------------------------------------------------------- /clr/src/vm/cgensys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/cgensys.h -------------------------------------------------------------------------------- /clr/src/vm/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/class.cpp -------------------------------------------------------------------------------- /clr/src/vm/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/class.h -------------------------------------------------------------------------------- /clr/src/vm/class.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/class.inl -------------------------------------------------------------------------------- /clr/src/vm/classnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/classnames.h -------------------------------------------------------------------------------- /clr/src/vm/clrex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/clrex.cpp -------------------------------------------------------------------------------- /clr/src/vm/clrex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/clrex.h -------------------------------------------------------------------------------- /clr/src/vm/clsload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/clsload.cpp -------------------------------------------------------------------------------- /clr/src/vm/clsload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/clsload.hpp -------------------------------------------------------------------------------- /clr/src/vm/clsload.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/clsload.inl -------------------------------------------------------------------------------- /clr/src/vm/codeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/codeman.cpp -------------------------------------------------------------------------------- /clr/src/vm/codeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/codeman.h -------------------------------------------------------------------------------- /clr/src/vm/codeman.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/codeman.inl -------------------------------------------------------------------------------- /clr/src/vm/comcurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comcurrency.h -------------------------------------------------------------------------------- /clr/src/vm/comdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comdatetime.h -------------------------------------------------------------------------------- /clr/src/vm/comdecimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comdecimal.h -------------------------------------------------------------------------------- /clr/src/vm/comdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comdelegate.h -------------------------------------------------------------------------------- /clr/src/vm/comdynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comdynamic.h -------------------------------------------------------------------------------- /clr/src/vm/commodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/commodule.cpp -------------------------------------------------------------------------------- /clr/src/vm/commodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/commodule.h -------------------------------------------------------------------------------- /clr/src/vm/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/common.cpp -------------------------------------------------------------------------------- /clr/src/vm/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/common.h -------------------------------------------------------------------------------- /clr/src/vm/comnumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comnumber.cpp -------------------------------------------------------------------------------- /clr/src/vm/comnumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comnumber.h -------------------------------------------------------------------------------- /clr/src/vm/comobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comobject.cpp -------------------------------------------------------------------------------- /clr/src/vm/comobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comobject.h -------------------------------------------------------------------------------- /clr/src/vm/comstreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comstreams.h -------------------------------------------------------------------------------- /clr/src/vm/comstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comstring.cpp -------------------------------------------------------------------------------- /clr/src/vm/comstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comstring.h -------------------------------------------------------------------------------- /clr/src/vm/comsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comsystem.cpp -------------------------------------------------------------------------------- /clr/src/vm/comsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comsystem.h -------------------------------------------------------------------------------- /clr/src/vm/comvarargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comvarargs.h -------------------------------------------------------------------------------- /clr/src/vm/comvariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/comvariant.h -------------------------------------------------------------------------------- /clr/src/vm/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/context.h -------------------------------------------------------------------------------- /clr/src/vm/contexts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/contexts.cpp -------------------------------------------------------------------------------- /clr/src/vm/corhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/corhost.cpp -------------------------------------------------------------------------------- /clr/src/vm/crst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/crst.cpp -------------------------------------------------------------------------------- /clr/src/vm/crst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/crst.h -------------------------------------------------------------------------------- /clr/src/vm/cryptapis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/cryptapis.h -------------------------------------------------------------------------------- /clr/src/vm/ctxtcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ctxtcall.h -------------------------------------------------------------------------------- /clr/src/vm/debughelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/debughelp.cpp -------------------------------------------------------------------------------- /clr/src/vm/decodemd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/decodemd.cpp -------------------------------------------------------------------------------- /clr/src/vm/decodemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/decodemd.h -------------------------------------------------------------------------------- /clr/src/vm/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/dirs -------------------------------------------------------------------------------- /clr/src/vm/dllimport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/dllimport.cpp -------------------------------------------------------------------------------- /clr/src/vm/dllimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/dllimport.h -------------------------------------------------------------------------------- /clr/src/vm/domainfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/domainfile.h -------------------------------------------------------------------------------- /clr/src/vm/ecall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ecall.cpp -------------------------------------------------------------------------------- /clr/src/vm/ecall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ecall.h -------------------------------------------------------------------------------- /clr/src/vm/ecmakey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ecmakey.h -------------------------------------------------------------------------------- /clr/src/vm/eecallconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eecallconv.h -------------------------------------------------------------------------------- /clr/src/vm/eeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eeconfig.cpp -------------------------------------------------------------------------------- /clr/src/vm/eeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eeconfig.h -------------------------------------------------------------------------------- /clr/src/vm/eecontract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eecontract.h -------------------------------------------------------------------------------- /clr/src/vm/eehash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eehash.cpp -------------------------------------------------------------------------------- /clr/src/vm/eehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eehash.h -------------------------------------------------------------------------------- /clr/src/vm/eepolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eepolicy.cpp -------------------------------------------------------------------------------- /clr/src/vm/eepolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eepolicy.h -------------------------------------------------------------------------------- /clr/src/vm/eetwain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/eetwain.cpp -------------------------------------------------------------------------------- /clr/src/vm/encee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/encee.h -------------------------------------------------------------------------------- /clr/src/vm/excep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/excep.cpp -------------------------------------------------------------------------------- /clr/src/vm/excep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/excep.h -------------------------------------------------------------------------------- /clr/src/vm/exinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/exinfo.cpp -------------------------------------------------------------------------------- /clr/src/vm/exinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/exinfo.h -------------------------------------------------------------------------------- /clr/src/vm/exstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/exstate.cpp -------------------------------------------------------------------------------- /clr/src/vm/exstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/exstate.h -------------------------------------------------------------------------------- /clr/src/vm/fcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/fcall.cpp -------------------------------------------------------------------------------- /clr/src/vm/fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/fcall.h -------------------------------------------------------------------------------- /clr/src/vm/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/field.cpp -------------------------------------------------------------------------------- /clr/src/vm/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/field.h -------------------------------------------------------------------------------- /clr/src/vm/fptrstubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/fptrstubs.cpp -------------------------------------------------------------------------------- /clr/src/vm/fptrstubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/fptrstubs.h -------------------------------------------------------------------------------- /clr/src/vm/frames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/frames.cpp -------------------------------------------------------------------------------- /clr/src/vm/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/frames.h -------------------------------------------------------------------------------- /clr/src/vm/fusionwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/fusionwrap.h -------------------------------------------------------------------------------- /clr/src/vm/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gc.h -------------------------------------------------------------------------------- /clr/src/vm/gccommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gccommon.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcdecode.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcdesc.h -------------------------------------------------------------------------------- /clr/src/vm/gcee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcee.cpp -------------------------------------------------------------------------------- /clr/src/vm/gceesvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gceesvr.cpp -------------------------------------------------------------------------------- /clr/src/vm/gceewks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gceewks.cpp -------------------------------------------------------------------------------- /clr/src/vm/gchost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gchost.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcimpl.h -------------------------------------------------------------------------------- /clr/src/vm/gcscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcscan.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcscan.h -------------------------------------------------------------------------------- /clr/src/vm/gcsmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcsmp.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcsmppriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcsmppriv.h -------------------------------------------------------------------------------- /clr/src/vm/gcsvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcsvr.cpp -------------------------------------------------------------------------------- /clr/src/vm/gcwks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gcwks.cpp -------------------------------------------------------------------------------- /clr/src/vm/genericdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/genericdict.h -------------------------------------------------------------------------------- /clr/src/vm/generics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/generics.cpp -------------------------------------------------------------------------------- /clr/src/vm/generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/generics.h -------------------------------------------------------------------------------- /clr/src/vm/genmeth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/genmeth.cpp -------------------------------------------------------------------------------- /clr/src/vm/gmheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gmheap.cpp -------------------------------------------------------------------------------- /clr/src/vm/gmheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gmheap.hpp -------------------------------------------------------------------------------- /clr/src/vm/gms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/gms.h -------------------------------------------------------------------------------- /clr/src/vm/h2inc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/h2inc.pl -------------------------------------------------------------------------------- /clr/src/vm/handletable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/handletable.h -------------------------------------------------------------------------------- /clr/src/vm/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/hash.cpp -------------------------------------------------------------------------------- /clr/src/vm/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/hash.h -------------------------------------------------------------------------------- /clr/src/vm/hosting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/hosting.cpp -------------------------------------------------------------------------------- /clr/src/vm/hosting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/hosting.h -------------------------------------------------------------------------------- /clr/src/vm/i386/gmsasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/i386/gmsasm.s -------------------------------------------------------------------------------- /clr/src/vm/i386/gmscpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/i386/gmscpu.h -------------------------------------------------------------------------------- /clr/src/vm/ibclogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ibclogger.h -------------------------------------------------------------------------------- /clr/src/vm/ildump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ildump.h -------------------------------------------------------------------------------- /clr/src/vm/ilstubcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ilstubcache.h -------------------------------------------------------------------------------- /clr/src/vm/interoputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/interoputil.h -------------------------------------------------------------------------------- /clr/src/vm/invokeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/invokeutil.h -------------------------------------------------------------------------------- /clr/src/vm/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/list.cpp -------------------------------------------------------------------------------- /clr/src/vm/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/list.h -------------------------------------------------------------------------------- /clr/src/vm/listlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/listlock.cpp -------------------------------------------------------------------------------- /clr/src/vm/listlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/listlock.h -------------------------------------------------------------------------------- /clr/src/vm/listlock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/listlock.inl -------------------------------------------------------------------------------- /clr/src/vm/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/makefile.inc -------------------------------------------------------------------------------- /clr/src/vm/marshaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/marshaler.h -------------------------------------------------------------------------------- /clr/src/vm/memberload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/memberload.h -------------------------------------------------------------------------------- /clr/src/vm/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/message.cpp -------------------------------------------------------------------------------- /clr/src/vm/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/message.h -------------------------------------------------------------------------------- /clr/src/vm/metasig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/metasig.h -------------------------------------------------------------------------------- /clr/src/vm/method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/method.cpp -------------------------------------------------------------------------------- /clr/src/vm/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/method.hpp -------------------------------------------------------------------------------- /clr/src/vm/method.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/method.inl -------------------------------------------------------------------------------- /clr/src/vm/methodimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/methodimpl.h -------------------------------------------------------------------------------- /clr/src/vm/methoditer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/methoditer.h -------------------------------------------------------------------------------- /clr/src/vm/methodtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/methodtable.h -------------------------------------------------------------------------------- /clr/src/vm/ml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ml.cpp -------------------------------------------------------------------------------- /clr/src/vm/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ml.h -------------------------------------------------------------------------------- /clr/src/vm/mlcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlcache.cpp -------------------------------------------------------------------------------- /clr/src/vm/mlcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlcache.h -------------------------------------------------------------------------------- /clr/src/vm/mlgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlgen.cpp -------------------------------------------------------------------------------- /clr/src/vm/mlgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlgen.h -------------------------------------------------------------------------------- /clr/src/vm/mlinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlinfo.cpp -------------------------------------------------------------------------------- /clr/src/vm/mlinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlinfo.h -------------------------------------------------------------------------------- /clr/src/vm/mlopdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mlopdef.h -------------------------------------------------------------------------------- /clr/src/vm/mscorlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mscorlib.h -------------------------------------------------------------------------------- /clr/src/vm/mtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/mtypes.h -------------------------------------------------------------------------------- /clr/src/vm/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/namespace.h -------------------------------------------------------------------------------- /clr/src/vm/nsenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/nsenums.h -------------------------------------------------------------------------------- /clr/src/vm/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/object.cpp -------------------------------------------------------------------------------- /clr/src/vm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/object.h -------------------------------------------------------------------------------- /clr/src/vm/object.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/object.inl -------------------------------------------------------------------------------- /clr/src/vm/objectclone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/objectclone.h -------------------------------------------------------------------------------- /clr/src/vm/objectlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/objectlist.h -------------------------------------------------------------------------------- /clr/src/vm/olevariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/olevariant.h -------------------------------------------------------------------------------- /clr/src/vm/pefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/pefile.cpp -------------------------------------------------------------------------------- /clr/src/vm/pefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/pefile.h -------------------------------------------------------------------------------- /clr/src/vm/pefile.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/pefile.inl -------------------------------------------------------------------------------- /clr/src/vm/peimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/peimage.cpp -------------------------------------------------------------------------------- /clr/src/vm/peimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/peimage.h -------------------------------------------------------------------------------- /clr/src/vm/peimage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/peimage.inl -------------------------------------------------------------------------------- /clr/src/vm/pendingload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/pendingload.h -------------------------------------------------------------------------------- /clr/src/vm/ppc/cgencpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ppc/cgencpu.h -------------------------------------------------------------------------------- /clr/src/vm/ppc/gmsasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ppc/gmsasm.s -------------------------------------------------------------------------------- /clr/src/vm/ppc/gmscpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ppc/gmscpu.h -------------------------------------------------------------------------------- /clr/src/vm/ppc/jithelp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/ppc/jithelp.s -------------------------------------------------------------------------------- /clr/src/vm/precode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/precode.cpp -------------------------------------------------------------------------------- /clr/src/vm/precode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/precode.h -------------------------------------------------------------------------------- /clr/src/vm/prestub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/prestub.cpp -------------------------------------------------------------------------------- /clr/src/vm/remoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/remoting.cpp -------------------------------------------------------------------------------- /clr/src/vm/remoting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/remoting.h -------------------------------------------------------------------------------- /clr/src/vm/rexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/rexcep.h -------------------------------------------------------------------------------- /clr/src/vm/rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/rwlock.cpp -------------------------------------------------------------------------------- /clr/src/vm/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/rwlock.h -------------------------------------------------------------------------------- /clr/src/vm/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/security.h -------------------------------------------------------------------------------- /clr/src/vm/security.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/security.inl -------------------------------------------------------------------------------- /clr/src/vm/sigformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/sigformat.cpp -------------------------------------------------------------------------------- /clr/src/vm/sigformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/sigformat.h -------------------------------------------------------------------------------- /clr/src/vm/siginfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/siginfo.cpp -------------------------------------------------------------------------------- /clr/src/vm/siginfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/siginfo.hpp -------------------------------------------------------------------------------- /clr/src/vm/sourceline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/sourceline.h -------------------------------------------------------------------------------- /clr/src/vm/sources.dac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/sources.dac -------------------------------------------------------------------------------- /clr/src/vm/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/sources.inc -------------------------------------------------------------------------------- /clr/src/vm/spinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/spinlock.cpp -------------------------------------------------------------------------------- /clr/src/vm/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/spinlock.h -------------------------------------------------------------------------------- /clr/src/vm/stackprobe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stackprobe.h -------------------------------------------------------------------------------- /clr/src/vm/stackwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stackwalk.cpp -------------------------------------------------------------------------------- /clr/src/vm/stackwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stackwalk.h -------------------------------------------------------------------------------- /clr/src/vm/stubgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stubgen.h -------------------------------------------------------------------------------- /clr/src/vm/stublink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stublink.cpp -------------------------------------------------------------------------------- /clr/src/vm/stublink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stublink.h -------------------------------------------------------------------------------- /clr/src/vm/stublink.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stublink.inl -------------------------------------------------------------------------------- /clr/src/vm/stubmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stubmgr.cpp -------------------------------------------------------------------------------- /clr/src/vm/stubmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/stubmgr.h -------------------------------------------------------------------------------- /clr/src/vm/syncblk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/syncblk.cpp -------------------------------------------------------------------------------- /clr/src/vm/syncblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/syncblk.h -------------------------------------------------------------------------------- /clr/src/vm/syncblk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/syncblk.inl -------------------------------------------------------------------------------- /clr/src/vm/syncclean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/syncclean.cpp -------------------------------------------------------------------------------- /clr/src/vm/syncclean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/syncclean.hpp -------------------------------------------------------------------------------- /clr/src/vm/synch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/synch.cpp -------------------------------------------------------------------------------- /clr/src/vm/synch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/synch.h -------------------------------------------------------------------------------- /clr/src/vm/testhookmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/testhookmgr.h -------------------------------------------------------------------------------- /clr/src/vm/thekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/thekey.h -------------------------------------------------------------------------------- /clr/src/vm/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/threads.cpp -------------------------------------------------------------------------------- /clr/src/vm/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/threads.h -------------------------------------------------------------------------------- /clr/src/vm/threads.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/threads.inl -------------------------------------------------------------------------------- /clr/src/vm/tokeniter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/tokeniter.cpp -------------------------------------------------------------------------------- /clr/src/vm/tokeniter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/tokeniter.hpp -------------------------------------------------------------------------------- /clr/src/vm/typectxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typectxt.cpp -------------------------------------------------------------------------------- /clr/src/vm/typectxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typectxt.h -------------------------------------------------------------------------------- /clr/src/vm/typedesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typedesc.cpp -------------------------------------------------------------------------------- /clr/src/vm/typedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typedesc.h -------------------------------------------------------------------------------- /clr/src/vm/typedesc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typedesc.inl -------------------------------------------------------------------------------- /clr/src/vm/typehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typehandle.h -------------------------------------------------------------------------------- /clr/src/vm/typehash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typehash.cpp -------------------------------------------------------------------------------- /clr/src/vm/typehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typehash.h -------------------------------------------------------------------------------- /clr/src/vm/typekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typekey.h -------------------------------------------------------------------------------- /clr/src/vm/typeparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typeparse.cpp -------------------------------------------------------------------------------- /clr/src/vm/typeparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typeparse.h -------------------------------------------------------------------------------- /clr/src/vm/typestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/typestring.h -------------------------------------------------------------------------------- /clr/src/vm/umthunkhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/umthunkhash.h -------------------------------------------------------------------------------- /clr/src/vm/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/util.cpp -------------------------------------------------------------------------------- /clr/src/vm/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/util.hpp -------------------------------------------------------------------------------- /clr/src/vm/validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/validator.cpp -------------------------------------------------------------------------------- /clr/src/vm/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/vars.cpp -------------------------------------------------------------------------------- /clr/src/vm/vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/vars.hpp -------------------------------------------------------------------------------- /clr/src/vm/verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/verifier.cpp -------------------------------------------------------------------------------- /clr/src/vm/verifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/verifier.hpp -------------------------------------------------------------------------------- /clr/src/vm/vertable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/vertable.h -------------------------------------------------------------------------------- /clr/src/vm/vmholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/vmholder.h -------------------------------------------------------------------------------- /clr/src/vm/wks1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks1/makefile -------------------------------------------------------------------------------- /clr/src/vm/wks1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks1/sources -------------------------------------------------------------------------------- /clr/src/vm/wks2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks2/makefile -------------------------------------------------------------------------------- /clr/src/vm/wks2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks2/sources -------------------------------------------------------------------------------- /clr/src/vm/wks3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks3/makefile -------------------------------------------------------------------------------- /clr/src/vm/wks3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks3/sources -------------------------------------------------------------------------------- /clr/src/vm/wks4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks4/makefile -------------------------------------------------------------------------------- /clr/src/vm/wks4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wks4/sources -------------------------------------------------------------------------------- /clr/src/vm/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/vm/wrappers.h -------------------------------------------------------------------------------- /clr/src/xmlparser/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/clr/src/xmlparser/core.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/configure.in -------------------------------------------------------------------------------- /csharp/alink/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/dirs -------------------------------------------------------------------------------- /csharp/alink/dll/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/dll/sources -------------------------------------------------------------------------------- /csharp/alink/exe/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/exe/sources -------------------------------------------------------------------------------- /csharp/alink/inc/alink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/inc/alink.h -------------------------------------------------------------------------------- /csharp/alink/inc/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/inc/array.h -------------------------------------------------------------------------------- /csharp/alink/inc/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/inc/merge.h -------------------------------------------------------------------------------- /csharp/alink/merge/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/merge/pch.h -------------------------------------------------------------------------------- /csharp/alink/ui/msgs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/alink/ui/msgs.rc -------------------------------------------------------------------------------- /csharp/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/dirs -------------------------------------------------------------------------------- /csharp/inc/allnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/allnodes.h -------------------------------------------------------------------------------- /csharp/inc/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/array.h -------------------------------------------------------------------------------- /csharp/inc/attrloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/attrloc.h -------------------------------------------------------------------------------- /csharp/inc/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/compat.h -------------------------------------------------------------------------------- /csharp/inc/compilerlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/compilerlib.h -------------------------------------------------------------------------------- /csharp/inc/compres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/compres.h -------------------------------------------------------------------------------- /csharp/inc/consoleargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/consoleargs.h -------------------------------------------------------------------------------- /csharp/inc/constval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/constval.h -------------------------------------------------------------------------------- /csharp/inc/cscommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/cscommon.h -------------------------------------------------------------------------------- /csharp/inc/dbgout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/dbgout.h -------------------------------------------------------------------------------- /csharp/inc/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/enum.h -------------------------------------------------------------------------------- /csharp/inc/errorids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/errorids.h -------------------------------------------------------------------------------- /csharp/inc/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/errors.h -------------------------------------------------------------------------------- /csharp/inc/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/events.h -------------------------------------------------------------------------------- /csharp/inc/file_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/file_can.h -------------------------------------------------------------------------------- /csharp/inc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/list.h -------------------------------------------------------------------------------- /csharp/inc/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/locks.h -------------------------------------------------------------------------------- /csharp/inc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/makefile -------------------------------------------------------------------------------- /csharp/inc/mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/mempool.cpp -------------------------------------------------------------------------------- /csharp/inc/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/mempool.h -------------------------------------------------------------------------------- /csharp/inc/msgsids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/msgsids.h -------------------------------------------------------------------------------- /csharp/inc/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/name.h -------------------------------------------------------------------------------- /csharp/inc/nodekind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/nodekind.h -------------------------------------------------------------------------------- /csharp/inc/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/nodes.h -------------------------------------------------------------------------------- /csharp/inc/objptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/objptr.h -------------------------------------------------------------------------------- /csharp/inc/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/ops.h -------------------------------------------------------------------------------- /csharp/inc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/pch.h -------------------------------------------------------------------------------- /csharp/inc/posdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/posdata.h -------------------------------------------------------------------------------- /csharp/inc/ppkwds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/ppkwds.h -------------------------------------------------------------------------------- /csharp/inc/predefname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/predefname.h -------------------------------------------------------------------------------- /csharp/inc/predeftype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/predeftype.h -------------------------------------------------------------------------------- /csharp/inc/satellite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/satellite.h -------------------------------------------------------------------------------- /csharp/inc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/sources -------------------------------------------------------------------------------- /csharp/inc/specnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/specnames.h -------------------------------------------------------------------------------- /csharp/inc/strbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/strbuild.h -------------------------------------------------------------------------------- /csharp/inc/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/table.h -------------------------------------------------------------------------------- /csharp/inc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/timer.h -------------------------------------------------------------------------------- /csharp/inc/tokdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/tokdata.h -------------------------------------------------------------------------------- /csharp/inc/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/tokens.h -------------------------------------------------------------------------------- /csharp/inc/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/tree.h -------------------------------------------------------------------------------- /csharp/inc/uniapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/uniapi.h -------------------------------------------------------------------------------- /csharp/inc/unicase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unicase.h -------------------------------------------------------------------------------- /csharp/inc/unichar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unichar.h -------------------------------------------------------------------------------- /csharp/inc/unilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unilib.h -------------------------------------------------------------------------------- /csharp/inc/unimisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unimisc.h -------------------------------------------------------------------------------- /csharp/inc/unipriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unipriv.h -------------------------------------------------------------------------------- /csharp/inc/uniprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/uniprop.h -------------------------------------------------------------------------------- /csharp/inc/uniprop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/uniprop.inc -------------------------------------------------------------------------------- /csharp/inc/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unistr.h -------------------------------------------------------------------------------- /csharp/inc/unum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/unum.h -------------------------------------------------------------------------------- /csharp/inc/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/utf.h -------------------------------------------------------------------------------- /csharp/inc/vsmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/inc/vsmem.h -------------------------------------------------------------------------------- /csharp/scc/cmdoptdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/cmdoptdef.h -------------------------------------------------------------------------------- /csharp/scc/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/dirs -------------------------------------------------------------------------------- /csharp/scc/pkg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/pkg/makefile -------------------------------------------------------------------------------- /csharp/scc/pkg/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/pkg/sources -------------------------------------------------------------------------------- /csharp/scc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/resource.h -------------------------------------------------------------------------------- /csharp/scc/scc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/scc.cpp -------------------------------------------------------------------------------- /csharp/scc/scc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/scc.h -------------------------------------------------------------------------------- /csharp/scc/scc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/scc.rc -------------------------------------------------------------------------------- /csharp/scc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/sources -------------------------------------------------------------------------------- /csharp/scc/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/sources.inc -------------------------------------------------------------------------------- /csharp/scc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/stdafx.cpp -------------------------------------------------------------------------------- /csharp/scc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/scc/stdafx.h -------------------------------------------------------------------------------- /csharp/sccomp/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/alloc.cpp -------------------------------------------------------------------------------- /csharp/sccomp/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/alloc.h -------------------------------------------------------------------------------- /csharp/sccomp/bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/bitset.cpp -------------------------------------------------------------------------------- /csharp/sccomp/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/bitset.h -------------------------------------------------------------------------------- /csharp/sccomp/clsdrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/clsdrec.h -------------------------------------------------------------------------------- /csharp/sccomp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/common.h -------------------------------------------------------------------------------- /csharp/sccomp/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/compiler.h -------------------------------------------------------------------------------- /csharp/sccomp/cscmgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/cscmgd.cpp -------------------------------------------------------------------------------- /csharp/sccomp/cscmgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/cscmgd.h -------------------------------------------------------------------------------- /csharp/sccomp/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/dirs -------------------------------------------------------------------------------- /csharp/sccomp/dumpnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/dumpnode.h -------------------------------------------------------------------------------- /csharp/sccomp/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/emitter.h -------------------------------------------------------------------------------- /csharp/sccomp/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/error.cpp -------------------------------------------------------------------------------- /csharp/sccomp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/error.h -------------------------------------------------------------------------------- /csharp/sccomp/exprkind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/exprkind.h -------------------------------------------------------------------------------- /csharp/sccomp/exprlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/exprlist.h -------------------------------------------------------------------------------- /csharp/sccomp/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/factory.h -------------------------------------------------------------------------------- /csharp/sccomp/fileiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/fileiter.h -------------------------------------------------------------------------------- /csharp/sccomp/fncbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/fncbind.h -------------------------------------------------------------------------------- /csharp/sccomp/hashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/hashtab.h -------------------------------------------------------------------------------- /csharp/sccomp/ilgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/ilgen.cpp -------------------------------------------------------------------------------- /csharp/sccomp/ilgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/ilgen.h -------------------------------------------------------------------------------- /csharp/sccomp/import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/import.cpp -------------------------------------------------------------------------------- /csharp/sccomp/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/import.h -------------------------------------------------------------------------------- /csharp/sccomp/inputset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/inputset.h -------------------------------------------------------------------------------- /csharp/sccomp/inttree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/inttree.h -------------------------------------------------------------------------------- /csharp/sccomp/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/lexer.cpp -------------------------------------------------------------------------------- /csharp/sccomp/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/lexer.h -------------------------------------------------------------------------------- /csharp/sccomp/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/map.cpp -------------------------------------------------------------------------------- /csharp/sccomp/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/map.h -------------------------------------------------------------------------------- /csharp/sccomp/memlook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/memlook.h -------------------------------------------------------------------------------- /csharp/sccomp/metaattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/metaattr.h -------------------------------------------------------------------------------- /csharp/sccomp/metahelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/metahelp.h -------------------------------------------------------------------------------- /csharp/sccomp/namemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/namemgr.h -------------------------------------------------------------------------------- /csharp/sccomp/numlit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/numlit.h -------------------------------------------------------------------------------- /csharp/sccomp/optdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/optdef.h -------------------------------------------------------------------------------- /csharp/sccomp/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/options.h -------------------------------------------------------------------------------- /csharp/sccomp/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/parser.cpp -------------------------------------------------------------------------------- /csharp/sccomp/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/parser.h -------------------------------------------------------------------------------- /csharp/sccomp/pefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/pefile.cpp -------------------------------------------------------------------------------- /csharp/sccomp/pefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/pefile.h -------------------------------------------------------------------------------- /csharp/sccomp/privguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/privguid.h -------------------------------------------------------------------------------- /csharp/sccomp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/resource.h -------------------------------------------------------------------------------- /csharp/sccomp/sccomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/sccomp.cpp -------------------------------------------------------------------------------- /csharp/sccomp/sccomp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/sccomp.def -------------------------------------------------------------------------------- /csharp/sccomp/sccomp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/sccomp.rc -------------------------------------------------------------------------------- /csharp/sccomp/srcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/srcdata.h -------------------------------------------------------------------------------- /csharp/sccomp/srcmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/srcmod.cpp -------------------------------------------------------------------------------- /csharp/sccomp/srcmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/srcmod.h -------------------------------------------------------------------------------- /csharp/sccomp/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/stage.h -------------------------------------------------------------------------------- /csharp/sccomp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/stdafx.cpp -------------------------------------------------------------------------------- /csharp/sccomp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/stdafx.h -------------------------------------------------------------------------------- /csharp/sccomp/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/symbol.h -------------------------------------------------------------------------------- /csharp/sccomp/symkind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/symkind.h -------------------------------------------------------------------------------- /csharp/sccomp/symkinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/symkinds.h -------------------------------------------------------------------------------- /csharp/sccomp/symmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/symmgr.cpp -------------------------------------------------------------------------------- /csharp/sccomp/symmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/symmgr.h -------------------------------------------------------------------------------- /csharp/sccomp/tokinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/tokinfo.h -------------------------------------------------------------------------------- /csharp/sccomp/typebind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/typebind.h -------------------------------------------------------------------------------- /csharp/sccomp/withtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/sccomp/withtype.h -------------------------------------------------------------------------------- /csharp/shared/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/file.cpp -------------------------------------------------------------------------------- /csharp/shared/locks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/locks.cpp -------------------------------------------------------------------------------- /csharp/shared/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/makefile -------------------------------------------------------------------------------- /csharp/shared/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/node.cpp -------------------------------------------------------------------------------- /csharp/shared/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/pch.cpp -------------------------------------------------------------------------------- /csharp/shared/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/pch.h -------------------------------------------------------------------------------- /csharp/shared/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/sources -------------------------------------------------------------------------------- /csharp/shared/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/shared/table.cpp -------------------------------------------------------------------------------- /csharp/unilib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/unilib/makefile -------------------------------------------------------------------------------- /csharp/unilib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/unilib/pch.h -------------------------------------------------------------------------------- /csharp/unilib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/unilib/sources -------------------------------------------------------------------------------- /csharp/unilib/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/csharp/unilib/utf.cpp -------------------------------------------------------------------------------- /docs/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/glossary.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/map.html -------------------------------------------------------------------------------- /docs/relnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/relnotes.html -------------------------------------------------------------------------------- /docs/rotor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/rotor.css -------------------------------------------------------------------------------- /docs/tools/al.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/tools/al.html -------------------------------------------------------------------------------- /docs/tools/clix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/tools/clix.html -------------------------------------------------------------------------------- /docs/tools/ilasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/tools/ilasm.html -------------------------------------------------------------------------------- /docs/tools/sn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/docs/tools/sn.html -------------------------------------------------------------------------------- /env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env.bat -------------------------------------------------------------------------------- /env.core.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env.core.pl -------------------------------------------------------------------------------- /env.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env.csh -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env.sh -------------------------------------------------------------------------------- /env/bin/asnewlines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/asnewlines.pl -------------------------------------------------------------------------------- /env/bin/def2ld.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/def2ld.pl -------------------------------------------------------------------------------- /env/bin/devdiv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/devdiv.def -------------------------------------------------------------------------------- /env/bin/devdiv2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/devdiv2.def -------------------------------------------------------------------------------- /env/bin/findline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/findline.pl -------------------------------------------------------------------------------- /env/bin/gensr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/gensr.pl -------------------------------------------------------------------------------- /env/bin/genver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/genver.pl -------------------------------------------------------------------------------- /env/bin/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/makefile.env -------------------------------------------------------------------------------- /env/bin/makefile.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/makefile.plt -------------------------------------------------------------------------------- /env/bin/mscver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/mscver.h -------------------------------------------------------------------------------- /env/bin/placefil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/placefil.txt -------------------------------------------------------------------------------- /env/bin/ppcmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/ppcmk.inc -------------------------------------------------------------------------------- /env/bin/publish.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/publish.pl -------------------------------------------------------------------------------- /env/bin/setup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/setup.pl -------------------------------------------------------------------------------- /env/bin/sign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/sign.txt -------------------------------------------------------------------------------- /env/bin/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/sources.inc -------------------------------------------------------------------------------- /env/bin/spp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/env/bin/spp.pl -------------------------------------------------------------------------------- /fx/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/project.mk -------------------------------------------------------------------------------- /fx/src/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/dirs -------------------------------------------------------------------------------- /fx/src/misc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/misc/makefile -------------------------------------------------------------------------------- /fx/src/misc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/misc/sources -------------------------------------------------------------------------------- /fx/src/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/sys/makefile -------------------------------------------------------------------------------- /fx/src/sys/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/sys/native.rc -------------------------------------------------------------------------------- /fx/src/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/sys/resource.h -------------------------------------------------------------------------------- /fx/src/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/sys/sources -------------------------------------------------------------------------------- /fx/src/sys/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/sys/system.txt -------------------------------------------------------------------------------- /fx/src/xml/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/xml/makefile -------------------------------------------------------------------------------- /fx/src/xml/native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/xml/native.rc -------------------------------------------------------------------------------- /fx/src/xml/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/fx/src/xml/sources -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/install-sh -------------------------------------------------------------------------------- /jscript/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/dirs -------------------------------------------------------------------------------- /jscript/engine/ast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/engine/ast.cs -------------------------------------------------------------------------------- /jscript/engine/for.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/engine/for.cs -------------------------------------------------------------------------------- /jscript/engine/if.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/engine/if.cs -------------------------------------------------------------------------------- /jscript/engine/in.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/engine/in.cs -------------------------------------------------------------------------------- /jscript/engine/try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/engine/try.cs -------------------------------------------------------------------------------- /jscript/jsc/jsc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jsc/jsc.cs -------------------------------------------------------------------------------- /jscript/jsc/jsc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jsc/jsc.rc -------------------------------------------------------------------------------- /jscript/jsc/jsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jsc/jsc.txt -------------------------------------------------------------------------------- /jscript/jsc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jsc/makefile -------------------------------------------------------------------------------- /jscript/jsc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jsc/sources -------------------------------------------------------------------------------- /jscript/jscript.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/jscript.inc -------------------------------------------------------------------------------- /jscript/vsa/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/vsa/makefile -------------------------------------------------------------------------------- /jscript/vsa/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/vsa/sources -------------------------------------------------------------------------------- /jscript/vsa/vsa7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/jscript/vsa/vsa7.cs -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/license.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/makefile -------------------------------------------------------------------------------- /makefile.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/makefile.common.in -------------------------------------------------------------------------------- /makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/makefile.in -------------------------------------------------------------------------------- /mswin32.startup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/mswin32.startup.pl -------------------------------------------------------------------------------- /ndpmk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/ndpmk.inc -------------------------------------------------------------------------------- /pal/inc/pal_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/pal_assert.h -------------------------------------------------------------------------------- /pal/inc/pal_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/pal_endian.h -------------------------------------------------------------------------------- /pal/inc/pal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/pal_error.h -------------------------------------------------------------------------------- /pal/inc/pal_mstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/pal_mstypes.h -------------------------------------------------------------------------------- /pal/inc/rotor_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/rotor_pal.h -------------------------------------------------------------------------------- /pal/inc/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/inc/strsafe.h -------------------------------------------------------------------------------- /pal/unix/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/config.h.in -------------------------------------------------------------------------------- /pal/unix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/configure -------------------------------------------------------------------------------- /pal/unix/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/configure.in -------------------------------------------------------------------------------- /pal/unix/file/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/file/disk.c -------------------------------------------------------------------------------- /pal/unix/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/file/file.c -------------------------------------------------------------------------------- /pal/unix/file/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/file/find.c -------------------------------------------------------------------------------- /pal/unix/file/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/file/path.c -------------------------------------------------------------------------------- /pal/unix/init/pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/init/pal.c -------------------------------------------------------------------------------- /pal/unix/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/makefile -------------------------------------------------------------------------------- /pal/unix/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/makefile.in -------------------------------------------------------------------------------- /pal/unix/map/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/map/common.c -------------------------------------------------------------------------------- /pal/unix/map/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/map/common.h -------------------------------------------------------------------------------- /pal/unix/map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/map/map.c -------------------------------------------------------------------------------- /pal/unix/misc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/misc/error.c -------------------------------------------------------------------------------- /pal/unix/misc/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/misc/time.c -------------------------------------------------------------------------------- /pal/unix/misc/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/misc/utils.c -------------------------------------------------------------------------------- /pal/unix/sync/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/sync/event.c -------------------------------------------------------------------------------- /pal/unix/sync/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/sync/event.h -------------------------------------------------------------------------------- /pal/unix/sync/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/sync/mutex.c -------------------------------------------------------------------------------- /pal/unix/sync/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/unix/sync/wait.c -------------------------------------------------------------------------------- /pal/win32/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/build.cmd -------------------------------------------------------------------------------- /pal/win32/default.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/default.mac -------------------------------------------------------------------------------- /pal/win32/eventlog.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/eventlog.mc -------------------------------------------------------------------------------- /pal/win32/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/exception.c -------------------------------------------------------------------------------- /pal/win32/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/make.cmd -------------------------------------------------------------------------------- /pal/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/makefile -------------------------------------------------------------------------------- /pal/win32/perftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/perftrace.c -------------------------------------------------------------------------------- /pal/win32/perftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/perftrace.h -------------------------------------------------------------------------------- /pal/win32/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/sources -------------------------------------------------------------------------------- /pal/win32/win32pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/win32pal.c -------------------------------------------------------------------------------- /pal/win32/win32pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/pal/win32/win32pal.h -------------------------------------------------------------------------------- /palrt/debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/debug/makefile -------------------------------------------------------------------------------- /palrt/debug/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/debug/method.c -------------------------------------------------------------------------------- /palrt/debug/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/debug/sources -------------------------------------------------------------------------------- /palrt/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/dirs -------------------------------------------------------------------------------- /palrt/inc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/assert.h -------------------------------------------------------------------------------- /palrt/inc/atl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/atl.h -------------------------------------------------------------------------------- /palrt/inc/atlcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/atlcom.h -------------------------------------------------------------------------------- /palrt/inc/atlwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/atlwin.h -------------------------------------------------------------------------------- /palrt/inc/ccombstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/ccombstr.h -------------------------------------------------------------------------------- /palrt/inc/common.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/common.ver -------------------------------------------------------------------------------- /palrt/inc/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/crtdbg.h -------------------------------------------------------------------------------- /palrt/inc/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/cstring.h -------------------------------------------------------------------------------- /palrt/inc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/ctype.h -------------------------------------------------------------------------------- /palrt/inc/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/fcntl.h -------------------------------------------------------------------------------- /palrt/inc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/float.h -------------------------------------------------------------------------------- /palrt/inc/fxver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/fxver.h -------------------------------------------------------------------------------- /palrt/inc/fxver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/fxver.rc -------------------------------------------------------------------------------- /palrt/inc/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/guiddef.h -------------------------------------------------------------------------------- /palrt/inc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/io.h -------------------------------------------------------------------------------- /palrt/inc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/limits.h -------------------------------------------------------------------------------- /palrt/inc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/malloc.h -------------------------------------------------------------------------------- /palrt/inc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/math.h -------------------------------------------------------------------------------- /palrt/inc/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/mbstring.h -------------------------------------------------------------------------------- /palrt/inc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/memory.h -------------------------------------------------------------------------------- /palrt/inc/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/new.h -------------------------------------------------------------------------------- /palrt/inc/ntimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/ntimage.h -------------------------------------------------------------------------------- /palrt/inc/oaidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/oaidl.h -------------------------------------------------------------------------------- /palrt/inc/objbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/objbase.h -------------------------------------------------------------------------------- /palrt/inc/objidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/objidl.h -------------------------------------------------------------------------------- /palrt/inc/ole2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/ole2.h -------------------------------------------------------------------------------- /palrt/inc/oleauto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/oleauto.h -------------------------------------------------------------------------------- /palrt/inc/oleidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/oleidl.h -------------------------------------------------------------------------------- /palrt/inc/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/poppack.h -------------------------------------------------------------------------------- /palrt/inc/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/process.h -------------------------------------------------------------------------------- /palrt/inc/pshpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/pshpack1.h -------------------------------------------------------------------------------- /palrt/inc/pshpack2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/pshpack2.h -------------------------------------------------------------------------------- /palrt/inc/pshpack4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/pshpack4.h -------------------------------------------------------------------------------- /palrt/inc/pshpack8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/pshpack8.h -------------------------------------------------------------------------------- /palrt/inc/pshpck16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/pshpck16.h -------------------------------------------------------------------------------- /palrt/inc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/rpc.h -------------------------------------------------------------------------------- /palrt/inc/rpcndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/rpcndr.h -------------------------------------------------------------------------------- /palrt/inc/safecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/safecrt.h -------------------------------------------------------------------------------- /palrt/inc/servprov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/servprov.h -------------------------------------------------------------------------------- /palrt/inc/shlwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/shlwapi.h -------------------------------------------------------------------------------- /palrt/inc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/stdarg.h -------------------------------------------------------------------------------- /palrt/inc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/stddef.h -------------------------------------------------------------------------------- /palrt/inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/stdio.h -------------------------------------------------------------------------------- /palrt/inc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/stdlib.h -------------------------------------------------------------------------------- /palrt/inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/string.h -------------------------------------------------------------------------------- /palrt/inc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/time.h -------------------------------------------------------------------------------- /palrt/inc/unknwn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/unknwn.h -------------------------------------------------------------------------------- /palrt/inc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/version.h -------------------------------------------------------------------------------- /palrt/inc/vsassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/vsassert.h -------------------------------------------------------------------------------- /palrt/inc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/wchar.h -------------------------------------------------------------------------------- /palrt/inc/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/winbase.h -------------------------------------------------------------------------------- /palrt/inc/wincrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/wincrypt.h -------------------------------------------------------------------------------- /palrt/inc/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/windef.h -------------------------------------------------------------------------------- /palrt/inc/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/windows.h -------------------------------------------------------------------------------- /palrt/inc/winerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/winerror.h -------------------------------------------------------------------------------- /palrt/inc/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/winnls.h -------------------------------------------------------------------------------- /palrt/inc/winresrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/winresrc.h -------------------------------------------------------------------------------- /palrt/inc/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/inc/winver.h -------------------------------------------------------------------------------- /palrt/msgs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/msgs/makefile -------------------------------------------------------------------------------- /palrt/msgs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/msgs/sources -------------------------------------------------------------------------------- /palrt/src/bignum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/bignum.cpp -------------------------------------------------------------------------------- /palrt/src/bstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/bstr.cpp -------------------------------------------------------------------------------- /palrt/src/coguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/coguid.cpp -------------------------------------------------------------------------------- /palrt/src/comem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/comem.cpp -------------------------------------------------------------------------------- /palrt/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/convert.cpp -------------------------------------------------------------------------------- /palrt/src/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/convert.h -------------------------------------------------------------------------------- /palrt/src/crtstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/crtstuff.h -------------------------------------------------------------------------------- /palrt/src/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/crypt.cpp -------------------------------------------------------------------------------- /palrt/src/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/crypt.h -------------------------------------------------------------------------------- /palrt/src/decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/decimal.cpp -------------------------------------------------------------------------------- /palrt/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/dllmain.cpp -------------------------------------------------------------------------------- /palrt/src/errinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/errinfo.cpp -------------------------------------------------------------------------------- /palrt/src/inifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/inifile.cpp -------------------------------------------------------------------------------- /palrt/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/makefile -------------------------------------------------------------------------------- /palrt/src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/md5.cpp -------------------------------------------------------------------------------- /palrt/src/numprs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/numprs.cpp -------------------------------------------------------------------------------- /palrt/src/oautil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/oautil.h -------------------------------------------------------------------------------- /palrt/src/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/path.cpp -------------------------------------------------------------------------------- /palrt/src/sarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/sarray.cpp -------------------------------------------------------------------------------- /palrt/src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/sha1.cpp -------------------------------------------------------------------------------- /palrt/src/shlwapip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/shlwapip.h -------------------------------------------------------------------------------- /palrt/src/shstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/shstr.cpp -------------------------------------------------------------------------------- /palrt/src/shstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/shstr.h -------------------------------------------------------------------------------- /palrt/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/sources -------------------------------------------------------------------------------- /palrt/src/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/strings.cpp -------------------------------------------------------------------------------- /palrt/src/urlpars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/urlpars.cpp -------------------------------------------------------------------------------- /palrt/src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/src/variant.cpp -------------------------------------------------------------------------------- /palrt/sscoree/libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/sscoree/libs.h -------------------------------------------------------------------------------- /palrt/sscoree/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/sscoree/sources -------------------------------------------------------------------------------- /palrt/sscoree/syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/sscoree/syms.h -------------------------------------------------------------------------------- /palrt/static/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/static/guid.cpp -------------------------------------------------------------------------------- /palrt/static/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/static/makefile -------------------------------------------------------------------------------- /palrt/static/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/palrt/static/sources -------------------------------------------------------------------------------- /prebuilt/idl/corffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/prebuilt/idl/corffi.h -------------------------------------------------------------------------------- /prebuilt/idl/corpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/prebuilt/idl/corpub.h -------------------------------------------------------------------------------- /prebuilt/idl/corsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/prebuilt/idl/corsym.h -------------------------------------------------------------------------------- /prebuilt/idl/fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/prebuilt/idl/fusion.h -------------------------------------------------------------------------------- /prebuilt/idl/gchost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/prebuilt/idl/gchost.h -------------------------------------------------------------------------------- /readfirst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/readfirst.html -------------------------------------------------------------------------------- /samples/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/samples/dirs -------------------------------------------------------------------------------- /samples/hello/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/samples/hello/sources -------------------------------------------------------------------------------- /samples/howto/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/samples/howto/dirs -------------------------------------------------------------------------------- /samples/pigui/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/samples/pigui/dirs -------------------------------------------------------------------------------- /samples/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/samples/project.mk -------------------------------------------------------------------------------- /samples/utilities/codetohtml/cs_userdefined.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/bcl/dev/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/bcl/dev/rdirs -------------------------------------------------------------------------------- /tests/bcl/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/bcl/rdirs -------------------------------------------------------------------------------- /tests/bvt/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/bvt/rdirs -------------------------------------------------------------------------------- /tests/bvt/short/hello.bsl: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /tests/cas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/cas -------------------------------------------------------------------------------- /tests/cas.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/cas.bat -------------------------------------------------------------------------------- /tests/dev/excepgc1.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/excepgc1.il -------------------------------------------------------------------------------- /tests/dev/excepgc2.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/excepgc2.il -------------------------------------------------------------------------------- /tests/dev/ffitest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/ffitest.pl -------------------------------------------------------------------------------- /tests/dev/killself.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/killself.cs -------------------------------------------------------------------------------- /tests/dev/pow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/pow.cs -------------------------------------------------------------------------------- /tests/dev/readonly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/readonly.cs -------------------------------------------------------------------------------- /tests/dev/readonly.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/readonly.il -------------------------------------------------------------------------------- /tests/dev/regress1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/regress1.cs -------------------------------------------------------------------------------- /tests/dev/regress2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/regress2.cs -------------------------------------------------------------------------------- /tests/dev/regress4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/regress4.cs -------------------------------------------------------------------------------- /tests/dev/regress4.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/regress4.il -------------------------------------------------------------------------------- /tests/dev/regress5.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/regress5.il -------------------------------------------------------------------------------- /tests/dev/rsources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/rsources -------------------------------------------------------------------------------- /tests/dev/sizeof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/sizeof.cs -------------------------------------------------------------------------------- /tests/dev/sizeof.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/sizeof.il -------------------------------------------------------------------------------- /tests/dev/tail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/tail.il -------------------------------------------------------------------------------- /tests/dev/tail_calli.bsl: -------------------------------------------------------------------------------- 1 | PASS! 2 | -------------------------------------------------------------------------------- /tests/dev/tailunit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/tailunit.cs -------------------------------------------------------------------------------- /tests/dev/tailunit.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/dev/tailunit.il -------------------------------------------------------------------------------- /tests/gc/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/gc/rdirs -------------------------------------------------------------------------------- /tests/gc/stress/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/gc/stress/rdirs -------------------------------------------------------------------------------- /tests/generics/classes/tris.bsl: -------------------------------------------------------------------------------- 1 | 1089 2 | -------------------------------------------------------------------------------- /tests/generics/methods/swap.bsl: -------------------------------------------------------------------------------- 1 | Generics Rock 2 | 9.87654321 1.23456789 3 | -------------------------------------------------------------------------------- /tests/generics/methods/test.bsl: -------------------------------------------------------------------------------- 1 | done68 2 | -------------------------------------------------------------------------------- /tests/generics/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/generics/rdirs -------------------------------------------------------------------------------- /tests/generics/recursion/fields.bsl: -------------------------------------------------------------------------------- 1 | 5 2 | P 3 | 12345678987654321 4 | -------------------------------------------------------------------------------- /tests/generics/recursion/int.bsl: -------------------------------------------------------------------------------- 1 | D.m: this is I = True 2 | -------------------------------------------------------------------------------- /tests/generics/reflect/subclass.bsl: -------------------------------------------------------------------------------- 1 | Finished! 2 | -------------------------------------------------------------------------------- /tests/generics/threads/polyrec.bsl: -------------------------------------------------------------------------------- 1 | Finished! 2 | -------------------------------------------------------------------------------- /tests/generics/virtualmethods/delegate.bsl: -------------------------------------------------------------------------------- 1 | C1.meth 2 | -------------------------------------------------------------------------------- /tests/il_bvt/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/il_bvt/rdirs -------------------------------------------------------------------------------- /tests/jscript/codedom/cmdline_f01.js: -------------------------------------------------------------------------------- 1 | print("hi") -------------------------------------------------------------------------------- /tests/jscript/codedom/cmdline_f03.js: -------------------------------------------------------------------------------- 1 | import cmdline_f02 2 | 3 | var x = new bar 4 | x.baz() -------------------------------------------------------------------------------- /tests/jscript/codedom/cmdline_f04.js: -------------------------------------------------------------------------------- 1 | import System 2 | 3 | var x:Double = 654321 4 | print(x) 5 | -------------------------------------------------------------------------------- /tests/jscript/codedom/cmdline_f05.js: -------------------------------------------------------------------------------- 1 | import System 2 | 3 | var x:Double = 654321 4 | 5 | -------------------------------------------------------------------------------- /tests/jscript/codedom/cmdline_f07.js: -------------------------------------------------------------------------------- 1 | @cc_on 2 | 3 | print(@_mac + "-" + @_win16) -------------------------------------------------------------------------------- /tests/jscript/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/jscript/rdirs -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/feof/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/ferror/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/fread/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/fread/test2/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/fread/test3/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/palsuite/c_runtime/ungetc/test2/test2.txt: -------------------------------------------------------------------------------- 1 | foo bar -------------------------------------------------------------------------------- /tests/palsuite/file_io/copyfilew/test1/expectedresults.txt: -------------------------------------------------------------------------------- 1 | 10110000 -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesa/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesa/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesa/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesa/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesexw/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesw/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesw/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesw/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /tests/palsuite/file_io/getfileattributesw/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /tests/palsuite/file_io/movefilea/test1/expectedresults.txt: -------------------------------------------------------------------------------- 1 | 30404( -------------------------------------------------------------------------------- /tests/palsuite/file_io/movefilew/test1/expectedresults.txt: -------------------------------------------------------------------------------- 1 | 30404( -------------------------------------------------------------------------------- /tests/palsuite/file_io/readfile/test1/nonreadablefile.txt: -------------------------------------------------------------------------------- 1 | this is a test -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesa/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesa/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesa/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesw/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesw/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/setfileattributesw/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /tests/palsuite/file_io/writefile/test2/results.txt: -------------------------------------------------------------------------------- 1 | 300444 -------------------------------------------------------------------------------- /tests/pvtrun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/pvtrun.pl -------------------------------------------------------------------------------- /tests/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/rdirs -------------------------------------------------------------------------------- /tests/rrun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/rrun.pl -------------------------------------------------------------------------------- /tests/security/rdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tests/security/rdirs -------------------------------------------------------------------------------- /tools/bin/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/bin/empty.cpp -------------------------------------------------------------------------------- /tools/build/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/build.c -------------------------------------------------------------------------------- /tools/build/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/build.h -------------------------------------------------------------------------------- /tools/build/build.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/build.rc -------------------------------------------------------------------------------- /tools/build/builddb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/builddb.c -------------------------------------------------------------------------------- /tools/build/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/make.cmd -------------------------------------------------------------------------------- /tools/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/makefile -------------------------------------------------------------------------------- /tools/build/scrproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/scrproc.h -------------------------------------------------------------------------------- /tools/build/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/build/sources -------------------------------------------------------------------------------- /tools/nmake/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/build.cpp -------------------------------------------------------------------------------- /tools/nmake/charmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/charmap.h -------------------------------------------------------------------------------- /tools/nmake/def.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/def.mak -------------------------------------------------------------------------------- /tools/nmake/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/error.cpp -------------------------------------------------------------------------------- /tools/nmake/errstr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/errstr.rc -------------------------------------------------------------------------------- /tools/nmake/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/exec.cpp -------------------------------------------------------------------------------- /tools/nmake/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/file.cpp -------------------------------------------------------------------------------- /tools/nmake/getmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/getmsg.h -------------------------------------------------------------------------------- /tools/nmake/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/globals.h -------------------------------------------------------------------------------- /tools/nmake/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/grammar.h -------------------------------------------------------------------------------- /tools/nmake/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/init.cpp -------------------------------------------------------------------------------- /tools/nmake/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/lexer.cpp -------------------------------------------------------------------------------- /tools/nmake/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/macro.cpp -------------------------------------------------------------------------------- /tools/nmake/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/make.cmd -------------------------------------------------------------------------------- /tools/nmake/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/makefile -------------------------------------------------------------------------------- /tools/nmake/mkmsg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/mkmsg.bat -------------------------------------------------------------------------------- /tools/nmake/nmake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/nmake.cpp -------------------------------------------------------------------------------- /tools/nmake/nmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/nmake.h -------------------------------------------------------------------------------- /tools/nmake/nmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/nmmsg.h -------------------------------------------------------------------------------- /tools/nmake/nmmsg.us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/nmmsg.us -------------------------------------------------------------------------------- /tools/nmake/nmtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/nmtime.h -------------------------------------------------------------------------------- /tools/nmake/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/precomp.h -------------------------------------------------------------------------------- /tools/nmake/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/print.cpp -------------------------------------------------------------------------------- /tools/nmake/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/proto.h -------------------------------------------------------------------------------- /tools/nmake/rpn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/rpn.cpp -------------------------------------------------------------------------------- /tools/nmake/rpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/rpn.h -------------------------------------------------------------------------------- /tools/nmake/rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/rule.cpp -------------------------------------------------------------------------------- /tools/nmake/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/sources -------------------------------------------------------------------------------- /tools/nmake/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/table.h -------------------------------------------------------------------------------- /tools/nmake/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/util.cpp -------------------------------------------------------------------------------- /tools/nmake/utilp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/utilp.cpp -------------------------------------------------------------------------------- /tools/nmake/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/version.h -------------------------------------------------------------------------------- /tools/nmake/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/tools/nmake/win32.cpp -------------------------------------------------------------------------------- /vscommon/inc/vsver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/vscommon/inc/vsver.h -------------------------------------------------------------------------------- /win.env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewischeng-ms/sscli/HEAD/win.env.bat --------------------------------------------------------------------------------