go1.16.txt 479 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527
  1. pkg archive/zip, method (*ReadCloser) Open(string) (fs.File, error)
  2. pkg archive/zip, method (*Reader) Open(string) (fs.File, error)
  3. pkg crypto/x509, method (SystemRootsError) Unwrap() error
  4. pkg debug/elf, const DT_ADDRRNGHI = 1879047935
  5. pkg debug/elf, const DT_ADDRRNGHI DynTag
  6. pkg debug/elf, const DT_ADDRRNGLO = 1879047680
  7. pkg debug/elf, const DT_ADDRRNGLO DynTag
  8. pkg debug/elf, const DT_AUDIT = 1879047932
  9. pkg debug/elf, const DT_AUDIT DynTag
  10. pkg debug/elf, const DT_AUXILIARY = 2147483645
  11. pkg debug/elf, const DT_AUXILIARY DynTag
  12. pkg debug/elf, const DT_CHECKSUM = 1879047672
  13. pkg debug/elf, const DT_CHECKSUM DynTag
  14. pkg debug/elf, const DT_CONFIG = 1879047930
  15. pkg debug/elf, const DT_CONFIG DynTag
  16. pkg debug/elf, const DT_DEPAUDIT = 1879047931
  17. pkg debug/elf, const DT_DEPAUDIT DynTag
  18. pkg debug/elf, const DT_FEATURE = 1879047676
  19. pkg debug/elf, const DT_FEATURE DynTag
  20. pkg debug/elf, const DT_FILTER = 2147483647
  21. pkg debug/elf, const DT_FILTER DynTag
  22. pkg debug/elf, const DT_FLAGS_1 = 1879048187
  23. pkg debug/elf, const DT_FLAGS_1 DynTag
  24. pkg debug/elf, const DT_GNU_CONFLICT = 1879047928
  25. pkg debug/elf, const DT_GNU_CONFLICT DynTag
  26. pkg debug/elf, const DT_GNU_CONFLICTSZ = 1879047670
  27. pkg debug/elf, const DT_GNU_CONFLICTSZ DynTag
  28. pkg debug/elf, const DT_GNU_HASH = 1879047925
  29. pkg debug/elf, const DT_GNU_HASH DynTag
  30. pkg debug/elf, const DT_GNU_LIBLIST = 1879047929
  31. pkg debug/elf, const DT_GNU_LIBLIST DynTag
  32. pkg debug/elf, const DT_GNU_LIBLISTSZ = 1879047671
  33. pkg debug/elf, const DT_GNU_LIBLISTSZ DynTag
  34. pkg debug/elf, const DT_GNU_PRELINKED = 1879047669
  35. pkg debug/elf, const DT_GNU_PRELINKED DynTag
  36. pkg debug/elf, const DT_MIPS_AUX_DYNAMIC = 1879048241
  37. pkg debug/elf, const DT_MIPS_AUX_DYNAMIC DynTag
  38. pkg debug/elf, const DT_MIPS_BASE_ADDRESS = 1879048198
  39. pkg debug/elf, const DT_MIPS_BASE_ADDRESS DynTag
  40. pkg debug/elf, const DT_MIPS_COMPACT_SIZE = 1879048239
  41. pkg debug/elf, const DT_MIPS_COMPACT_SIZE DynTag
  42. pkg debug/elf, const DT_MIPS_CONFLICT = 1879048200
  43. pkg debug/elf, const DT_MIPS_CONFLICT DynTag
  44. pkg debug/elf, const DT_MIPS_CONFLICTNO = 1879048203
  45. pkg debug/elf, const DT_MIPS_CONFLICTNO DynTag
  46. pkg debug/elf, const DT_MIPS_CXX_FLAGS = 1879048226
  47. pkg debug/elf, const DT_MIPS_CXX_FLAGS DynTag
  48. pkg debug/elf, const DT_MIPS_DELTA_CLASS = 1879048215
  49. pkg debug/elf, const DT_MIPS_DELTA_CLASS DynTag
  50. pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM = 1879048224
  51. pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM DynTag
  52. pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM_NO = 1879048225
  53. pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM_NO DynTag
  54. pkg debug/elf, const DT_MIPS_DELTA_CLASS_NO = 1879048216
  55. pkg debug/elf, const DT_MIPS_DELTA_CLASS_NO DynTag
  56. pkg debug/elf, const DT_MIPS_DELTA_INSTANCE = 1879048217
  57. pkg debug/elf, const DT_MIPS_DELTA_INSTANCE DynTag
  58. pkg debug/elf, const DT_MIPS_DELTA_INSTANCE_NO = 1879048218
  59. pkg debug/elf, const DT_MIPS_DELTA_INSTANCE_NO DynTag
  60. pkg debug/elf, const DT_MIPS_DELTA_RELOC = 1879048219
  61. pkg debug/elf, const DT_MIPS_DELTA_RELOC DynTag
  62. pkg debug/elf, const DT_MIPS_DELTA_RELOC_NO = 1879048220
  63. pkg debug/elf, const DT_MIPS_DELTA_RELOC_NO DynTag
  64. pkg debug/elf, const DT_MIPS_DELTA_SYM = 1879048221
  65. pkg debug/elf, const DT_MIPS_DELTA_SYM DynTag
  66. pkg debug/elf, const DT_MIPS_DELTA_SYM_NO = 1879048222
  67. pkg debug/elf, const DT_MIPS_DELTA_SYM_NO DynTag
  68. pkg debug/elf, const DT_MIPS_DYNSTR_ALIGN = 1879048235
  69. pkg debug/elf, const DT_MIPS_DYNSTR_ALIGN DynTag
  70. pkg debug/elf, const DT_MIPS_FLAGS = 1879048197
  71. pkg debug/elf, const DT_MIPS_FLAGS DynTag
  72. pkg debug/elf, const DT_MIPS_GOTSYM = 1879048211
  73. pkg debug/elf, const DT_MIPS_GOTSYM DynTag
  74. pkg debug/elf, const DT_MIPS_GP_VALUE = 1879048240
  75. pkg debug/elf, const DT_MIPS_GP_VALUE DynTag
  76. pkg debug/elf, const DT_MIPS_HIDDEN_GOTIDX = 1879048231
  77. pkg debug/elf, const DT_MIPS_HIDDEN_GOTIDX DynTag
  78. pkg debug/elf, const DT_MIPS_HIPAGENO = 1879048212
  79. pkg debug/elf, const DT_MIPS_HIPAGENO DynTag
  80. pkg debug/elf, const DT_MIPS_ICHECKSUM = 1879048195
  81. pkg debug/elf, const DT_MIPS_ICHECKSUM DynTag
  82. pkg debug/elf, const DT_MIPS_INTERFACE = 1879048234
  83. pkg debug/elf, const DT_MIPS_INTERFACE DynTag
  84. pkg debug/elf, const DT_MIPS_INTERFACE_SIZE = 1879048236
  85. pkg debug/elf, const DT_MIPS_INTERFACE_SIZE DynTag
  86. pkg debug/elf, const DT_MIPS_IVERSION = 1879048196
  87. pkg debug/elf, const DT_MIPS_IVERSION DynTag
  88. pkg debug/elf, const DT_MIPS_LIBLIST = 1879048201
  89. pkg debug/elf, const DT_MIPS_LIBLIST DynTag
  90. pkg debug/elf, const DT_MIPS_LIBLISTNO = 1879048208
  91. pkg debug/elf, const DT_MIPS_LIBLISTNO DynTag
  92. pkg debug/elf, const DT_MIPS_LOCALPAGE_GOTIDX = 1879048229
  93. pkg debug/elf, const DT_MIPS_LOCALPAGE_GOTIDX DynTag
  94. pkg debug/elf, const DT_MIPS_LOCAL_GOTIDX = 1879048230
  95. pkg debug/elf, const DT_MIPS_LOCAL_GOTIDX DynTag
  96. pkg debug/elf, const DT_MIPS_LOCAL_GOTNO = 1879048202
  97. pkg debug/elf, const DT_MIPS_LOCAL_GOTNO DynTag
  98. pkg debug/elf, const DT_MIPS_MSYM = 1879048199
  99. pkg debug/elf, const DT_MIPS_MSYM DynTag
  100. pkg debug/elf, const DT_MIPS_OPTIONS = 1879048233
  101. pkg debug/elf, const DT_MIPS_OPTIONS DynTag
  102. pkg debug/elf, const DT_MIPS_PERF_SUFFIX = 1879048238
  103. pkg debug/elf, const DT_MIPS_PERF_SUFFIX DynTag
  104. pkg debug/elf, const DT_MIPS_PIXIE_INIT = 1879048227
  105. pkg debug/elf, const DT_MIPS_PIXIE_INIT DynTag
  106. pkg debug/elf, const DT_MIPS_PLTGOT = 1879048242
  107. pkg debug/elf, const DT_MIPS_PLTGOT DynTag
  108. pkg debug/elf, const DT_MIPS_PROTECTED_GOTIDX = 1879048232
  109. pkg debug/elf, const DT_MIPS_PROTECTED_GOTIDX DynTag
  110. pkg debug/elf, const DT_MIPS_RLD_MAP = 1879048214
  111. pkg debug/elf, const DT_MIPS_RLD_MAP DynTag
  112. pkg debug/elf, const DT_MIPS_RLD_MAP_REL = 1879048245
  113. pkg debug/elf, const DT_MIPS_RLD_MAP_REL DynTag
  114. pkg debug/elf, const DT_MIPS_RLD_TEXT_RESOLVE_ADDR = 1879048237
  115. pkg debug/elf, const DT_MIPS_RLD_TEXT_RESOLVE_ADDR DynTag
  116. pkg debug/elf, const DT_MIPS_RLD_VERSION = 1879048193
  117. pkg debug/elf, const DT_MIPS_RLD_VERSION DynTag
  118. pkg debug/elf, const DT_MIPS_RWPLT = 1879048244
  119. pkg debug/elf, const DT_MIPS_RWPLT DynTag
  120. pkg debug/elf, const DT_MIPS_SYMBOL_LIB = 1879048228
  121. pkg debug/elf, const DT_MIPS_SYMBOL_LIB DynTag
  122. pkg debug/elf, const DT_MIPS_SYMTABNO = 1879048209
  123. pkg debug/elf, const DT_MIPS_SYMTABNO DynTag
  124. pkg debug/elf, const DT_MIPS_TIME_STAMP = 1879048194
  125. pkg debug/elf, const DT_MIPS_TIME_STAMP DynTag
  126. pkg debug/elf, const DT_MIPS_UNREFEXTNO = 1879048210
  127. pkg debug/elf, const DT_MIPS_UNREFEXTNO DynTag
  128. pkg debug/elf, const DT_MOVEENT = 1879047674
  129. pkg debug/elf, const DT_MOVEENT DynTag
  130. pkg debug/elf, const DT_MOVESZ = 1879047675
  131. pkg debug/elf, const DT_MOVESZ DynTag
  132. pkg debug/elf, const DT_MOVETAB = 1879047934
  133. pkg debug/elf, const DT_MOVETAB DynTag
  134. pkg debug/elf, const DT_PLTPAD = 1879047933
  135. pkg debug/elf, const DT_PLTPAD DynTag
  136. pkg debug/elf, const DT_PLTPADSZ = 1879047673
  137. pkg debug/elf, const DT_PLTPADSZ DynTag
  138. pkg debug/elf, const DT_POSFLAG_1 = 1879047677
  139. pkg debug/elf, const DT_POSFLAG_1 DynTag
  140. pkg debug/elf, const DT_PPC64_GLINK = 1879048192
  141. pkg debug/elf, const DT_PPC64_GLINK DynTag
  142. pkg debug/elf, const DT_PPC64_OPD = 1879048193
  143. pkg debug/elf, const DT_PPC64_OPD DynTag
  144. pkg debug/elf, const DT_PPC64_OPDSZ = 1879048194
  145. pkg debug/elf, const DT_PPC64_OPDSZ DynTag
  146. pkg debug/elf, const DT_PPC64_OPT = 1879048195
  147. pkg debug/elf, const DT_PPC64_OPT DynTag
  148. pkg debug/elf, const DT_PPC_GOT = 1879048192
  149. pkg debug/elf, const DT_PPC_GOT DynTag
  150. pkg debug/elf, const DT_PPC_OPT = 1879048193
  151. pkg debug/elf, const DT_PPC_OPT DynTag
  152. pkg debug/elf, const DT_RELACOUNT = 1879048185
  153. pkg debug/elf, const DT_RELACOUNT DynTag
  154. pkg debug/elf, const DT_RELCOUNT = 1879048186
  155. pkg debug/elf, const DT_RELCOUNT DynTag
  156. pkg debug/elf, const DT_SPARC_REGISTER = 1879048193
  157. pkg debug/elf, const DT_SPARC_REGISTER DynTag
  158. pkg debug/elf, const DT_SYMINENT = 1879047679
  159. pkg debug/elf, const DT_SYMINENT DynTag
  160. pkg debug/elf, const DT_SYMINFO = 1879047935
  161. pkg debug/elf, const DT_SYMINFO DynTag
  162. pkg debug/elf, const DT_SYMINSZ = 1879047678
  163. pkg debug/elf, const DT_SYMINSZ DynTag
  164. pkg debug/elf, const DT_SYMTAB_SHNDX = 34
  165. pkg debug/elf, const DT_SYMTAB_SHNDX DynTag
  166. pkg debug/elf, const DT_TLSDESC_GOT = 1879047927
  167. pkg debug/elf, const DT_TLSDESC_GOT DynTag
  168. pkg debug/elf, const DT_TLSDESC_PLT = 1879047926
  169. pkg debug/elf, const DT_TLSDESC_PLT DynTag
  170. pkg debug/elf, const DT_USED = 2147483646
  171. pkg debug/elf, const DT_USED DynTag
  172. pkg debug/elf, const DT_VALRNGHI = 1879047679
  173. pkg debug/elf, const DT_VALRNGHI DynTag
  174. pkg debug/elf, const DT_VALRNGLO = 1879047424
  175. pkg debug/elf, const DT_VALRNGLO DynTag
  176. pkg debug/elf, const DT_VERDEF = 1879048188
  177. pkg debug/elf, const DT_VERDEF DynTag
  178. pkg debug/elf, const DT_VERDEFNUM = 1879048189
  179. pkg debug/elf, const DT_VERDEFNUM DynTag
  180. pkg debug/elf, const PT_AARCH64_ARCHEXT = 1879048192
  181. pkg debug/elf, const PT_AARCH64_ARCHEXT ProgType
  182. pkg debug/elf, const PT_AARCH64_UNWIND = 1879048193
  183. pkg debug/elf, const PT_AARCH64_UNWIND ProgType
  184. pkg debug/elf, const PT_ARM_ARCHEXT = 1879048192
  185. pkg debug/elf, const PT_ARM_ARCHEXT ProgType
  186. pkg debug/elf, const PT_ARM_EXIDX = 1879048193
  187. pkg debug/elf, const PT_ARM_EXIDX ProgType
  188. pkg debug/elf, const PT_GNU_EH_FRAME = 1685382480
  189. pkg debug/elf, const PT_GNU_EH_FRAME ProgType
  190. pkg debug/elf, const PT_GNU_MBIND_HI = 1685386580
  191. pkg debug/elf, const PT_GNU_MBIND_HI ProgType
  192. pkg debug/elf, const PT_GNU_MBIND_LO = 1685382485
  193. pkg debug/elf, const PT_GNU_MBIND_LO ProgType
  194. pkg debug/elf, const PT_GNU_PROPERTY = 1685382483
  195. pkg debug/elf, const PT_GNU_PROPERTY ProgType
  196. pkg debug/elf, const PT_GNU_RELRO = 1685382482
  197. pkg debug/elf, const PT_GNU_RELRO ProgType
  198. pkg debug/elf, const PT_GNU_STACK = 1685382481
  199. pkg debug/elf, const PT_GNU_STACK ProgType
  200. pkg debug/elf, const PT_MIPS_ABIFLAGS = 1879048195
  201. pkg debug/elf, const PT_MIPS_ABIFLAGS ProgType
  202. pkg debug/elf, const PT_MIPS_OPTIONS = 1879048194
  203. pkg debug/elf, const PT_MIPS_OPTIONS ProgType
  204. pkg debug/elf, const PT_MIPS_REGINFO = 1879048192
  205. pkg debug/elf, const PT_MIPS_REGINFO ProgType
  206. pkg debug/elf, const PT_MIPS_RTPROC = 1879048193
  207. pkg debug/elf, const PT_MIPS_RTPROC ProgType
  208. pkg debug/elf, const PT_OPENBSD_BOOTDATA = 1705253862
  209. pkg debug/elf, const PT_OPENBSD_BOOTDATA ProgType
  210. pkg debug/elf, const PT_OPENBSD_RANDOMIZE = 1705237478
  211. pkg debug/elf, const PT_OPENBSD_RANDOMIZE ProgType
  212. pkg debug/elf, const PT_OPENBSD_WXNEEDED = 1705237479
  213. pkg debug/elf, const PT_OPENBSD_WXNEEDED ProgType
  214. pkg debug/elf, const PT_PAX_FLAGS = 1694766464
  215. pkg debug/elf, const PT_PAX_FLAGS ProgType
  216. pkg debug/elf, const PT_S390_PGSTE = 1879048192
  217. pkg debug/elf, const PT_S390_PGSTE ProgType
  218. pkg debug/elf, const PT_SUNWSTACK = 1879048187
  219. pkg debug/elf, const PT_SUNWSTACK ProgType
  220. pkg debug/elf, const PT_SUNW_EH_FRAME = 1685382480
  221. pkg debug/elf, const PT_SUNW_EH_FRAME ProgType
  222. pkg embed, method (FS) Open(string) (fs.File, error)
  223. pkg embed, method (FS) ReadDir(string) ([]fs.DirEntry, error)
  224. pkg embed, method (FS) ReadFile(string) ([]uint8, error)
  225. pkg embed, type FS struct
  226. pkg flag, func Func(string, string, func(string) error)
  227. pkg flag, method (*FlagSet) Func(string, string, func(string) error)
  228. pkg go/build, type Package struct, EmbedPatterns []string
  229. pkg go/build, type Package struct, EmbedPatternPos map[string][]token.Position
  230. pkg go/build, type Package struct, IgnoredOtherFiles []string
  231. pkg go/build, type Package struct, TestEmbedPatterns []string
  232. pkg go/build, type Package struct, TestEmbedPatternPos map[string][]token.Position
  233. pkg go/build, type Package struct, XTestEmbedPatterns []string
  234. pkg go/build, type Package struct, XTestEmbedPatternPos map[string][]token.Position
  235. pkg go/build/constraint, func IsGoBuild(string) bool
  236. pkg go/build/constraint, func IsPlusBuild(string) bool
  237. pkg go/build/constraint, func Parse(string) (Expr, error)
  238. pkg go/build/constraint, func PlusBuildLines(Expr) ([]string, error)
  239. pkg go/build/constraint, method (*AndExpr) Eval(func(string) bool) bool
  240. pkg go/build/constraint, method (*AndExpr) String() string
  241. pkg go/build/constraint, method (*NotExpr) Eval(func(string) bool) bool
  242. pkg go/build/constraint, method (*NotExpr) String() string
  243. pkg go/build/constraint, method (*OrExpr) Eval(func(string) bool) bool
  244. pkg go/build/constraint, method (*OrExpr) String() string
  245. pkg go/build/constraint, method (*SyntaxError) Error() string
  246. pkg go/build/constraint, method (*TagExpr) Eval(func(string) bool) bool
  247. pkg go/build/constraint, method (*TagExpr) String() string
  248. pkg go/build/constraint, type AndExpr struct
  249. pkg go/build/constraint, type AndExpr struct, X Expr
  250. pkg go/build/constraint, type AndExpr struct, Y Expr
  251. pkg go/build/constraint, type Expr interface, Eval(func(string) bool) bool
  252. pkg go/build/constraint, type Expr interface, String() string
  253. pkg go/build/constraint, type Expr interface, unexported methods
  254. pkg go/build/constraint, type NotExpr struct
  255. pkg go/build/constraint, type NotExpr struct, X Expr
  256. pkg go/build/constraint, type OrExpr struct
  257. pkg go/build/constraint, type OrExpr struct, X Expr
  258. pkg go/build/constraint, type OrExpr struct, Y Expr
  259. pkg go/build/constraint, type SyntaxError struct
  260. pkg go/build/constraint, type SyntaxError struct, Err string
  261. pkg go/build/constraint, type SyntaxError struct, Offset int
  262. pkg go/build/constraint, type TagExpr struct
  263. pkg go/build/constraint, type TagExpr struct, Tag string
  264. pkg html/template, func ParseFS(fs.FS, ...string) (*Template, error)
  265. pkg html/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error)
  266. pkg io, func NopCloser(Reader) ReadCloser
  267. pkg io, func ReadAll(Reader) ([]uint8, error)
  268. pkg io, type ReadSeekCloser interface { Close, Read, Seek }
  269. pkg io, type ReadSeekCloser interface, Close() error
  270. pkg io, type ReadSeekCloser interface, Read([]uint8) (int, error)
  271. pkg io, type ReadSeekCloser interface, Seek(int64, int) (int64, error)
  272. pkg io, var Discard Writer
  273. pkg io/fs, const ModeAppend = 1073741824
  274. pkg io/fs, const ModeAppend FileMode
  275. pkg io/fs, const ModeCharDevice = 2097152
  276. pkg io/fs, const ModeCharDevice FileMode
  277. pkg io/fs, const ModeDevice = 67108864
  278. pkg io/fs, const ModeDevice FileMode
  279. pkg io/fs, const ModeDir = 2147483648
  280. pkg io/fs, const ModeDir FileMode
  281. pkg io/fs, const ModeExclusive = 536870912
  282. pkg io/fs, const ModeExclusive FileMode
  283. pkg io/fs, const ModeIrregular = 524288
  284. pkg io/fs, const ModeIrregular FileMode
  285. pkg io/fs, const ModeNamedPipe = 33554432
  286. pkg io/fs, const ModeNamedPipe FileMode
  287. pkg io/fs, const ModePerm = 511
  288. pkg io/fs, const ModePerm FileMode
  289. pkg io/fs, const ModeSetgid = 4194304
  290. pkg io/fs, const ModeSetgid FileMode
  291. pkg io/fs, const ModeSetuid = 8388608
  292. pkg io/fs, const ModeSetuid FileMode
  293. pkg io/fs, const ModeSocket = 16777216
  294. pkg io/fs, const ModeSocket FileMode
  295. pkg io/fs, const ModeSticky = 1048576
  296. pkg io/fs, const ModeSticky FileMode
  297. pkg io/fs, const ModeSymlink = 134217728
  298. pkg io/fs, const ModeSymlink FileMode
  299. pkg io/fs, const ModeTemporary = 268435456
  300. pkg io/fs, const ModeTemporary FileMode
  301. pkg io/fs, const ModeType = 2401763328
  302. pkg io/fs, const ModeType FileMode
  303. pkg io/fs, func Glob(FS, string) ([]string, error)
  304. pkg io/fs, func ReadDir(FS, string) ([]DirEntry, error)
  305. pkg io/fs, func ReadFile(FS, string) ([]uint8, error)
  306. pkg io/fs, func Stat(FS, string) (FileInfo, error)
  307. pkg io/fs, func Sub(FS, string) (FS, error)
  308. pkg io/fs, func ValidPath(string) bool
  309. pkg io/fs, func WalkDir(FS, string, WalkDirFunc) error
  310. pkg io/fs, method (*PathError) Error() string
  311. pkg io/fs, method (*PathError) Timeout() bool
  312. pkg io/fs, method (*PathError) Unwrap() error
  313. pkg io/fs, method (FileMode) IsDir() bool
  314. pkg io/fs, method (FileMode) IsRegular() bool
  315. pkg io/fs, method (FileMode) Perm() FileMode
  316. pkg io/fs, method (FileMode) String() string
  317. pkg io/fs, method (FileMode) Type() FileMode
  318. pkg io/fs, type DirEntry interface { Info, IsDir, Name, Type }
  319. pkg io/fs, type DirEntry interface, Info() (FileInfo, error)
  320. pkg io/fs, type DirEntry interface, IsDir() bool
  321. pkg io/fs, type DirEntry interface, Name() string
  322. pkg io/fs, type DirEntry interface, Type() FileMode
  323. pkg io/fs, type FS interface { Open }
  324. pkg io/fs, type FS interface, Open(string) (File, error)
  325. pkg io/fs, type File interface { Close, Read, Stat }
  326. pkg io/fs, type File interface, Close() error
  327. pkg io/fs, type File interface, Read([]uint8) (int, error)
  328. pkg io/fs, type File interface, Stat() (FileInfo, error)
  329. pkg io/fs, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys }
  330. pkg io/fs, type FileInfo interface, IsDir() bool
  331. pkg io/fs, type FileInfo interface, ModTime() time.Time
  332. pkg io/fs, type FileInfo interface, Mode() FileMode
  333. pkg io/fs, type FileInfo interface, Name() string
  334. pkg io/fs, type FileInfo interface, Size() int64
  335. pkg io/fs, type FileInfo interface, Sys() interface{}
  336. pkg io/fs, type FileMode uint32
  337. pkg io/fs, type GlobFS interface { Glob, Open }
  338. pkg io/fs, type GlobFS interface, Glob(string) ([]string, error)
  339. pkg io/fs, type GlobFS interface, Open(string) (File, error)
  340. pkg io/fs, type PathError struct
  341. pkg io/fs, type PathError struct, Err error
  342. pkg io/fs, type PathError struct, Op string
  343. pkg io/fs, type PathError struct, Path string
  344. pkg io/fs, type ReadDirFS interface { Open, ReadDir }
  345. pkg io/fs, type ReadDirFS interface, Open(string) (File, error)
  346. pkg io/fs, type ReadDirFS interface, ReadDir(string) ([]DirEntry, error)
  347. pkg io/fs, type ReadDirFile interface { Close, Read, ReadDir, Stat }
  348. pkg io/fs, type ReadDirFile interface, Close() error
  349. pkg io/fs, type ReadDirFile interface, Read([]uint8) (int, error)
  350. pkg io/fs, type ReadDirFile interface, ReadDir(int) ([]DirEntry, error)
  351. pkg io/fs, type ReadDirFile interface, Stat() (FileInfo, error)
  352. pkg io/fs, type ReadFileFS interface { Open, ReadFile }
  353. pkg io/fs, type ReadFileFS interface, Open(string) (File, error)
  354. pkg io/fs, type ReadFileFS interface, ReadFile(string) ([]uint8, error)
  355. pkg io/fs, type StatFS interface { Open, Stat }
  356. pkg io/fs, type StatFS interface, Open(string) (File, error)
  357. pkg io/fs, type StatFS interface, Stat(string) (FileInfo, error)
  358. pkg io/fs, type SubFS interface { Open, Sub }
  359. pkg io/fs, type SubFS interface, Open(string) (File, error)
  360. pkg io/fs, type SubFS interface, Sub(string) (FS, error)
  361. pkg io/fs, type WalkDirFunc func(string, DirEntry, error) error
  362. pkg io/fs, var ErrClosed error
  363. pkg io/fs, var ErrExist error
  364. pkg io/fs, var ErrInvalid error
  365. pkg io/fs, var ErrNotExist error
  366. pkg io/fs, var ErrPermission error
  367. pkg io/fs, var SkipDir error
  368. pkg log, func Default() *Logger
  369. pkg net, var ErrClosed error
  370. pkg net/http, func FS(fs.FS) FileSystem
  371. pkg net/http, type Transport struct, GetProxyConnectHeader func(context.Context, *url.URL, string) (Header, error)
  372. pkg os, const ModeAppend fs.FileMode
  373. pkg os, const ModeCharDevice fs.FileMode
  374. pkg os, const ModeDevice fs.FileMode
  375. pkg os, const ModeDir fs.FileMode
  376. pkg os, const ModeExclusive fs.FileMode
  377. pkg os, const ModeIrregular fs.FileMode
  378. pkg os, const ModeNamedPipe fs.FileMode
  379. pkg os, const ModePerm fs.FileMode
  380. pkg os, const ModeSetgid fs.FileMode
  381. pkg os, const ModeSetuid fs.FileMode
  382. pkg os, const ModeSocket fs.FileMode
  383. pkg os, const ModeSticky fs.FileMode
  384. pkg os, const ModeSymlink fs.FileMode
  385. pkg os, const ModeTemporary fs.FileMode
  386. pkg os, const ModeType fs.FileMode
  387. pkg os, func Chmod(string, fs.FileMode) error
  388. pkg os, func CreateTemp(string, string) (*File, error)
  389. pkg os, func DirFS(string) fs.FS
  390. pkg os, func Lstat(string) (fs.FileInfo, error)
  391. pkg os, func Mkdir(string, fs.FileMode) error
  392. pkg os, func MkdirAll(string, fs.FileMode) error
  393. pkg os, func MkdirTemp(string, string) (string, error)
  394. pkg os, func OpenFile(string, int, fs.FileMode) (*File, error)
  395. pkg os, func ReadDir(string) ([]fs.DirEntry, error)
  396. pkg os, func ReadFile(string) ([]uint8, error)
  397. pkg os, func SameFile(fs.FileInfo, fs.FileInfo) bool
  398. pkg os, func Stat(string) (fs.FileInfo, error)
  399. pkg os, func WriteFile(string, []uint8, fs.FileMode) error
  400. pkg os, method (*File) Chmod(fs.FileMode) error
  401. pkg os, method (*File) ReadDir(int) ([]fs.DirEntry, error)
  402. pkg os, method (*File) Readdir(int) ([]fs.FileInfo, error)
  403. pkg os, method (*File) Stat() (fs.FileInfo, error)
  404. pkg os, type DirEntry = fs.DirEntry
  405. pkg os, type FileInfo = fs.FileInfo
  406. pkg os, type FileMode = fs.FileMode
  407. pkg os, type PathError = fs.PathError
  408. pkg os, var ErrProcessDone error
  409. pkg os/signal, func NotifyContext(context.Context, ...os.Signal) (context.Context, context.CancelFunc)
  410. pkg path/filepath, func WalkDir(string, fs.WalkDirFunc) error
  411. pkg runtime/metrics, const KindBad = 0
  412. pkg runtime/metrics, const KindBad ValueKind
  413. pkg runtime/metrics, const KindFloat64 = 2
  414. pkg runtime/metrics, const KindFloat64 ValueKind
  415. pkg runtime/metrics, const KindFloat64Histogram = 3
  416. pkg runtime/metrics, const KindFloat64Histogram ValueKind
  417. pkg runtime/metrics, const KindUint64 = 1
  418. pkg runtime/metrics, const KindUint64 ValueKind
  419. pkg runtime/metrics, func All() []Description
  420. pkg runtime/metrics, func Read([]Sample)
  421. pkg runtime/metrics, method (Value) Float64() float64
  422. pkg runtime/metrics, method (Value) Float64Histogram() *Float64Histogram
  423. pkg runtime/metrics, method (Value) Kind() ValueKind
  424. pkg runtime/metrics, method (Value) Uint64() uint64
  425. pkg runtime/metrics, type Description struct
  426. pkg runtime/metrics, type Description struct, Cumulative bool
  427. pkg runtime/metrics, type Description struct, Description string
  428. pkg runtime/metrics, type Description struct, Kind ValueKind
  429. pkg runtime/metrics, type Description struct, Name string
  430. pkg runtime/metrics, type Float64Histogram struct
  431. pkg runtime/metrics, type Float64Histogram struct, Buckets []float64
  432. pkg runtime/metrics, type Float64Histogram struct, Counts []uint64
  433. pkg runtime/metrics, type Sample struct
  434. pkg runtime/metrics, type Sample struct, Name string
  435. pkg runtime/metrics, type Sample struct, Value Value
  436. pkg runtime/metrics, type Value struct
  437. pkg runtime/metrics, type ValueKind int
  438. pkg syscall (linux-386), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  439. pkg syscall (linux-386), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  440. pkg syscall (linux-386), func Setegid(int) error
  441. pkg syscall (linux-386), func Seteuid(int) error
  442. pkg syscall (linux-386-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  443. pkg syscall (linux-386-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  444. pkg syscall (linux-386-cgo), func Setegid(int) error
  445. pkg syscall (linux-386-cgo), func Seteuid(int) error
  446. pkg syscall (linux-amd64), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  447. pkg syscall (linux-amd64), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  448. pkg syscall (linux-amd64), func Setegid(int) error
  449. pkg syscall (linux-amd64), func Seteuid(int) error
  450. pkg syscall (linux-amd64-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  451. pkg syscall (linux-amd64-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  452. pkg syscall (linux-amd64-cgo), func Setegid(int) error
  453. pkg syscall (linux-amd64-cgo), func Seteuid(int) error
  454. pkg syscall (linux-arm), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  455. pkg syscall (linux-arm), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  456. pkg syscall (linux-arm), func Setegid(int) error
  457. pkg syscall (linux-arm), func Seteuid(int) error
  458. pkg syscall (linux-arm-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  459. pkg syscall (linux-arm-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  460. pkg syscall (linux-arm-cgo), func Setegid(int) error
  461. pkg syscall (linux-arm-cgo), func Seteuid(int) error
  462. pkg syscall (windows-386), method (*DLLError) Unwrap() error
  463. pkg syscall (windows-386), type SysProcAttr struct, NoInheritHandles bool
  464. pkg syscall (windows-amd64), method (*DLLError) Unwrap() error
  465. pkg syscall (windows-amd64), type SysProcAttr struct, NoInheritHandles bool
  466. pkg testing/fstest, func TestFS(fs.FS, ...string) error
  467. pkg testing/fstest, method (MapFS) Glob(string) ([]string, error)
  468. pkg testing/fstest, method (MapFS) Open(string) (fs.File, error)
  469. pkg testing/fstest, method (MapFS) ReadDir(string) ([]fs.DirEntry, error)
  470. pkg testing/fstest, method (MapFS) ReadFile(string) ([]uint8, error)
  471. pkg testing/fstest, method (MapFS) Stat(string) (fs.FileInfo, error)
  472. pkg testing/fstest, method (MapFS) Sub(string) (fs.FS, error)
  473. pkg testing/fstest, type MapFS map[string]*MapFile
  474. pkg testing/fstest, type MapFile struct
  475. pkg testing/fstest, type MapFile struct, Data []uint8
  476. pkg testing/fstest, type MapFile struct, ModTime time.Time
  477. pkg testing/fstest, type MapFile struct, Mode fs.FileMode
  478. pkg testing/fstest, type MapFile struct, Sys interface{}
  479. pkg testing/iotest, func ErrReader(error) io.Reader
  480. pkg testing/iotest, func TestReader(io.Reader, []uint8) error
  481. pkg text/template, func ParseFS(fs.FS, ...string) (*Template, error)
  482. pkg text/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error)
  483. pkg text/template/parse, const NodeComment = 20
  484. pkg text/template/parse, const NodeComment NodeType
  485. pkg text/template/parse, const ParseComments = 1
  486. pkg text/template/parse, const ParseComments Mode
  487. pkg text/template/parse, method (*CommentNode) Copy() Node
  488. pkg text/template/parse, method (*CommentNode) String() string
  489. pkg text/template/parse, method (CommentNode) Position() Pos
  490. pkg text/template/parse, method (CommentNode) Type() NodeType
  491. pkg text/template/parse, type CommentNode struct
  492. pkg text/template/parse, type CommentNode struct, Text string
  493. pkg text/template/parse, type CommentNode struct, embedded NodeType
  494. pkg text/template/parse, type CommentNode struct, embedded Pos
  495. pkg text/template/parse, type Mode uint
  496. pkg text/template/parse, type Tree struct, Mode Mode
  497. pkg unicode, const Version = "13.0.0"
  498. pkg unicode, var Chorasmian *RangeTable
  499. pkg unicode, var Dives_Akuru *RangeTable
  500. pkg unicode, var Khitan_Small_Script *RangeTable
  501. pkg unicode, var Yezidi *RangeTable
  502. # all deprecations up to and including Go 1.16
  503. pkg archive/tar, const TypeRegA //deprecated
  504. pkg archive/tar, type Header struct, Xattrs //deprecated
  505. pkg archive/zip, method (*File) ModTime //deprecated
  506. pkg archive/zip, method (*File) SetModTime //deprecated
  507. pkg archive/zip, method (*FileHeader) ModTime //deprecated
  508. pkg archive/zip, method (*FileHeader) SetModTime //deprecated
  509. pkg archive/zip, type FileHeader struct, CompressedSize //deprecated
  510. pkg archive/zip, type FileHeader struct, ModifiedDate //deprecated
  511. pkg archive/zip, type FileHeader struct, ModifiedTime //deprecated
  512. pkg archive/zip, type FileHeader struct, UncompressedSize //deprecated
  513. pkg compress/flate, type ReadError //deprecated
  514. pkg compress/flate, type WriteError //deprecated
  515. pkg crypto/rc4, method (*Cipher) Reset //deprecated
  516. pkg crypto/tls, const VersionSSL30 //deprecated
  517. pkg crypto/tls, method (*Config) BuildNameToCertificate //deprecated
  518. pkg crypto/tls, type Config struct, NameToCertificate //deprecated
  519. pkg crypto/tls, type Config struct, SessionTicketKey //deprecated
  520. pkg crypto/tls, type ConnectionState struct, NegotiatedProtocolIsMutual //deprecated
  521. pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated
  522. pkg crypto/x509, func DecryptPEMBlock //deprecated
  523. pkg crypto/x509, func EncryptPEMBlock //deprecated
  524. pkg crypto/x509, func IsEncryptedPEMBlock //deprecated
  525. pkg crypto/x509, type CertificateRequest struct, Attributes //deprecated
  526. pkg database/sql/driver, type ColumnConverter //deprecated
  527. pkg database/sql/driver, type Conn interface, Begin //deprecated
  528. pkg database/sql/driver, type Execer //deprecated
  529. pkg database/sql/driver, type Queryer //deprecated
  530. pkg database/sql/driver, type Stmt interface, Exec //deprecated
  531. pkg database/sql/driver, type Stmt interface, Query //deprecated
  532. pkg debug/gosym, method (*LineTable) LineToPC //deprecated
  533. pkg debug/gosym, method (*LineTable) PCToLine //deprecated
  534. pkg encoding/csv, type Reader struct, TrailingComma //deprecated
  535. pkg encoding/csv, var ErrTrailingComma //deprecated
  536. pkg encoding/json, type InvalidUTF8Error //deprecated
  537. pkg encoding/json, type UnmarshalFieldError //deprecated
  538. pkg go/build, const AllowBinary //deprecated
  539. pkg go/doc, type Package struct, Bugs //deprecated
  540. pkg go/importer, func For //deprecated
  541. pkg go/importer, func ForCompiler //deprecated
  542. pkg go/types, func NewInterface //deprecated
  543. pkg go/types, method (*Interface) Embedded //deprecated
  544. pkg image, var ZP //deprecated
  545. pkg image, var ZR //deprecated
  546. pkg image/jpeg, type Reader //deprecated
  547. pkg net, type Dialer struct, Cancel //deprecated
  548. pkg net, type Dialer struct, DualStack //deprecated
  549. pkg net/http, method (*Transport) CancelRequest //deprecated
  550. pkg net/http, type CloseNotifier //deprecated
  551. pkg net/http, type ProtocolError //deprecated
  552. pkg net/http, type Request struct, Cancel //deprecated
  553. pkg net/http, type Transport struct, Dial //deprecated
  554. pkg net/http, type Transport struct, DialTLS //deprecated
  555. pkg net/http, var ErrHeaderTooLong //deprecated
  556. pkg net/http, var ErrMissingContentLength //deprecated
  557. pkg net/http, var ErrShortBody //deprecated
  558. pkg net/http, var ErrUnexpectedTrailer //deprecated
  559. pkg net/http, var ErrWriteAfterFlush //deprecated
  560. pkg net/http/httptest, type ResponseRecorder struct, HeaderMap //deprecated
  561. pkg net/http/httputil, func NewClientConn //deprecated
  562. pkg net/http/httputil, func NewProxyClientConn //deprecated
  563. pkg net/http/httputil, func NewServerConn //deprecated
  564. pkg net/http/httputil, type ClientConn //deprecated
  565. pkg net/http/httputil, type ServerConn //deprecated
  566. pkg net/http/httputil, var ErrClosed //deprecated
  567. pkg net/http/httputil, var ErrPersistEOF //deprecated
  568. pkg net/http/httputil, var ErrPipeline //deprecated
  569. pkg os, const SEEK_CUR //deprecated
  570. pkg os, const SEEK_END //deprecated
  571. pkg os, const SEEK_SET //deprecated
  572. pkg path/filepath, func HasPrefix //deprecated
  573. pkg regexp, method (*Regexp) Copy //deprecated
  574. pkg runtime, func CPUProfile //deprecated
  575. pkg syscall (darwin-amd64), func BpfBuflen //deprecated
  576. pkg syscall (darwin-amd64), func BpfDatalink //deprecated
  577. pkg syscall (darwin-amd64), func BpfHeadercmpl //deprecated
  578. pkg syscall (darwin-amd64), func BpfInterface //deprecated
  579. pkg syscall (darwin-amd64), func BpfJump //deprecated
  580. pkg syscall (darwin-amd64), func BpfStats //deprecated
  581. pkg syscall (darwin-amd64), func BpfStmt //deprecated
  582. pkg syscall (darwin-amd64), func BpfTimeout //deprecated
  583. pkg syscall (darwin-amd64), func CheckBpfVersion //deprecated
  584. pkg syscall (darwin-amd64), func FlushBpf //deprecated
  585. pkg syscall (darwin-amd64), func ParseRoutingMessage //deprecated
  586. pkg syscall (darwin-amd64), func ParseRoutingSockaddr //deprecated
  587. pkg syscall (darwin-amd64), func RouteRIB //deprecated
  588. pkg syscall (darwin-amd64), func SetBpf //deprecated
  589. pkg syscall (darwin-amd64), func SetBpfBuflen //deprecated
  590. pkg syscall (darwin-amd64), func SetBpfDatalink //deprecated
  591. pkg syscall (darwin-amd64), func SetBpfHeadercmpl //deprecated
  592. pkg syscall (darwin-amd64), func SetBpfImmediate //deprecated
  593. pkg syscall (darwin-amd64), func SetBpfInterface //deprecated
  594. pkg syscall (darwin-amd64), func SetBpfPromisc //deprecated
  595. pkg syscall (darwin-amd64), func SetBpfTimeout //deprecated
  596. pkg syscall (darwin-amd64), func StringSlicePtr //deprecated
  597. pkg syscall (darwin-amd64), type InterfaceAddrMessage //deprecated
  598. pkg syscall (darwin-amd64), type InterfaceMessage //deprecated
  599. pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage //deprecated
  600. pkg syscall (darwin-amd64), type RouteMessage //deprecated
  601. pkg syscall (darwin-amd64), type RoutingMessage //deprecated
  602. pkg syscall (darwin-amd64-cgo), func BpfBuflen //deprecated
  603. pkg syscall (darwin-amd64-cgo), func BpfDatalink //deprecated
  604. pkg syscall (darwin-amd64-cgo), func BpfHeadercmpl //deprecated
  605. pkg syscall (darwin-amd64-cgo), func BpfInterface //deprecated
  606. pkg syscall (darwin-amd64-cgo), func BpfJump //deprecated
  607. pkg syscall (darwin-amd64-cgo), func BpfStats //deprecated
  608. pkg syscall (darwin-amd64-cgo), func BpfStmt //deprecated
  609. pkg syscall (darwin-amd64-cgo), func BpfTimeout //deprecated
  610. pkg syscall (darwin-amd64-cgo), func CheckBpfVersion //deprecated
  611. pkg syscall (darwin-amd64-cgo), func FlushBpf //deprecated
  612. pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage //deprecated
  613. pkg syscall (darwin-amd64-cgo), func ParseRoutingSockaddr //deprecated
  614. pkg syscall (darwin-amd64-cgo), func RouteRIB //deprecated
  615. pkg syscall (darwin-amd64-cgo), func SetBpf //deprecated
  616. pkg syscall (darwin-amd64-cgo), func SetBpfBuflen //deprecated
  617. pkg syscall (darwin-amd64-cgo), func SetBpfDatalink //deprecated
  618. pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl //deprecated
  619. pkg syscall (darwin-amd64-cgo), func SetBpfImmediate //deprecated
  620. pkg syscall (darwin-amd64-cgo), func SetBpfInterface //deprecated
  621. pkg syscall (darwin-amd64-cgo), func SetBpfPromisc //deprecated
  622. pkg syscall (darwin-amd64-cgo), func SetBpfTimeout //deprecated
  623. pkg syscall (darwin-amd64-cgo), func StringSlicePtr //deprecated
  624. pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage //deprecated
  625. pkg syscall (darwin-amd64-cgo), type InterfaceMessage //deprecated
  626. pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage //deprecated
  627. pkg syscall (darwin-amd64-cgo), type RouteMessage //deprecated
  628. pkg syscall (darwin-amd64-cgo), type RoutingMessage //deprecated
  629. pkg syscall (freebsd-386), func BpfBuflen //deprecated
  630. pkg syscall (freebsd-386), func BpfDatalink //deprecated
  631. pkg syscall (freebsd-386), func BpfHeadercmpl //deprecated
  632. pkg syscall (freebsd-386), func BpfInterface //deprecated
  633. pkg syscall (freebsd-386), func BpfJump //deprecated
  634. pkg syscall (freebsd-386), func BpfStats //deprecated
  635. pkg syscall (freebsd-386), func BpfStmt //deprecated
  636. pkg syscall (freebsd-386), func BpfTimeout //deprecated
  637. pkg syscall (freebsd-386), func CheckBpfVersion //deprecated
  638. pkg syscall (freebsd-386), func FlushBpf //deprecated
  639. pkg syscall (freebsd-386), func ParseRoutingMessage //deprecated
  640. pkg syscall (freebsd-386), func ParseRoutingSockaddr //deprecated
  641. pkg syscall (freebsd-386), func RouteRIB //deprecated
  642. pkg syscall (freebsd-386), func SetBpf //deprecated
  643. pkg syscall (freebsd-386), func SetBpfBuflen //deprecated
  644. pkg syscall (freebsd-386), func SetBpfDatalink //deprecated
  645. pkg syscall (freebsd-386), func SetBpfHeadercmpl //deprecated
  646. pkg syscall (freebsd-386), func SetBpfImmediate //deprecated
  647. pkg syscall (freebsd-386), func SetBpfInterface //deprecated
  648. pkg syscall (freebsd-386), func SetBpfPromisc //deprecated
  649. pkg syscall (freebsd-386), func SetBpfTimeout //deprecated
  650. pkg syscall (freebsd-386), func StringSlicePtr //deprecated
  651. pkg syscall (freebsd-386), type InterfaceAddrMessage //deprecated
  652. pkg syscall (freebsd-386), type InterfaceAnnounceMessage //deprecated
  653. pkg syscall (freebsd-386), type InterfaceMessage //deprecated
  654. pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage //deprecated
  655. pkg syscall (freebsd-386), type RouteMessage //deprecated
  656. pkg syscall (freebsd-386), type RoutingMessage //deprecated
  657. pkg syscall (freebsd-386-cgo), func BpfBuflen //deprecated
  658. pkg syscall (freebsd-386-cgo), func BpfDatalink //deprecated
  659. pkg syscall (freebsd-386-cgo), func BpfHeadercmpl //deprecated
  660. pkg syscall (freebsd-386-cgo), func BpfInterface //deprecated
  661. pkg syscall (freebsd-386-cgo), func BpfJump //deprecated
  662. pkg syscall (freebsd-386-cgo), func BpfStats //deprecated
  663. pkg syscall (freebsd-386-cgo), func BpfStmt //deprecated
  664. pkg syscall (freebsd-386-cgo), func BpfTimeout //deprecated
  665. pkg syscall (freebsd-386-cgo), func CheckBpfVersion //deprecated
  666. pkg syscall (freebsd-386-cgo), func FlushBpf //deprecated
  667. pkg syscall (freebsd-386-cgo), func ParseRoutingMessage //deprecated
  668. pkg syscall (freebsd-386-cgo), func ParseRoutingSockaddr //deprecated
  669. pkg syscall (freebsd-386-cgo), func RouteRIB //deprecated
  670. pkg syscall (freebsd-386-cgo), func SetBpf //deprecated
  671. pkg syscall (freebsd-386-cgo), func SetBpfBuflen //deprecated
  672. pkg syscall (freebsd-386-cgo), func SetBpfDatalink //deprecated
  673. pkg syscall (freebsd-386-cgo), func SetBpfHeadercmpl //deprecated
  674. pkg syscall (freebsd-386-cgo), func SetBpfImmediate //deprecated
  675. pkg syscall (freebsd-386-cgo), func SetBpfInterface //deprecated
  676. pkg syscall (freebsd-386-cgo), func SetBpfPromisc //deprecated
  677. pkg syscall (freebsd-386-cgo), func SetBpfTimeout //deprecated
  678. pkg syscall (freebsd-386-cgo), func StringSlicePtr //deprecated
  679. pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage //deprecated
  680. pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage //deprecated
  681. pkg syscall (freebsd-386-cgo), type InterfaceMessage //deprecated
  682. pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage //deprecated
  683. pkg syscall (freebsd-386-cgo), type RouteMessage //deprecated
  684. pkg syscall (freebsd-386-cgo), type RoutingMessage //deprecated
  685. pkg syscall (freebsd-amd64), func BpfBuflen //deprecated
  686. pkg syscall (freebsd-amd64), func BpfDatalink //deprecated
  687. pkg syscall (freebsd-amd64), func BpfHeadercmpl //deprecated
  688. pkg syscall (freebsd-amd64), func BpfInterface //deprecated
  689. pkg syscall (freebsd-amd64), func BpfJump //deprecated
  690. pkg syscall (freebsd-amd64), func BpfStats //deprecated
  691. pkg syscall (freebsd-amd64), func BpfStmt //deprecated
  692. pkg syscall (freebsd-amd64), func BpfTimeout //deprecated
  693. pkg syscall (freebsd-amd64), func CheckBpfVersion //deprecated
  694. pkg syscall (freebsd-amd64), func FlushBpf //deprecated
  695. pkg syscall (freebsd-amd64), func ParseRoutingMessage //deprecated
  696. pkg syscall (freebsd-amd64), func ParseRoutingSockaddr //deprecated
  697. pkg syscall (freebsd-amd64), func RouteRIB //deprecated
  698. pkg syscall (freebsd-amd64), func SetBpf //deprecated
  699. pkg syscall (freebsd-amd64), func SetBpfBuflen //deprecated
  700. pkg syscall (freebsd-amd64), func SetBpfDatalink //deprecated
  701. pkg syscall (freebsd-amd64), func SetBpfHeadercmpl //deprecated
  702. pkg syscall (freebsd-amd64), func SetBpfImmediate //deprecated
  703. pkg syscall (freebsd-amd64), func SetBpfInterface //deprecated
  704. pkg syscall (freebsd-amd64), func SetBpfPromisc //deprecated
  705. pkg syscall (freebsd-amd64), func SetBpfTimeout //deprecated
  706. pkg syscall (freebsd-amd64), func StringSlicePtr //deprecated
  707. pkg syscall (freebsd-amd64), type InterfaceAddrMessage //deprecated
  708. pkg syscall (freebsd-amd64), type InterfaceAnnounceMessage //deprecated
  709. pkg syscall (freebsd-amd64), type InterfaceMessage //deprecated
  710. pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage //deprecated
  711. pkg syscall (freebsd-amd64), type RouteMessage //deprecated
  712. pkg syscall (freebsd-amd64), type RoutingMessage //deprecated
  713. pkg syscall (freebsd-amd64-cgo), func BpfBuflen //deprecated
  714. pkg syscall (freebsd-amd64-cgo), func BpfDatalink //deprecated
  715. pkg syscall (freebsd-amd64-cgo), func BpfHeadercmpl //deprecated
  716. pkg syscall (freebsd-amd64-cgo), func BpfInterface //deprecated
  717. pkg syscall (freebsd-amd64-cgo), func BpfJump //deprecated
  718. pkg syscall (freebsd-amd64-cgo), func BpfStats //deprecated
  719. pkg syscall (freebsd-amd64-cgo), func BpfStmt //deprecated
  720. pkg syscall (freebsd-amd64-cgo), func BpfTimeout //deprecated
  721. pkg syscall (freebsd-amd64-cgo), func CheckBpfVersion //deprecated
  722. pkg syscall (freebsd-amd64-cgo), func FlushBpf //deprecated
  723. pkg syscall (freebsd-amd64-cgo), func ParseRoutingMessage //deprecated
  724. pkg syscall (freebsd-amd64-cgo), func ParseRoutingSockaddr //deprecated
  725. pkg syscall (freebsd-amd64-cgo), func RouteRIB //deprecated
  726. pkg syscall (freebsd-amd64-cgo), func SetBpf //deprecated
  727. pkg syscall (freebsd-amd64-cgo), func SetBpfBuflen //deprecated
  728. pkg syscall (freebsd-amd64-cgo), func SetBpfDatalink //deprecated
  729. pkg syscall (freebsd-amd64-cgo), func SetBpfHeadercmpl //deprecated
  730. pkg syscall (freebsd-amd64-cgo), func SetBpfImmediate //deprecated
  731. pkg syscall (freebsd-amd64-cgo), func SetBpfInterface //deprecated
  732. pkg syscall (freebsd-amd64-cgo), func SetBpfPromisc //deprecated
  733. pkg syscall (freebsd-amd64-cgo), func SetBpfTimeout //deprecated
  734. pkg syscall (freebsd-amd64-cgo), func StringSlicePtr //deprecated
  735. pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage //deprecated
  736. pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated
  737. pkg syscall (freebsd-amd64-cgo), type InterfaceMessage //deprecated
  738. pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage //deprecated
  739. pkg syscall (freebsd-amd64-cgo), type RouteMessage //deprecated
  740. pkg syscall (freebsd-amd64-cgo), type RoutingMessage //deprecated
  741. pkg syscall (freebsd-arm), func BpfBuflen //deprecated
  742. pkg syscall (freebsd-arm), func BpfDatalink //deprecated
  743. pkg syscall (freebsd-arm), func BpfHeadercmpl //deprecated
  744. pkg syscall (freebsd-arm), func BpfInterface //deprecated
  745. pkg syscall (freebsd-arm), func BpfJump //deprecated
  746. pkg syscall (freebsd-arm), func BpfStats //deprecated
  747. pkg syscall (freebsd-arm), func BpfStmt //deprecated
  748. pkg syscall (freebsd-arm), func BpfTimeout //deprecated
  749. pkg syscall (freebsd-arm), func CheckBpfVersion //deprecated
  750. pkg syscall (freebsd-arm), func FlushBpf //deprecated
  751. pkg syscall (freebsd-arm), func ParseRoutingMessage //deprecated
  752. pkg syscall (freebsd-arm), func ParseRoutingSockaddr //deprecated
  753. pkg syscall (freebsd-arm), func RouteRIB //deprecated
  754. pkg syscall (freebsd-arm), func SetBpf //deprecated
  755. pkg syscall (freebsd-arm), func SetBpfBuflen //deprecated
  756. pkg syscall (freebsd-arm), func SetBpfDatalink //deprecated
  757. pkg syscall (freebsd-arm), func SetBpfHeadercmpl //deprecated
  758. pkg syscall (freebsd-arm), func SetBpfImmediate //deprecated
  759. pkg syscall (freebsd-arm), func SetBpfInterface //deprecated
  760. pkg syscall (freebsd-arm), func SetBpfPromisc //deprecated
  761. pkg syscall (freebsd-arm), func SetBpfTimeout //deprecated
  762. pkg syscall (freebsd-arm), func StringSlicePtr //deprecated
  763. pkg syscall (freebsd-arm), type InterfaceAddrMessage //deprecated
  764. pkg syscall (freebsd-arm), type InterfaceAnnounceMessage //deprecated
  765. pkg syscall (freebsd-arm), type InterfaceMessage //deprecated
  766. pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage //deprecated
  767. pkg syscall (freebsd-arm), type RouteMessage //deprecated
  768. pkg syscall (freebsd-arm), type RoutingMessage //deprecated
  769. pkg syscall (freebsd-arm-cgo), func BpfBuflen //deprecated
  770. pkg syscall (freebsd-arm-cgo), func BpfDatalink //deprecated
  771. pkg syscall (freebsd-arm-cgo), func BpfHeadercmpl //deprecated
  772. pkg syscall (freebsd-arm-cgo), func BpfInterface //deprecated
  773. pkg syscall (freebsd-arm-cgo), func BpfJump //deprecated
  774. pkg syscall (freebsd-arm-cgo), func BpfStats //deprecated
  775. pkg syscall (freebsd-arm-cgo), func BpfStmt //deprecated
  776. pkg syscall (freebsd-arm-cgo), func BpfTimeout //deprecated
  777. pkg syscall (freebsd-arm-cgo), func CheckBpfVersion //deprecated
  778. pkg syscall (freebsd-arm-cgo), func FlushBpf //deprecated
  779. pkg syscall (freebsd-arm-cgo), func ParseRoutingMessage //deprecated
  780. pkg syscall (freebsd-arm-cgo), func ParseRoutingSockaddr //deprecated
  781. pkg syscall (freebsd-arm-cgo), func RouteRIB //deprecated
  782. pkg syscall (freebsd-arm-cgo), func SetBpf //deprecated
  783. pkg syscall (freebsd-arm-cgo), func SetBpfBuflen //deprecated
  784. pkg syscall (freebsd-arm-cgo), func SetBpfDatalink //deprecated
  785. pkg syscall (freebsd-arm-cgo), func SetBpfHeadercmpl //deprecated
  786. pkg syscall (freebsd-arm-cgo), func SetBpfImmediate //deprecated
  787. pkg syscall (freebsd-arm-cgo), func SetBpfInterface //deprecated
  788. pkg syscall (freebsd-arm-cgo), func SetBpfPromisc //deprecated
  789. pkg syscall (freebsd-arm-cgo), func SetBpfTimeout //deprecated
  790. pkg syscall (freebsd-arm-cgo), func StringSlicePtr //deprecated
  791. pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage //deprecated
  792. pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage //deprecated
  793. pkg syscall (freebsd-arm-cgo), type InterfaceMessage //deprecated
  794. pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage //deprecated
  795. pkg syscall (freebsd-arm-cgo), type RouteMessage //deprecated
  796. pkg syscall (freebsd-arm-cgo), type RoutingMessage //deprecated
  797. pkg syscall (linux-386), func AttachLsf //deprecated
  798. pkg syscall (linux-386), func DetachLsf //deprecated
  799. pkg syscall (linux-386), func LsfJump //deprecated
  800. pkg syscall (linux-386), func LsfSocket //deprecated
  801. pkg syscall (linux-386), func LsfStmt //deprecated
  802. pkg syscall (linux-386), func SetLsfPromisc //deprecated
  803. pkg syscall (linux-386), func StringSlicePtr //deprecated
  804. pkg syscall (linux-386-cgo), func AttachLsf //deprecated
  805. pkg syscall (linux-386-cgo), func DetachLsf //deprecated
  806. pkg syscall (linux-386-cgo), func LsfJump //deprecated
  807. pkg syscall (linux-386-cgo), func LsfSocket //deprecated
  808. pkg syscall (linux-386-cgo), func LsfStmt //deprecated
  809. pkg syscall (linux-386-cgo), func SetLsfPromisc //deprecated
  810. pkg syscall (linux-386-cgo), func StringSlicePtr //deprecated
  811. pkg syscall (linux-amd64), func AttachLsf //deprecated
  812. pkg syscall (linux-amd64), func DetachLsf //deprecated
  813. pkg syscall (linux-amd64), func LsfJump //deprecated
  814. pkg syscall (linux-amd64), func LsfSocket //deprecated
  815. pkg syscall (linux-amd64), func LsfStmt //deprecated
  816. pkg syscall (linux-amd64), func SetLsfPromisc //deprecated
  817. pkg syscall (linux-amd64), func StringSlicePtr //deprecated
  818. pkg syscall (linux-amd64-cgo), func AttachLsf //deprecated
  819. pkg syscall (linux-amd64-cgo), func DetachLsf //deprecated
  820. pkg syscall (linux-amd64-cgo), func LsfJump //deprecated
  821. pkg syscall (linux-amd64-cgo), func LsfSocket //deprecated
  822. pkg syscall (linux-amd64-cgo), func LsfStmt //deprecated
  823. pkg syscall (linux-amd64-cgo), func SetLsfPromisc //deprecated
  824. pkg syscall (linux-amd64-cgo), func StringSlicePtr //deprecated
  825. pkg syscall (linux-arm), func AttachLsf //deprecated
  826. pkg syscall (linux-arm), func DetachLsf //deprecated
  827. pkg syscall (linux-arm), func LsfJump //deprecated
  828. pkg syscall (linux-arm), func LsfSocket //deprecated
  829. pkg syscall (linux-arm), func LsfStmt //deprecated
  830. pkg syscall (linux-arm), func SetLsfPromisc //deprecated
  831. pkg syscall (linux-arm), func StringSlicePtr //deprecated
  832. pkg syscall (linux-arm-cgo), func AttachLsf //deprecated
  833. pkg syscall (linux-arm-cgo), func DetachLsf //deprecated
  834. pkg syscall (linux-arm-cgo), func LsfJump //deprecated
  835. pkg syscall (linux-arm-cgo), func LsfSocket //deprecated
  836. pkg syscall (linux-arm-cgo), func LsfStmt //deprecated
  837. pkg syscall (linux-arm-cgo), func SetLsfPromisc //deprecated
  838. pkg syscall (linux-arm-cgo), func StringSlicePtr //deprecated
  839. pkg syscall (netbsd-386), func BpfBuflen //deprecated
  840. pkg syscall (netbsd-386), func BpfDatalink //deprecated
  841. pkg syscall (netbsd-386), func BpfHeadercmpl //deprecated
  842. pkg syscall (netbsd-386), func BpfInterface //deprecated
  843. pkg syscall (netbsd-386), func BpfJump //deprecated
  844. pkg syscall (netbsd-386), func BpfStats //deprecated
  845. pkg syscall (netbsd-386), func BpfStmt //deprecated
  846. pkg syscall (netbsd-386), func BpfTimeout //deprecated
  847. pkg syscall (netbsd-386), func CheckBpfVersion //deprecated
  848. pkg syscall (netbsd-386), func FlushBpf //deprecated
  849. pkg syscall (netbsd-386), func ParseRoutingMessage //deprecated
  850. pkg syscall (netbsd-386), func ParseRoutingSockaddr //deprecated
  851. pkg syscall (netbsd-386), func RouteRIB //deprecated
  852. pkg syscall (netbsd-386), func SetBpf //deprecated
  853. pkg syscall (netbsd-386), func SetBpfBuflen //deprecated
  854. pkg syscall (netbsd-386), func SetBpfDatalink //deprecated
  855. pkg syscall (netbsd-386), func SetBpfHeadercmpl //deprecated
  856. pkg syscall (netbsd-386), func SetBpfImmediate //deprecated
  857. pkg syscall (netbsd-386), func SetBpfInterface //deprecated
  858. pkg syscall (netbsd-386), func SetBpfPromisc //deprecated
  859. pkg syscall (netbsd-386), func SetBpfTimeout //deprecated
  860. pkg syscall (netbsd-386), func StringSlicePtr //deprecated
  861. pkg syscall (netbsd-386), type InterfaceAddrMessage //deprecated
  862. pkg syscall (netbsd-386), type InterfaceAnnounceMessage //deprecated
  863. pkg syscall (netbsd-386), type InterfaceMessage //deprecated
  864. pkg syscall (netbsd-386), type RouteMessage //deprecated
  865. pkg syscall (netbsd-386), type RoutingMessage //deprecated
  866. pkg syscall (netbsd-386-cgo), func BpfBuflen //deprecated
  867. pkg syscall (netbsd-386-cgo), func BpfDatalink //deprecated
  868. pkg syscall (netbsd-386-cgo), func BpfHeadercmpl //deprecated
  869. pkg syscall (netbsd-386-cgo), func BpfInterface //deprecated
  870. pkg syscall (netbsd-386-cgo), func BpfJump //deprecated
  871. pkg syscall (netbsd-386-cgo), func BpfStats //deprecated
  872. pkg syscall (netbsd-386-cgo), func BpfStmt //deprecated
  873. pkg syscall (netbsd-386-cgo), func BpfTimeout //deprecated
  874. pkg syscall (netbsd-386-cgo), func CheckBpfVersion //deprecated
  875. pkg syscall (netbsd-386-cgo), func FlushBpf //deprecated
  876. pkg syscall (netbsd-386-cgo), func ParseRoutingMessage //deprecated
  877. pkg syscall (netbsd-386-cgo), func ParseRoutingSockaddr //deprecated
  878. pkg syscall (netbsd-386-cgo), func RouteRIB //deprecated
  879. pkg syscall (netbsd-386-cgo), func SetBpf //deprecated
  880. pkg syscall (netbsd-386-cgo), func SetBpfBuflen //deprecated
  881. pkg syscall (netbsd-386-cgo), func SetBpfDatalink //deprecated
  882. pkg syscall (netbsd-386-cgo), func SetBpfHeadercmpl //deprecated
  883. pkg syscall (netbsd-386-cgo), func SetBpfImmediate //deprecated
  884. pkg syscall (netbsd-386-cgo), func SetBpfInterface //deprecated
  885. pkg syscall (netbsd-386-cgo), func SetBpfPromisc //deprecated
  886. pkg syscall (netbsd-386-cgo), func SetBpfTimeout //deprecated
  887. pkg syscall (netbsd-386-cgo), func StringSlicePtr //deprecated
  888. pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage //deprecated
  889. pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage //deprecated
  890. pkg syscall (netbsd-386-cgo), type InterfaceMessage //deprecated
  891. pkg syscall (netbsd-386-cgo), type RouteMessage //deprecated
  892. pkg syscall (netbsd-386-cgo), type RoutingMessage //deprecated
  893. pkg syscall (netbsd-amd64), func BpfBuflen //deprecated
  894. pkg syscall (netbsd-amd64), func BpfDatalink //deprecated
  895. pkg syscall (netbsd-amd64), func BpfHeadercmpl //deprecated
  896. pkg syscall (netbsd-amd64), func BpfInterface //deprecated
  897. pkg syscall (netbsd-amd64), func BpfJump //deprecated
  898. pkg syscall (netbsd-amd64), func BpfStats //deprecated
  899. pkg syscall (netbsd-amd64), func BpfStmt //deprecated
  900. pkg syscall (netbsd-amd64), func BpfTimeout //deprecated
  901. pkg syscall (netbsd-amd64), func CheckBpfVersion //deprecated
  902. pkg syscall (netbsd-amd64), func FlushBpf //deprecated
  903. pkg syscall (netbsd-amd64), func ParseRoutingMessage //deprecated
  904. pkg syscall (netbsd-amd64), func ParseRoutingSockaddr //deprecated
  905. pkg syscall (netbsd-amd64), func RouteRIB //deprecated
  906. pkg syscall (netbsd-amd64), func SetBpf //deprecated
  907. pkg syscall (netbsd-amd64), func SetBpfBuflen //deprecated
  908. pkg syscall (netbsd-amd64), func SetBpfDatalink //deprecated
  909. pkg syscall (netbsd-amd64), func SetBpfHeadercmpl //deprecated
  910. pkg syscall (netbsd-amd64), func SetBpfImmediate //deprecated
  911. pkg syscall (netbsd-amd64), func SetBpfInterface //deprecated
  912. pkg syscall (netbsd-amd64), func SetBpfPromisc //deprecated
  913. pkg syscall (netbsd-amd64), func SetBpfTimeout //deprecated
  914. pkg syscall (netbsd-amd64), func StringSlicePtr //deprecated
  915. pkg syscall (netbsd-amd64), type InterfaceAddrMessage //deprecated
  916. pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage //deprecated
  917. pkg syscall (netbsd-amd64), type InterfaceMessage //deprecated
  918. pkg syscall (netbsd-amd64), type RouteMessage //deprecated
  919. pkg syscall (netbsd-amd64), type RoutingMessage //deprecated
  920. pkg syscall (netbsd-amd64-cgo), func BpfBuflen //deprecated
  921. pkg syscall (netbsd-amd64-cgo), func BpfDatalink //deprecated
  922. pkg syscall (netbsd-amd64-cgo), func BpfHeadercmpl //deprecated
  923. pkg syscall (netbsd-amd64-cgo), func BpfInterface //deprecated
  924. pkg syscall (netbsd-amd64-cgo), func BpfJump //deprecated
  925. pkg syscall (netbsd-amd64-cgo), func BpfStats //deprecated
  926. pkg syscall (netbsd-amd64-cgo), func BpfStmt //deprecated
  927. pkg syscall (netbsd-amd64-cgo), func BpfTimeout //deprecated
  928. pkg syscall (netbsd-amd64-cgo), func CheckBpfVersion //deprecated
  929. pkg syscall (netbsd-amd64-cgo), func FlushBpf //deprecated
  930. pkg syscall (netbsd-amd64-cgo), func ParseRoutingMessage //deprecated
  931. pkg syscall (netbsd-amd64-cgo), func ParseRoutingSockaddr //deprecated
  932. pkg syscall (netbsd-amd64-cgo), func RouteRIB //deprecated
  933. pkg syscall (netbsd-amd64-cgo), func SetBpf //deprecated
  934. pkg syscall (netbsd-amd64-cgo), func SetBpfBuflen //deprecated
  935. pkg syscall (netbsd-amd64-cgo), func SetBpfDatalink //deprecated
  936. pkg syscall (netbsd-amd64-cgo), func SetBpfHeadercmpl //deprecated
  937. pkg syscall (netbsd-amd64-cgo), func SetBpfImmediate //deprecated
  938. pkg syscall (netbsd-amd64-cgo), func SetBpfInterface //deprecated
  939. pkg syscall (netbsd-amd64-cgo), func SetBpfPromisc //deprecated
  940. pkg syscall (netbsd-amd64-cgo), func SetBpfTimeout //deprecated
  941. pkg syscall (netbsd-amd64-cgo), func StringSlicePtr //deprecated
  942. pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage //deprecated
  943. pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated
  944. pkg syscall (netbsd-amd64-cgo), type InterfaceMessage //deprecated
  945. pkg syscall (netbsd-amd64-cgo), type RouteMessage //deprecated
  946. pkg syscall (netbsd-amd64-cgo), type RoutingMessage //deprecated
  947. pkg syscall (netbsd-arm), func BpfBuflen //deprecated
  948. pkg syscall (netbsd-arm), func BpfDatalink //deprecated
  949. pkg syscall (netbsd-arm), func BpfHeadercmpl //deprecated
  950. pkg syscall (netbsd-arm), func BpfInterface //deprecated
  951. pkg syscall (netbsd-arm), func BpfJump //deprecated
  952. pkg syscall (netbsd-arm), func BpfStats //deprecated
  953. pkg syscall (netbsd-arm), func BpfStmt //deprecated
  954. pkg syscall (netbsd-arm), func BpfTimeout //deprecated
  955. pkg syscall (netbsd-arm), func CheckBpfVersion //deprecated
  956. pkg syscall (netbsd-arm), func FlushBpf //deprecated
  957. pkg syscall (netbsd-arm), func ParseRoutingMessage //deprecated
  958. pkg syscall (netbsd-arm), func ParseRoutingSockaddr //deprecated
  959. pkg syscall (netbsd-arm), func RouteRIB //deprecated
  960. pkg syscall (netbsd-arm), func SetBpf //deprecated
  961. pkg syscall (netbsd-arm), func SetBpfBuflen //deprecated
  962. pkg syscall (netbsd-arm), func SetBpfDatalink //deprecated
  963. pkg syscall (netbsd-arm), func SetBpfHeadercmpl //deprecated
  964. pkg syscall (netbsd-arm), func SetBpfImmediate //deprecated
  965. pkg syscall (netbsd-arm), func SetBpfInterface //deprecated
  966. pkg syscall (netbsd-arm), func SetBpfPromisc //deprecated
  967. pkg syscall (netbsd-arm), func SetBpfTimeout //deprecated
  968. pkg syscall (netbsd-arm), func StringSlicePtr //deprecated
  969. pkg syscall (netbsd-arm), type InterfaceAddrMessage //deprecated
  970. pkg syscall (netbsd-arm), type InterfaceAnnounceMessage //deprecated
  971. pkg syscall (netbsd-arm), type InterfaceMessage //deprecated
  972. pkg syscall (netbsd-arm), type RouteMessage //deprecated
  973. pkg syscall (netbsd-arm), type RoutingMessage //deprecated
  974. pkg syscall (netbsd-arm-cgo), func BpfBuflen //deprecated
  975. pkg syscall (netbsd-arm-cgo), func BpfDatalink //deprecated
  976. pkg syscall (netbsd-arm-cgo), func BpfHeadercmpl //deprecated
  977. pkg syscall (netbsd-arm-cgo), func BpfInterface //deprecated
  978. pkg syscall (netbsd-arm-cgo), func BpfJump //deprecated
  979. pkg syscall (netbsd-arm-cgo), func BpfStats //deprecated
  980. pkg syscall (netbsd-arm-cgo), func BpfStmt //deprecated
  981. pkg syscall (netbsd-arm-cgo), func BpfTimeout //deprecated
  982. pkg syscall (netbsd-arm-cgo), func CheckBpfVersion //deprecated
  983. pkg syscall (netbsd-arm-cgo), func FlushBpf //deprecated
  984. pkg syscall (netbsd-arm-cgo), func ParseRoutingMessage //deprecated
  985. pkg syscall (netbsd-arm-cgo), func ParseRoutingSockaddr //deprecated
  986. pkg syscall (netbsd-arm-cgo), func RouteRIB //deprecated
  987. pkg syscall (netbsd-arm-cgo), func SetBpf //deprecated
  988. pkg syscall (netbsd-arm-cgo), func SetBpfBuflen //deprecated
  989. pkg syscall (netbsd-arm-cgo), func SetBpfDatalink //deprecated
  990. pkg syscall (netbsd-arm-cgo), func SetBpfHeadercmpl //deprecated
  991. pkg syscall (netbsd-arm-cgo), func SetBpfImmediate //deprecated
  992. pkg syscall (netbsd-arm-cgo), func SetBpfInterface //deprecated
  993. pkg syscall (netbsd-arm-cgo), func SetBpfPromisc //deprecated
  994. pkg syscall (netbsd-arm-cgo), func SetBpfTimeout //deprecated
  995. pkg syscall (netbsd-arm-cgo), func StringSlicePtr //deprecated
  996. pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage //deprecated
  997. pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage //deprecated
  998. pkg syscall (netbsd-arm-cgo), type InterfaceMessage //deprecated
  999. pkg syscall (netbsd-arm-cgo), type RouteMessage //deprecated
  1000. pkg syscall (netbsd-arm-cgo), type RoutingMessage //deprecated
  1001. pkg syscall (netbsd-arm64), func BpfBuflen //deprecated
  1002. pkg syscall (netbsd-arm64), func BpfDatalink //deprecated
  1003. pkg syscall (netbsd-arm64), func BpfHeadercmpl //deprecated
  1004. pkg syscall (netbsd-arm64), func BpfInterface //deprecated
  1005. pkg syscall (netbsd-arm64), func BpfJump //deprecated
  1006. pkg syscall (netbsd-arm64), func BpfStats //deprecated
  1007. pkg syscall (netbsd-arm64), func BpfStmt //deprecated
  1008. pkg syscall (netbsd-arm64), func BpfTimeout //deprecated
  1009. pkg syscall (netbsd-arm64), func CheckBpfVersion //deprecated
  1010. pkg syscall (netbsd-arm64), func FlushBpf //deprecated
  1011. pkg syscall (netbsd-arm64), func ParseRoutingMessage //deprecated
  1012. pkg syscall (netbsd-arm64), func ParseRoutingSockaddr //deprecated
  1013. pkg syscall (netbsd-arm64), func RouteRIB //deprecated
  1014. pkg syscall (netbsd-arm64), func SetBpf //deprecated
  1015. pkg syscall (netbsd-arm64), func SetBpfBuflen //deprecated
  1016. pkg syscall (netbsd-arm64), func SetBpfDatalink //deprecated
  1017. pkg syscall (netbsd-arm64), func SetBpfHeadercmpl //deprecated
  1018. pkg syscall (netbsd-arm64), func SetBpfImmediate //deprecated
  1019. pkg syscall (netbsd-arm64), func SetBpfInterface //deprecated
  1020. pkg syscall (netbsd-arm64), func SetBpfPromisc //deprecated
  1021. pkg syscall (netbsd-arm64), func SetBpfTimeout //deprecated
  1022. pkg syscall (netbsd-arm64), func StringSlicePtr //deprecated
  1023. pkg syscall (netbsd-arm64), type InterfaceAddrMessage //deprecated
  1024. pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage //deprecated
  1025. pkg syscall (netbsd-arm64), type InterfaceMessage //deprecated
  1026. pkg syscall (netbsd-arm64), type RouteMessage //deprecated
  1027. pkg syscall (netbsd-arm64), type RoutingMessage //deprecated
  1028. pkg syscall (netbsd-arm64-cgo), func BpfBuflen //deprecated
  1029. pkg syscall (netbsd-arm64-cgo), func BpfDatalink //deprecated
  1030. pkg syscall (netbsd-arm64-cgo), func BpfHeadercmpl //deprecated
  1031. pkg syscall (netbsd-arm64-cgo), func BpfInterface //deprecated
  1032. pkg syscall (netbsd-arm64-cgo), func BpfJump //deprecated
  1033. pkg syscall (netbsd-arm64-cgo), func BpfStats //deprecated
  1034. pkg syscall (netbsd-arm64-cgo), func BpfStmt //deprecated
  1035. pkg syscall (netbsd-arm64-cgo), func BpfTimeout //deprecated
  1036. pkg syscall (netbsd-arm64-cgo), func CheckBpfVersion //deprecated
  1037. pkg syscall (netbsd-arm64-cgo), func FlushBpf //deprecated
  1038. pkg syscall (netbsd-arm64-cgo), func ParseRoutingMessage //deprecated
  1039. pkg syscall (netbsd-arm64-cgo), func ParseRoutingSockaddr //deprecated
  1040. pkg syscall (netbsd-arm64-cgo), func RouteRIB //deprecated
  1041. pkg syscall (netbsd-arm64-cgo), func SetBpf //deprecated
  1042. pkg syscall (netbsd-arm64-cgo), func SetBpfBuflen //deprecated
  1043. pkg syscall (netbsd-arm64-cgo), func SetBpfDatalink //deprecated
  1044. pkg syscall (netbsd-arm64-cgo), func SetBpfHeadercmpl //deprecated
  1045. pkg syscall (netbsd-arm64-cgo), func SetBpfImmediate //deprecated
  1046. pkg syscall (netbsd-arm64-cgo), func SetBpfInterface //deprecated
  1047. pkg syscall (netbsd-arm64-cgo), func SetBpfPromisc //deprecated
  1048. pkg syscall (netbsd-arm64-cgo), func SetBpfTimeout //deprecated
  1049. pkg syscall (netbsd-arm64-cgo), func StringSlicePtr //deprecated
  1050. pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage //deprecated
  1051. pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage //deprecated
  1052. pkg syscall (netbsd-arm64-cgo), type InterfaceMessage //deprecated
  1053. pkg syscall (netbsd-arm64-cgo), type RouteMessage //deprecated
  1054. pkg syscall (netbsd-arm64-cgo), type RoutingMessage //deprecated
  1055. pkg syscall (openbsd-386), func BpfBuflen //deprecated
  1056. pkg syscall (openbsd-386), func BpfDatalink //deprecated
  1057. pkg syscall (openbsd-386), func BpfHeadercmpl //deprecated
  1058. pkg syscall (openbsd-386), func BpfInterface //deprecated
  1059. pkg syscall (openbsd-386), func BpfJump //deprecated
  1060. pkg syscall (openbsd-386), func BpfStats //deprecated
  1061. pkg syscall (openbsd-386), func BpfStmt //deprecated
  1062. pkg syscall (openbsd-386), func BpfTimeout //deprecated
  1063. pkg syscall (openbsd-386), func CheckBpfVersion //deprecated
  1064. pkg syscall (openbsd-386), func FlushBpf //deprecated
  1065. pkg syscall (openbsd-386), func ParseRoutingMessage //deprecated
  1066. pkg syscall (openbsd-386), func ParseRoutingSockaddr //deprecated
  1067. pkg syscall (openbsd-386), func RouteRIB //deprecated
  1068. pkg syscall (openbsd-386), func SetBpf //deprecated
  1069. pkg syscall (openbsd-386), func SetBpfBuflen //deprecated
  1070. pkg syscall (openbsd-386), func SetBpfDatalink //deprecated
  1071. pkg syscall (openbsd-386), func SetBpfHeadercmpl //deprecated
  1072. pkg syscall (openbsd-386), func SetBpfImmediate //deprecated
  1073. pkg syscall (openbsd-386), func SetBpfInterface //deprecated
  1074. pkg syscall (openbsd-386), func SetBpfPromisc //deprecated
  1075. pkg syscall (openbsd-386), func SetBpfTimeout //deprecated
  1076. pkg syscall (openbsd-386), func StringSlicePtr //deprecated
  1077. pkg syscall (openbsd-386), type InterfaceAddrMessage //deprecated
  1078. pkg syscall (openbsd-386), type InterfaceAnnounceMessage //deprecated
  1079. pkg syscall (openbsd-386), type InterfaceMessage //deprecated
  1080. pkg syscall (openbsd-386), type RouteMessage //deprecated
  1081. pkg syscall (openbsd-386), type RoutingMessage //deprecated
  1082. pkg syscall (openbsd-386-cgo), func BpfBuflen //deprecated
  1083. pkg syscall (openbsd-386-cgo), func BpfDatalink //deprecated
  1084. pkg syscall (openbsd-386-cgo), func BpfHeadercmpl //deprecated
  1085. pkg syscall (openbsd-386-cgo), func BpfInterface //deprecated
  1086. pkg syscall (openbsd-386-cgo), func BpfJump //deprecated
  1087. pkg syscall (openbsd-386-cgo), func BpfStats //deprecated
  1088. pkg syscall (openbsd-386-cgo), func BpfStmt //deprecated
  1089. pkg syscall (openbsd-386-cgo), func BpfTimeout //deprecated
  1090. pkg syscall (openbsd-386-cgo), func CheckBpfVersion //deprecated
  1091. pkg syscall (openbsd-386-cgo), func FlushBpf //deprecated
  1092. pkg syscall (openbsd-386-cgo), func ParseRoutingMessage //deprecated
  1093. pkg syscall (openbsd-386-cgo), func ParseRoutingSockaddr //deprecated
  1094. pkg syscall (openbsd-386-cgo), func RouteRIB //deprecated
  1095. pkg syscall (openbsd-386-cgo), func SetBpf //deprecated
  1096. pkg syscall (openbsd-386-cgo), func SetBpfBuflen //deprecated
  1097. pkg syscall (openbsd-386-cgo), func SetBpfDatalink //deprecated
  1098. pkg syscall (openbsd-386-cgo), func SetBpfHeadercmpl //deprecated
  1099. pkg syscall (openbsd-386-cgo), func SetBpfImmediate //deprecated
  1100. pkg syscall (openbsd-386-cgo), func SetBpfInterface //deprecated
  1101. pkg syscall (openbsd-386-cgo), func SetBpfPromisc //deprecated
  1102. pkg syscall (openbsd-386-cgo), func SetBpfTimeout //deprecated
  1103. pkg syscall (openbsd-386-cgo), func StringSlicePtr //deprecated
  1104. pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage //deprecated
  1105. pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage //deprecated
  1106. pkg syscall (openbsd-386-cgo), type InterfaceMessage //deprecated
  1107. pkg syscall (openbsd-386-cgo), type RouteMessage //deprecated
  1108. pkg syscall (openbsd-386-cgo), type RoutingMessage //deprecated
  1109. pkg syscall (openbsd-amd64), func BpfBuflen //deprecated
  1110. pkg syscall (openbsd-amd64), func BpfDatalink //deprecated
  1111. pkg syscall (openbsd-amd64), func BpfHeadercmpl //deprecated
  1112. pkg syscall (openbsd-amd64), func BpfInterface //deprecated
  1113. pkg syscall (openbsd-amd64), func BpfJump //deprecated
  1114. pkg syscall (openbsd-amd64), func BpfStats //deprecated
  1115. pkg syscall (openbsd-amd64), func BpfStmt //deprecated
  1116. pkg syscall (openbsd-amd64), func BpfTimeout //deprecated
  1117. pkg syscall (openbsd-amd64), func CheckBpfVersion //deprecated
  1118. pkg syscall (openbsd-amd64), func FlushBpf //deprecated
  1119. pkg syscall (openbsd-amd64), func ParseRoutingMessage //deprecated
  1120. pkg syscall (openbsd-amd64), func ParseRoutingSockaddr //deprecated
  1121. pkg syscall (openbsd-amd64), func RouteRIB //deprecated
  1122. pkg syscall (openbsd-amd64), func SetBpf //deprecated
  1123. pkg syscall (openbsd-amd64), func SetBpfBuflen //deprecated
  1124. pkg syscall (openbsd-amd64), func SetBpfDatalink //deprecated
  1125. pkg syscall (openbsd-amd64), func SetBpfHeadercmpl //deprecated
  1126. pkg syscall (openbsd-amd64), func SetBpfImmediate //deprecated
  1127. pkg syscall (openbsd-amd64), func SetBpfInterface //deprecated
  1128. pkg syscall (openbsd-amd64), func SetBpfPromisc //deprecated
  1129. pkg syscall (openbsd-amd64), func SetBpfTimeout //deprecated
  1130. pkg syscall (openbsd-amd64), func StringSlicePtr //deprecated
  1131. pkg syscall (openbsd-amd64), type InterfaceAddrMessage //deprecated
  1132. pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage //deprecated
  1133. pkg syscall (openbsd-amd64), type InterfaceMessage //deprecated
  1134. pkg syscall (openbsd-amd64), type RouteMessage //deprecated
  1135. pkg syscall (openbsd-amd64), type RoutingMessage //deprecated
  1136. pkg syscall (openbsd-amd64-cgo), func BpfBuflen //deprecated
  1137. pkg syscall (openbsd-amd64-cgo), func BpfDatalink //deprecated
  1138. pkg syscall (openbsd-amd64-cgo), func BpfHeadercmpl //deprecated
  1139. pkg syscall (openbsd-amd64-cgo), func BpfInterface //deprecated
  1140. pkg syscall (openbsd-amd64-cgo), func BpfJump //deprecated
  1141. pkg syscall (openbsd-amd64-cgo), func BpfStats //deprecated
  1142. pkg syscall (openbsd-amd64-cgo), func BpfStmt //deprecated
  1143. pkg syscall (openbsd-amd64-cgo), func BpfTimeout //deprecated
  1144. pkg syscall (openbsd-amd64-cgo), func CheckBpfVersion //deprecated
  1145. pkg syscall (openbsd-amd64-cgo), func FlushBpf //deprecated
  1146. pkg syscall (openbsd-amd64-cgo), func ParseRoutingMessage //deprecated
  1147. pkg syscall (openbsd-amd64-cgo), func ParseRoutingSockaddr //deprecated
  1148. pkg syscall (openbsd-amd64-cgo), func RouteRIB //deprecated
  1149. pkg syscall (openbsd-amd64-cgo), func SetBpf //deprecated
  1150. pkg syscall (openbsd-amd64-cgo), func SetBpfBuflen //deprecated
  1151. pkg syscall (openbsd-amd64-cgo), func SetBpfDatalink //deprecated
  1152. pkg syscall (openbsd-amd64-cgo), func SetBpfHeadercmpl //deprecated
  1153. pkg syscall (openbsd-amd64-cgo), func SetBpfImmediate //deprecated
  1154. pkg syscall (openbsd-amd64-cgo), func SetBpfInterface //deprecated
  1155. pkg syscall (openbsd-amd64-cgo), func SetBpfPromisc //deprecated
  1156. pkg syscall (openbsd-amd64-cgo), func SetBpfTimeout //deprecated
  1157. pkg syscall (openbsd-amd64-cgo), func StringSlicePtr //deprecated
  1158. pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage //deprecated
  1159. pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated
  1160. pkg syscall (openbsd-amd64-cgo), type InterfaceMessage //deprecated
  1161. pkg syscall (openbsd-amd64-cgo), type RouteMessage //deprecated
  1162. pkg syscall (openbsd-amd64-cgo), type RoutingMessage //deprecated
  1163. pkg syscall (windows-386), func FormatMessage //deprecated
  1164. pkg syscall (windows-386), func StringToUTF16 //deprecated
  1165. pkg syscall (windows-386), func StringToUTF16Ptr //deprecated
  1166. pkg syscall (windows-amd64), func FormatMessage //deprecated
  1167. pkg syscall (windows-amd64), func StringToUTF16 //deprecated
  1168. pkg syscall (windows-amd64), func StringToUTF16Ptr //deprecated
  1169. pkg syscall, func StringBytePtr //deprecated
  1170. pkg syscall, func StringByteSlice //deprecated
  1171. # darwin arm64 port
  1172. pkg log/syslog (darwin-arm64), const LOG_ALERT = 1
  1173. pkg log/syslog (darwin-arm64), const LOG_ALERT Priority
  1174. pkg log/syslog (darwin-arm64), const LOG_AUTH = 32
  1175. pkg log/syslog (darwin-arm64), const LOG_AUTH Priority
  1176. pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV = 80
  1177. pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV Priority
  1178. pkg log/syslog (darwin-arm64), const LOG_CRIT = 2
  1179. pkg log/syslog (darwin-arm64), const LOG_CRIT Priority
  1180. pkg log/syslog (darwin-arm64), const LOG_CRON = 72
  1181. pkg log/syslog (darwin-arm64), const LOG_CRON Priority
  1182. pkg log/syslog (darwin-arm64), const LOG_DAEMON = 24
  1183. pkg log/syslog (darwin-arm64), const LOG_DAEMON Priority
  1184. pkg log/syslog (darwin-arm64), const LOG_DEBUG = 7
  1185. pkg log/syslog (darwin-arm64), const LOG_DEBUG Priority
  1186. pkg log/syslog (darwin-arm64), const LOG_EMERG = 0
  1187. pkg log/syslog (darwin-arm64), const LOG_EMERG Priority
  1188. pkg log/syslog (darwin-arm64), const LOG_ERR = 3
  1189. pkg log/syslog (darwin-arm64), const LOG_ERR Priority
  1190. pkg log/syslog (darwin-arm64), const LOG_FTP = 88
  1191. pkg log/syslog (darwin-arm64), const LOG_FTP Priority
  1192. pkg log/syslog (darwin-arm64), const LOG_INFO = 6
  1193. pkg log/syslog (darwin-arm64), const LOG_INFO Priority
  1194. pkg log/syslog (darwin-arm64), const LOG_KERN = 0
  1195. pkg log/syslog (darwin-arm64), const LOG_KERN Priority
  1196. pkg log/syslog (darwin-arm64), const LOG_LOCAL0 = 128
  1197. pkg log/syslog (darwin-arm64), const LOG_LOCAL0 Priority
  1198. pkg log/syslog (darwin-arm64), const LOG_LOCAL1 = 136
  1199. pkg log/syslog (darwin-arm64), const LOG_LOCAL1 Priority
  1200. pkg log/syslog (darwin-arm64), const LOG_LOCAL2 = 144
  1201. pkg log/syslog (darwin-arm64), const LOG_LOCAL2 Priority
  1202. pkg log/syslog (darwin-arm64), const LOG_LOCAL3 = 152
  1203. pkg log/syslog (darwin-arm64), const LOG_LOCAL3 Priority
  1204. pkg log/syslog (darwin-arm64), const LOG_LOCAL4 = 160
  1205. pkg log/syslog (darwin-arm64), const LOG_LOCAL4 Priority
  1206. pkg log/syslog (darwin-arm64), const LOG_LOCAL5 = 168
  1207. pkg log/syslog (darwin-arm64), const LOG_LOCAL5 Priority
  1208. pkg log/syslog (darwin-arm64), const LOG_LOCAL6 = 176
  1209. pkg log/syslog (darwin-arm64), const LOG_LOCAL6 Priority
  1210. pkg log/syslog (darwin-arm64), const LOG_LOCAL7 = 184
  1211. pkg log/syslog (darwin-arm64), const LOG_LOCAL7 Priority
  1212. pkg log/syslog (darwin-arm64), const LOG_LPR = 48
  1213. pkg log/syslog (darwin-arm64), const LOG_LPR Priority
  1214. pkg log/syslog (darwin-arm64), const LOG_MAIL = 16
  1215. pkg log/syslog (darwin-arm64), const LOG_MAIL Priority
  1216. pkg log/syslog (darwin-arm64), const LOG_NEWS = 56
  1217. pkg log/syslog (darwin-arm64), const LOG_NEWS Priority
  1218. pkg log/syslog (darwin-arm64), const LOG_NOTICE = 5
  1219. pkg log/syslog (darwin-arm64), const LOG_NOTICE Priority
  1220. pkg log/syslog (darwin-arm64), const LOG_SYSLOG = 40
  1221. pkg log/syslog (darwin-arm64), const LOG_SYSLOG Priority
  1222. pkg log/syslog (darwin-arm64), const LOG_USER = 8
  1223. pkg log/syslog (darwin-arm64), const LOG_USER Priority
  1224. pkg log/syslog (darwin-arm64), const LOG_UUCP = 64
  1225. pkg log/syslog (darwin-arm64), const LOG_UUCP Priority
  1226. pkg log/syslog (darwin-arm64), const LOG_WARNING = 4
  1227. pkg log/syslog (darwin-arm64), const LOG_WARNING Priority
  1228. pkg log/syslog (darwin-arm64), func Dial(string, string, Priority, string) (*Writer, error)
  1229. pkg log/syslog (darwin-arm64), func New(Priority, string) (*Writer, error)
  1230. pkg log/syslog (darwin-arm64), func NewLogger(Priority, int) (*log.Logger, error)
  1231. pkg log/syslog (darwin-arm64), method (*Writer) Alert(string) error
  1232. pkg log/syslog (darwin-arm64), method (*Writer) Close() error
  1233. pkg log/syslog (darwin-arm64), method (*Writer) Crit(string) error
  1234. pkg log/syslog (darwin-arm64), method (*Writer) Debug(string) error
  1235. pkg log/syslog (darwin-arm64), method (*Writer) Emerg(string) error
  1236. pkg log/syslog (darwin-arm64), method (*Writer) Err(string) error
  1237. pkg log/syslog (darwin-arm64), method (*Writer) Info(string) error
  1238. pkg log/syslog (darwin-arm64), method (*Writer) Notice(string) error
  1239. pkg log/syslog (darwin-arm64), method (*Writer) Warning(string) error
  1240. pkg log/syslog (darwin-arm64), method (*Writer) Write([]uint8) (int, error)
  1241. pkg log/syslog (darwin-arm64), type Priority int
  1242. pkg log/syslog (darwin-arm64), type Writer struct
  1243. pkg log/syslog (darwin-arm64-cgo), const LOG_ALERT = 1
  1244. pkg log/syslog (darwin-arm64-cgo), const LOG_ALERT Priority
  1245. pkg log/syslog (darwin-arm64-cgo), const LOG_AUTH = 32
  1246. pkg log/syslog (darwin-arm64-cgo), const LOG_AUTH Priority
  1247. pkg log/syslog (darwin-arm64-cgo), const LOG_AUTHPRIV = 80
  1248. pkg log/syslog (darwin-arm64-cgo), const LOG_AUTHPRIV Priority
  1249. pkg log/syslog (darwin-arm64-cgo), const LOG_CRIT = 2
  1250. pkg log/syslog (darwin-arm64-cgo), const LOG_CRIT Priority
  1251. pkg log/syslog (darwin-arm64-cgo), const LOG_CRON = 72
  1252. pkg log/syslog (darwin-arm64-cgo), const LOG_CRON Priority
  1253. pkg log/syslog (darwin-arm64-cgo), const LOG_DAEMON = 24
  1254. pkg log/syslog (darwin-arm64-cgo), const LOG_DAEMON Priority
  1255. pkg log/syslog (darwin-arm64-cgo), const LOG_DEBUG = 7
  1256. pkg log/syslog (darwin-arm64-cgo), const LOG_DEBUG Priority
  1257. pkg log/syslog (darwin-arm64-cgo), const LOG_EMERG = 0
  1258. pkg log/syslog (darwin-arm64-cgo), const LOG_EMERG Priority
  1259. pkg log/syslog (darwin-arm64-cgo), const LOG_ERR = 3
  1260. pkg log/syslog (darwin-arm64-cgo), const LOG_ERR Priority
  1261. pkg log/syslog (darwin-arm64-cgo), const LOG_FTP = 88
  1262. pkg log/syslog (darwin-arm64-cgo), const LOG_FTP Priority
  1263. pkg log/syslog (darwin-arm64-cgo), const LOG_INFO = 6
  1264. pkg log/syslog (darwin-arm64-cgo), const LOG_INFO Priority
  1265. pkg log/syslog (darwin-arm64-cgo), const LOG_KERN = 0
  1266. pkg log/syslog (darwin-arm64-cgo), const LOG_KERN Priority
  1267. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL0 = 128
  1268. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL0 Priority
  1269. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL1 = 136
  1270. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL1 Priority
  1271. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL2 = 144
  1272. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL2 Priority
  1273. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL3 = 152
  1274. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL3 Priority
  1275. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL4 = 160
  1276. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL4 Priority
  1277. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL5 = 168
  1278. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL5 Priority
  1279. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL6 = 176
  1280. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL6 Priority
  1281. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL7 = 184
  1282. pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL7 Priority
  1283. pkg log/syslog (darwin-arm64-cgo), const LOG_LPR = 48
  1284. pkg log/syslog (darwin-arm64-cgo), const LOG_LPR Priority
  1285. pkg log/syslog (darwin-arm64-cgo), const LOG_MAIL = 16
  1286. pkg log/syslog (darwin-arm64-cgo), const LOG_MAIL Priority
  1287. pkg log/syslog (darwin-arm64-cgo), const LOG_NEWS = 56
  1288. pkg log/syslog (darwin-arm64-cgo), const LOG_NEWS Priority
  1289. pkg log/syslog (darwin-arm64-cgo), const LOG_NOTICE = 5
  1290. pkg log/syslog (darwin-arm64-cgo), const LOG_NOTICE Priority
  1291. pkg log/syslog (darwin-arm64-cgo), const LOG_SYSLOG = 40
  1292. pkg log/syslog (darwin-arm64-cgo), const LOG_SYSLOG Priority
  1293. pkg log/syslog (darwin-arm64-cgo), const LOG_USER = 8
  1294. pkg log/syslog (darwin-arm64-cgo), const LOG_USER Priority
  1295. pkg log/syslog (darwin-arm64-cgo), const LOG_UUCP = 64
  1296. pkg log/syslog (darwin-arm64-cgo), const LOG_UUCP Priority
  1297. pkg log/syslog (darwin-arm64-cgo), const LOG_WARNING = 4
  1298. pkg log/syslog (darwin-arm64-cgo), const LOG_WARNING Priority
  1299. pkg log/syslog (darwin-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  1300. pkg log/syslog (darwin-arm64-cgo), func New(Priority, string) (*Writer, error)
  1301. pkg log/syslog (darwin-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  1302. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Alert(string) error
  1303. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Close() error
  1304. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Crit(string) error
  1305. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Debug(string) error
  1306. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Emerg(string) error
  1307. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Err(string) error
  1308. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Info(string) error
  1309. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Notice(string) error
  1310. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Warning(string) error
  1311. pkg log/syslog (darwin-arm64-cgo), method (*Writer) Write([]uint8) (int, error)
  1312. pkg log/syslog (darwin-arm64-cgo), type Priority int
  1313. pkg log/syslog (darwin-arm64-cgo), type Writer struct
  1314. pkg math/bits (darwin-arm64), const UintSize = 64
  1315. pkg math/bits (darwin-arm64-cgo), const UintSize = 64
  1316. pkg os (darwin-arm64), const DevNull = "/dev/null"
  1317. pkg os (darwin-arm64), const O_APPEND = 8
  1318. pkg os (darwin-arm64), const O_CREATE = 512
  1319. pkg os (darwin-arm64), const O_EXCL = 2048
  1320. pkg os (darwin-arm64), const O_SYNC = 128
  1321. pkg os (darwin-arm64), const O_TRUNC = 1024
  1322. pkg os (darwin-arm64), const PathListSeparator = 58
  1323. pkg os (darwin-arm64), const PathSeparator = 47
  1324. pkg os (darwin-arm64-cgo), const DevNull = "/dev/null"
  1325. pkg os (darwin-arm64-cgo), const O_APPEND = 8
  1326. pkg os (darwin-arm64-cgo), const O_CREATE = 512
  1327. pkg os (darwin-arm64-cgo), const O_EXCL = 2048
  1328. pkg os (darwin-arm64-cgo), const O_SYNC = 128
  1329. pkg os (darwin-arm64-cgo), const O_TRUNC = 1024
  1330. pkg os (darwin-arm64-cgo), const PathListSeparator = 58
  1331. pkg os (darwin-arm64-cgo), const PathSeparator = 47
  1332. pkg path/filepath (darwin-arm64), const ListSeparator = 58
  1333. pkg path/filepath (darwin-arm64), const Separator = 47
  1334. pkg path/filepath (darwin-arm64-cgo), const ListSeparator = 58
  1335. pkg path/filepath (darwin-arm64-cgo), const Separator = 47
  1336. pkg runtime (darwin-arm64), const GOARCH = "arm64"
  1337. pkg runtime (darwin-arm64), const GOOS = "darwin"
  1338. pkg runtime (darwin-arm64-cgo), const GOARCH = "arm64"
  1339. pkg runtime (darwin-arm64-cgo), const GOOS = "darwin"
  1340. pkg strconv (darwin-arm64), const IntSize = 64
  1341. pkg strconv (darwin-arm64-cgo), const IntSize = 64
  1342. pkg syscall (darwin-arm64), const AF_APPLETALK = 16
  1343. pkg syscall (darwin-arm64), const AF_APPLETALK ideal-int
  1344. pkg syscall (darwin-arm64), const AF_CCITT = 10
  1345. pkg syscall (darwin-arm64), const AF_CCITT ideal-int
  1346. pkg syscall (darwin-arm64), const AF_CHAOS = 5
  1347. pkg syscall (darwin-arm64), const AF_CHAOS ideal-int
  1348. pkg syscall (darwin-arm64), const AF_CNT = 21
  1349. pkg syscall (darwin-arm64), const AF_CNT ideal-int
  1350. pkg syscall (darwin-arm64), const AF_COIP = 20
  1351. pkg syscall (darwin-arm64), const AF_COIP ideal-int
  1352. pkg syscall (darwin-arm64), const AF_DATAKIT = 9
  1353. pkg syscall (darwin-arm64), const AF_DATAKIT ideal-int
  1354. pkg syscall (darwin-arm64), const AF_DECnet = 12
  1355. pkg syscall (darwin-arm64), const AF_DECnet ideal-int
  1356. pkg syscall (darwin-arm64), const AF_DLI = 13
  1357. pkg syscall (darwin-arm64), const AF_DLI ideal-int
  1358. pkg syscall (darwin-arm64), const AF_E164 = 28
  1359. pkg syscall (darwin-arm64), const AF_E164 ideal-int
  1360. pkg syscall (darwin-arm64), const AF_ECMA = 8
  1361. pkg syscall (darwin-arm64), const AF_ECMA ideal-int
  1362. pkg syscall (darwin-arm64), const AF_HYLINK = 15
  1363. pkg syscall (darwin-arm64), const AF_HYLINK ideal-int
  1364. pkg syscall (darwin-arm64), const AF_IEEE80211 = 37
  1365. pkg syscall (darwin-arm64), const AF_IEEE80211 ideal-int
  1366. pkg syscall (darwin-arm64), const AF_IMPLINK = 3
  1367. pkg syscall (darwin-arm64), const AF_IMPLINK ideal-int
  1368. pkg syscall (darwin-arm64), const AF_INET6 = 30
  1369. pkg syscall (darwin-arm64), const AF_IPX = 23
  1370. pkg syscall (darwin-arm64), const AF_IPX ideal-int
  1371. pkg syscall (darwin-arm64), const AF_ISDN = 28
  1372. pkg syscall (darwin-arm64), const AF_ISDN ideal-int
  1373. pkg syscall (darwin-arm64), const AF_ISO = 7
  1374. pkg syscall (darwin-arm64), const AF_ISO ideal-int
  1375. pkg syscall (darwin-arm64), const AF_LAT = 14
  1376. pkg syscall (darwin-arm64), const AF_LAT ideal-int
  1377. pkg syscall (darwin-arm64), const AF_LINK = 18
  1378. pkg syscall (darwin-arm64), const AF_LINK ideal-int
  1379. pkg syscall (darwin-arm64), const AF_LOCAL = 1
  1380. pkg syscall (darwin-arm64), const AF_LOCAL ideal-int
  1381. pkg syscall (darwin-arm64), const AF_MAX = 40
  1382. pkg syscall (darwin-arm64), const AF_MAX ideal-int
  1383. pkg syscall (darwin-arm64), const AF_NATM = 31
  1384. pkg syscall (darwin-arm64), const AF_NATM ideal-int
  1385. pkg syscall (darwin-arm64), const AF_NDRV = 27
  1386. pkg syscall (darwin-arm64), const AF_NDRV ideal-int
  1387. pkg syscall (darwin-arm64), const AF_NETBIOS = 33
  1388. pkg syscall (darwin-arm64), const AF_NETBIOS ideal-int
  1389. pkg syscall (darwin-arm64), const AF_NS = 6
  1390. pkg syscall (darwin-arm64), const AF_NS ideal-int
  1391. pkg syscall (darwin-arm64), const AF_OSI = 7
  1392. pkg syscall (darwin-arm64), const AF_OSI ideal-int
  1393. pkg syscall (darwin-arm64), const AF_PPP = 34
  1394. pkg syscall (darwin-arm64), const AF_PPP ideal-int
  1395. pkg syscall (darwin-arm64), const AF_PUP = 4
  1396. pkg syscall (darwin-arm64), const AF_PUP ideal-int
  1397. pkg syscall (darwin-arm64), const AF_RESERVED_36 = 36
  1398. pkg syscall (darwin-arm64), const AF_RESERVED_36 ideal-int
  1399. pkg syscall (darwin-arm64), const AF_ROUTE = 17
  1400. pkg syscall (darwin-arm64), const AF_ROUTE ideal-int
  1401. pkg syscall (darwin-arm64), const AF_SIP = 24
  1402. pkg syscall (darwin-arm64), const AF_SIP ideal-int
  1403. pkg syscall (darwin-arm64), const AF_SNA = 11
  1404. pkg syscall (darwin-arm64), const AF_SNA ideal-int
  1405. pkg syscall (darwin-arm64), const AF_SYSTEM = 32
  1406. pkg syscall (darwin-arm64), const AF_SYSTEM ideal-int
  1407. pkg syscall (darwin-arm64), const AF_UTUN = 38
  1408. pkg syscall (darwin-arm64), const AF_UTUN ideal-int
  1409. pkg syscall (darwin-arm64), const B0 = 0
  1410. pkg syscall (darwin-arm64), const B0 ideal-int
  1411. pkg syscall (darwin-arm64), const B110 = 110
  1412. pkg syscall (darwin-arm64), const B110 ideal-int
  1413. pkg syscall (darwin-arm64), const B115200 = 115200
  1414. pkg syscall (darwin-arm64), const B115200 ideal-int
  1415. pkg syscall (darwin-arm64), const B1200 = 1200
  1416. pkg syscall (darwin-arm64), const B1200 ideal-int
  1417. pkg syscall (darwin-arm64), const B134 = 134
  1418. pkg syscall (darwin-arm64), const B134 ideal-int
  1419. pkg syscall (darwin-arm64), const B14400 = 14400
  1420. pkg syscall (darwin-arm64), const B14400 ideal-int
  1421. pkg syscall (darwin-arm64), const B150 = 150
  1422. pkg syscall (darwin-arm64), const B150 ideal-int
  1423. pkg syscall (darwin-arm64), const B1800 = 1800
  1424. pkg syscall (darwin-arm64), const B1800 ideal-int
  1425. pkg syscall (darwin-arm64), const B19200 = 19200
  1426. pkg syscall (darwin-arm64), const B19200 ideal-int
  1427. pkg syscall (darwin-arm64), const B200 = 200
  1428. pkg syscall (darwin-arm64), const B200 ideal-int
  1429. pkg syscall (darwin-arm64), const B230400 = 230400
  1430. pkg syscall (darwin-arm64), const B230400 ideal-int
  1431. pkg syscall (darwin-arm64), const B2400 = 2400
  1432. pkg syscall (darwin-arm64), const B2400 ideal-int
  1433. pkg syscall (darwin-arm64), const B28800 = 28800
  1434. pkg syscall (darwin-arm64), const B28800 ideal-int
  1435. pkg syscall (darwin-arm64), const B300 = 300
  1436. pkg syscall (darwin-arm64), const B300 ideal-int
  1437. pkg syscall (darwin-arm64), const B38400 = 38400
  1438. pkg syscall (darwin-arm64), const B38400 ideal-int
  1439. pkg syscall (darwin-arm64), const B4800 = 4800
  1440. pkg syscall (darwin-arm64), const B4800 ideal-int
  1441. pkg syscall (darwin-arm64), const B50 = 50
  1442. pkg syscall (darwin-arm64), const B50 ideal-int
  1443. pkg syscall (darwin-arm64), const B57600 = 57600
  1444. pkg syscall (darwin-arm64), const B57600 ideal-int
  1445. pkg syscall (darwin-arm64), const B600 = 600
  1446. pkg syscall (darwin-arm64), const B600 ideal-int
  1447. pkg syscall (darwin-arm64), const B7200 = 7200
  1448. pkg syscall (darwin-arm64), const B7200 ideal-int
  1449. pkg syscall (darwin-arm64), const B75 = 75
  1450. pkg syscall (darwin-arm64), const B75 ideal-int
  1451. pkg syscall (darwin-arm64), const B76800 = 76800
  1452. pkg syscall (darwin-arm64), const B76800 ideal-int
  1453. pkg syscall (darwin-arm64), const B9600 = 9600
  1454. pkg syscall (darwin-arm64), const B9600 ideal-int
  1455. pkg syscall (darwin-arm64), const BIOCFLUSH = 536887912
  1456. pkg syscall (darwin-arm64), const BIOCFLUSH ideal-int
  1457. pkg syscall (darwin-arm64), const BIOCGBLEN = 1074020966
  1458. pkg syscall (darwin-arm64), const BIOCGBLEN ideal-int
  1459. pkg syscall (darwin-arm64), const BIOCGDLT = 1074020970
  1460. pkg syscall (darwin-arm64), const BIOCGDLT ideal-int
  1461. pkg syscall (darwin-arm64), const BIOCGDLTLIST = 3222028921
  1462. pkg syscall (darwin-arm64), const BIOCGDLTLIST ideal-int
  1463. pkg syscall (darwin-arm64), const BIOCGETIF = 1075855979
  1464. pkg syscall (darwin-arm64), const BIOCGETIF ideal-int
  1465. pkg syscall (darwin-arm64), const BIOCGHDRCMPLT = 1074020980
  1466. pkg syscall (darwin-arm64), const BIOCGHDRCMPLT ideal-int
  1467. pkg syscall (darwin-arm64), const BIOCGRSIG = 1074020978
  1468. pkg syscall (darwin-arm64), const BIOCGRSIG ideal-int
  1469. pkg syscall (darwin-arm64), const BIOCGRTIMEOUT = 1074807406
  1470. pkg syscall (darwin-arm64), const BIOCGRTIMEOUT ideal-int
  1471. pkg syscall (darwin-arm64), const BIOCGSEESENT = 1074020982
  1472. pkg syscall (darwin-arm64), const BIOCGSEESENT ideal-int
  1473. pkg syscall (darwin-arm64), const BIOCGSTATS = 1074283119
  1474. pkg syscall (darwin-arm64), const BIOCGSTATS ideal-int
  1475. pkg syscall (darwin-arm64), const BIOCIMMEDIATE = 2147762800
  1476. pkg syscall (darwin-arm64), const BIOCIMMEDIATE ideal-int
  1477. pkg syscall (darwin-arm64), const BIOCPROMISC = 536887913
  1478. pkg syscall (darwin-arm64), const BIOCPROMISC ideal-int
  1479. pkg syscall (darwin-arm64), const BIOCSBLEN = 3221504614
  1480. pkg syscall (darwin-arm64), const BIOCSBLEN ideal-int
  1481. pkg syscall (darwin-arm64), const BIOCSDLT = 2147762808
  1482. pkg syscall (darwin-arm64), const BIOCSDLT ideal-int
  1483. pkg syscall (darwin-arm64), const BIOCSETF = 2148549223
  1484. pkg syscall (darwin-arm64), const BIOCSETF ideal-int
  1485. pkg syscall (darwin-arm64), const BIOCSETIF = 2149597804
  1486. pkg syscall (darwin-arm64), const BIOCSETIF ideal-int
  1487. pkg syscall (darwin-arm64), const BIOCSHDRCMPLT = 2147762805
  1488. pkg syscall (darwin-arm64), const BIOCSHDRCMPLT ideal-int
  1489. pkg syscall (darwin-arm64), const BIOCSRSIG = 2147762803
  1490. pkg syscall (darwin-arm64), const BIOCSRSIG ideal-int
  1491. pkg syscall (darwin-arm64), const BIOCSRTIMEOUT = 2148549229
  1492. pkg syscall (darwin-arm64), const BIOCSRTIMEOUT ideal-int
  1493. pkg syscall (darwin-arm64), const BIOCSSEESENT = 2147762807
  1494. pkg syscall (darwin-arm64), const BIOCSSEESENT ideal-int
  1495. pkg syscall (darwin-arm64), const BIOCVERSION = 1074020977
  1496. pkg syscall (darwin-arm64), const BIOCVERSION ideal-int
  1497. pkg syscall (darwin-arm64), const BPF_A = 16
  1498. pkg syscall (darwin-arm64), const BPF_A ideal-int
  1499. pkg syscall (darwin-arm64), const BPF_ABS = 32
  1500. pkg syscall (darwin-arm64), const BPF_ABS ideal-int
  1501. pkg syscall (darwin-arm64), const BPF_ADD = 0
  1502. pkg syscall (darwin-arm64), const BPF_ADD ideal-int
  1503. pkg syscall (darwin-arm64), const BPF_ALIGNMENT = 4
  1504. pkg syscall (darwin-arm64), const BPF_ALIGNMENT ideal-int
  1505. pkg syscall (darwin-arm64), const BPF_ALU = 4
  1506. pkg syscall (darwin-arm64), const BPF_ALU ideal-int
  1507. pkg syscall (darwin-arm64), const BPF_AND = 80
  1508. pkg syscall (darwin-arm64), const BPF_AND ideal-int
  1509. pkg syscall (darwin-arm64), const BPF_B = 16
  1510. pkg syscall (darwin-arm64), const BPF_B ideal-int
  1511. pkg syscall (darwin-arm64), const BPF_DIV = 48
  1512. pkg syscall (darwin-arm64), const BPF_DIV ideal-int
  1513. pkg syscall (darwin-arm64), const BPF_H = 8
  1514. pkg syscall (darwin-arm64), const BPF_H ideal-int
  1515. pkg syscall (darwin-arm64), const BPF_IMM = 0
  1516. pkg syscall (darwin-arm64), const BPF_IMM ideal-int
  1517. pkg syscall (darwin-arm64), const BPF_IND = 64
  1518. pkg syscall (darwin-arm64), const BPF_IND ideal-int
  1519. pkg syscall (darwin-arm64), const BPF_JA = 0
  1520. pkg syscall (darwin-arm64), const BPF_JA ideal-int
  1521. pkg syscall (darwin-arm64), const BPF_JEQ = 16
  1522. pkg syscall (darwin-arm64), const BPF_JEQ ideal-int
  1523. pkg syscall (darwin-arm64), const BPF_JGE = 48
  1524. pkg syscall (darwin-arm64), const BPF_JGE ideal-int
  1525. pkg syscall (darwin-arm64), const BPF_JGT = 32
  1526. pkg syscall (darwin-arm64), const BPF_JGT ideal-int
  1527. pkg syscall (darwin-arm64), const BPF_JMP = 5
  1528. pkg syscall (darwin-arm64), const BPF_JMP ideal-int
  1529. pkg syscall (darwin-arm64), const BPF_JSET = 64
  1530. pkg syscall (darwin-arm64), const BPF_JSET ideal-int
  1531. pkg syscall (darwin-arm64), const BPF_K = 0
  1532. pkg syscall (darwin-arm64), const BPF_K ideal-int
  1533. pkg syscall (darwin-arm64), const BPF_LD = 0
  1534. pkg syscall (darwin-arm64), const BPF_LD ideal-int
  1535. pkg syscall (darwin-arm64), const BPF_LDX = 1
  1536. pkg syscall (darwin-arm64), const BPF_LDX ideal-int
  1537. pkg syscall (darwin-arm64), const BPF_LEN = 128
  1538. pkg syscall (darwin-arm64), const BPF_LEN ideal-int
  1539. pkg syscall (darwin-arm64), const BPF_LSH = 96
  1540. pkg syscall (darwin-arm64), const BPF_LSH ideal-int
  1541. pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION = 1
  1542. pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION ideal-int
  1543. pkg syscall (darwin-arm64), const BPF_MAXBUFSIZE = 524288
  1544. pkg syscall (darwin-arm64), const BPF_MAXBUFSIZE ideal-int
  1545. pkg syscall (darwin-arm64), const BPF_MAXINSNS = 512
  1546. pkg syscall (darwin-arm64), const BPF_MAXINSNS ideal-int
  1547. pkg syscall (darwin-arm64), const BPF_MEM = 96
  1548. pkg syscall (darwin-arm64), const BPF_MEM ideal-int
  1549. pkg syscall (darwin-arm64), const BPF_MEMWORDS = 16
  1550. pkg syscall (darwin-arm64), const BPF_MEMWORDS ideal-int
  1551. pkg syscall (darwin-arm64), const BPF_MINBUFSIZE = 32
  1552. pkg syscall (darwin-arm64), const BPF_MINBUFSIZE ideal-int
  1553. pkg syscall (darwin-arm64), const BPF_MINOR_VERSION = 1
  1554. pkg syscall (darwin-arm64), const BPF_MINOR_VERSION ideal-int
  1555. pkg syscall (darwin-arm64), const BPF_MISC = 7
  1556. pkg syscall (darwin-arm64), const BPF_MISC ideal-int
  1557. pkg syscall (darwin-arm64), const BPF_MSH = 160
  1558. pkg syscall (darwin-arm64), const BPF_MSH ideal-int
  1559. pkg syscall (darwin-arm64), const BPF_MUL = 32
  1560. pkg syscall (darwin-arm64), const BPF_MUL ideal-int
  1561. pkg syscall (darwin-arm64), const BPF_NEG = 128
  1562. pkg syscall (darwin-arm64), const BPF_NEG ideal-int
  1563. pkg syscall (darwin-arm64), const BPF_OR = 64
  1564. pkg syscall (darwin-arm64), const BPF_OR ideal-int
  1565. pkg syscall (darwin-arm64), const BPF_RELEASE = 199606
  1566. pkg syscall (darwin-arm64), const BPF_RELEASE ideal-int
  1567. pkg syscall (darwin-arm64), const BPF_RET = 6
  1568. pkg syscall (darwin-arm64), const BPF_RET ideal-int
  1569. pkg syscall (darwin-arm64), const BPF_RSH = 112
  1570. pkg syscall (darwin-arm64), const BPF_RSH ideal-int
  1571. pkg syscall (darwin-arm64), const BPF_ST = 2
  1572. pkg syscall (darwin-arm64), const BPF_ST ideal-int
  1573. pkg syscall (darwin-arm64), const BPF_STX = 3
  1574. pkg syscall (darwin-arm64), const BPF_STX ideal-int
  1575. pkg syscall (darwin-arm64), const BPF_SUB = 16
  1576. pkg syscall (darwin-arm64), const BPF_SUB ideal-int
  1577. pkg syscall (darwin-arm64), const BPF_TAX = 0
  1578. pkg syscall (darwin-arm64), const BPF_TAX ideal-int
  1579. pkg syscall (darwin-arm64), const BPF_TXA = 128
  1580. pkg syscall (darwin-arm64), const BPF_TXA ideal-int
  1581. pkg syscall (darwin-arm64), const BPF_W = 0
  1582. pkg syscall (darwin-arm64), const BPF_W ideal-int
  1583. pkg syscall (darwin-arm64), const BPF_X = 8
  1584. pkg syscall (darwin-arm64), const BPF_X ideal-int
  1585. pkg syscall (darwin-arm64), const BRKINT = 2
  1586. pkg syscall (darwin-arm64), const BRKINT ideal-int
  1587. pkg syscall (darwin-arm64), const CFLUSH = 15
  1588. pkg syscall (darwin-arm64), const CFLUSH ideal-int
  1589. pkg syscall (darwin-arm64), const CLOCAL = 32768
  1590. pkg syscall (darwin-arm64), const CLOCAL ideal-int
  1591. pkg syscall (darwin-arm64), const CREAD = 2048
  1592. pkg syscall (darwin-arm64), const CREAD ideal-int
  1593. pkg syscall (darwin-arm64), const CS5 = 0
  1594. pkg syscall (darwin-arm64), const CS5 ideal-int
  1595. pkg syscall (darwin-arm64), const CS6 = 256
  1596. pkg syscall (darwin-arm64), const CS6 ideal-int
  1597. pkg syscall (darwin-arm64), const CS7 = 512
  1598. pkg syscall (darwin-arm64), const CS7 ideal-int
  1599. pkg syscall (darwin-arm64), const CS8 = 768
  1600. pkg syscall (darwin-arm64), const CS8 ideal-int
  1601. pkg syscall (darwin-arm64), const CSIZE = 768
  1602. pkg syscall (darwin-arm64), const CSIZE ideal-int
  1603. pkg syscall (darwin-arm64), const CSTART = 17
  1604. pkg syscall (darwin-arm64), const CSTART ideal-int
  1605. pkg syscall (darwin-arm64), const CSTATUS = 20
  1606. pkg syscall (darwin-arm64), const CSTATUS ideal-int
  1607. pkg syscall (darwin-arm64), const CSTOP = 19
  1608. pkg syscall (darwin-arm64), const CSTOP ideal-int
  1609. pkg syscall (darwin-arm64), const CSTOPB = 1024
  1610. pkg syscall (darwin-arm64), const CSTOPB ideal-int
  1611. pkg syscall (darwin-arm64), const CSUSP = 26
  1612. pkg syscall (darwin-arm64), const CSUSP ideal-int
  1613. pkg syscall (darwin-arm64), const CTL_MAXNAME = 12
  1614. pkg syscall (darwin-arm64), const CTL_MAXNAME ideal-int
  1615. pkg syscall (darwin-arm64), const CTL_NET = 4
  1616. pkg syscall (darwin-arm64), const CTL_NET ideal-int
  1617. pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
  1618. pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  1619. pkg syscall (darwin-arm64), const DLT_ARCNET = 7
  1620. pkg syscall (darwin-arm64), const DLT_ARCNET ideal-int
  1621. pkg syscall (darwin-arm64), const DLT_ATM_CLIP = 19
  1622. pkg syscall (darwin-arm64), const DLT_ATM_CLIP ideal-int
  1623. pkg syscall (darwin-arm64), const DLT_ATM_RFC1483 = 11
  1624. pkg syscall (darwin-arm64), const DLT_ATM_RFC1483 ideal-int
  1625. pkg syscall (darwin-arm64), const DLT_AX25 = 3
  1626. pkg syscall (darwin-arm64), const DLT_AX25 ideal-int
  1627. pkg syscall (darwin-arm64), const DLT_CHAOS = 5
  1628. pkg syscall (darwin-arm64), const DLT_CHAOS ideal-int
  1629. pkg syscall (darwin-arm64), const DLT_CHDLC = 104
  1630. pkg syscall (darwin-arm64), const DLT_CHDLC ideal-int
  1631. pkg syscall (darwin-arm64), const DLT_C_HDLC = 104
  1632. pkg syscall (darwin-arm64), const DLT_C_HDLC ideal-int
  1633. pkg syscall (darwin-arm64), const DLT_EN10MB = 1
  1634. pkg syscall (darwin-arm64), const DLT_EN10MB ideal-int
  1635. pkg syscall (darwin-arm64), const DLT_EN3MB = 2
  1636. pkg syscall (darwin-arm64), const DLT_EN3MB ideal-int
  1637. pkg syscall (darwin-arm64), const DLT_FDDI = 10
  1638. pkg syscall (darwin-arm64), const DLT_FDDI ideal-int
  1639. pkg syscall (darwin-arm64), const DLT_IEEE802 = 6
  1640. pkg syscall (darwin-arm64), const DLT_IEEE802 ideal-int
  1641. pkg syscall (darwin-arm64), const DLT_IEEE802_11 = 105
  1642. pkg syscall (darwin-arm64), const DLT_IEEE802_11 ideal-int
  1643. pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO = 127
  1644. pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO ideal-int
  1645. pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO_AVS = 163
  1646. pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO_AVS ideal-int
  1647. pkg syscall (darwin-arm64), const DLT_LINUX_SLL = 113
  1648. pkg syscall (darwin-arm64), const DLT_LINUX_SLL ideal-int
  1649. pkg syscall (darwin-arm64), const DLT_LOOP = 108
  1650. pkg syscall (darwin-arm64), const DLT_LOOP ideal-int
  1651. pkg syscall (darwin-arm64), const DLT_NULL = 0
  1652. pkg syscall (darwin-arm64), const DLT_NULL ideal-int
  1653. pkg syscall (darwin-arm64), const DLT_PFLOG = 117
  1654. pkg syscall (darwin-arm64), const DLT_PFLOG ideal-int
  1655. pkg syscall (darwin-arm64), const DLT_PFSYNC = 18
  1656. pkg syscall (darwin-arm64), const DLT_PFSYNC ideal-int
  1657. pkg syscall (darwin-arm64), const DLT_PPP = 9
  1658. pkg syscall (darwin-arm64), const DLT_PPP ideal-int
  1659. pkg syscall (darwin-arm64), const DLT_PPP_BSDOS = 16
  1660. pkg syscall (darwin-arm64), const DLT_PPP_BSDOS ideal-int
  1661. pkg syscall (darwin-arm64), const DLT_PPP_SERIAL = 50
  1662. pkg syscall (darwin-arm64), const DLT_PPP_SERIAL ideal-int
  1663. pkg syscall (darwin-arm64), const DLT_PRONET = 4
  1664. pkg syscall (darwin-arm64), const DLT_PRONET ideal-int
  1665. pkg syscall (darwin-arm64), const DLT_RAW = 12
  1666. pkg syscall (darwin-arm64), const DLT_RAW ideal-int
  1667. pkg syscall (darwin-arm64), const DLT_SLIP = 8
  1668. pkg syscall (darwin-arm64), const DLT_SLIP ideal-int
  1669. pkg syscall (darwin-arm64), const DLT_SLIP_BSDOS = 15
  1670. pkg syscall (darwin-arm64), const DLT_SLIP_BSDOS ideal-int
  1671. pkg syscall (darwin-arm64), const DT_BLK = 6
  1672. pkg syscall (darwin-arm64), const DT_BLK ideal-int
  1673. pkg syscall (darwin-arm64), const DT_CHR = 2
  1674. pkg syscall (darwin-arm64), const DT_CHR ideal-int
  1675. pkg syscall (darwin-arm64), const DT_DIR = 4
  1676. pkg syscall (darwin-arm64), const DT_DIR ideal-int
  1677. pkg syscall (darwin-arm64), const DT_FIFO = 1
  1678. pkg syscall (darwin-arm64), const DT_FIFO ideal-int
  1679. pkg syscall (darwin-arm64), const DT_LNK = 10
  1680. pkg syscall (darwin-arm64), const DT_LNK ideal-int
  1681. pkg syscall (darwin-arm64), const DT_REG = 8
  1682. pkg syscall (darwin-arm64), const DT_REG ideal-int
  1683. pkg syscall (darwin-arm64), const DT_SOCK = 12
  1684. pkg syscall (darwin-arm64), const DT_SOCK ideal-int
  1685. pkg syscall (darwin-arm64), const DT_UNKNOWN = 0
  1686. pkg syscall (darwin-arm64), const DT_UNKNOWN ideal-int
  1687. pkg syscall (darwin-arm64), const DT_WHT = 14
  1688. pkg syscall (darwin-arm64), const DT_WHT ideal-int
  1689. pkg syscall (darwin-arm64), const E2BIG = 7
  1690. pkg syscall (darwin-arm64), const EACCES = 13
  1691. pkg syscall (darwin-arm64), const EADDRINUSE = 48
  1692. pkg syscall (darwin-arm64), const EADDRNOTAVAIL = 49
  1693. pkg syscall (darwin-arm64), const EAFNOSUPPORT = 47
  1694. pkg syscall (darwin-arm64), const EAGAIN = 35
  1695. pkg syscall (darwin-arm64), const EALREADY = 37
  1696. pkg syscall (darwin-arm64), const EAUTH = 80
  1697. pkg syscall (darwin-arm64), const EAUTH Errno
  1698. pkg syscall (darwin-arm64), const EBADARCH = 86
  1699. pkg syscall (darwin-arm64), const EBADARCH Errno
  1700. pkg syscall (darwin-arm64), const EBADEXEC = 85
  1701. pkg syscall (darwin-arm64), const EBADEXEC Errno
  1702. pkg syscall (darwin-arm64), const EBADF = 9
  1703. pkg syscall (darwin-arm64), const EBADMACHO = 88
  1704. pkg syscall (darwin-arm64), const EBADMACHO Errno
  1705. pkg syscall (darwin-arm64), const EBADMSG = 94
  1706. pkg syscall (darwin-arm64), const EBADMSG Errno
  1707. pkg syscall (darwin-arm64), const EBADRPC = 72
  1708. pkg syscall (darwin-arm64), const EBADRPC Errno
  1709. pkg syscall (darwin-arm64), const EBUSY = 16
  1710. pkg syscall (darwin-arm64), const ECANCELED = 89
  1711. pkg syscall (darwin-arm64), const ECHILD = 10
  1712. pkg syscall (darwin-arm64), const ECHO = 8
  1713. pkg syscall (darwin-arm64), const ECHO ideal-int
  1714. pkg syscall (darwin-arm64), const ECHOCTL = 64
  1715. pkg syscall (darwin-arm64), const ECHOCTL ideal-int
  1716. pkg syscall (darwin-arm64), const ECHOE = 2
  1717. pkg syscall (darwin-arm64), const ECHOE ideal-int
  1718. pkg syscall (darwin-arm64), const ECHOK = 4
  1719. pkg syscall (darwin-arm64), const ECHOK ideal-int
  1720. pkg syscall (darwin-arm64), const ECHOKE = 1
  1721. pkg syscall (darwin-arm64), const ECHOKE ideal-int
  1722. pkg syscall (darwin-arm64), const ECHONL = 16
  1723. pkg syscall (darwin-arm64), const ECHONL ideal-int
  1724. pkg syscall (darwin-arm64), const ECHOPRT = 32
  1725. pkg syscall (darwin-arm64), const ECHOPRT ideal-int
  1726. pkg syscall (darwin-arm64), const ECONNABORTED = 53
  1727. pkg syscall (darwin-arm64), const ECONNREFUSED = 61
  1728. pkg syscall (darwin-arm64), const ECONNRESET = 54
  1729. pkg syscall (darwin-arm64), const EDEADLK = 11
  1730. pkg syscall (darwin-arm64), const EDESTADDRREQ = 39
  1731. pkg syscall (darwin-arm64), const EDEVERR = 83
  1732. pkg syscall (darwin-arm64), const EDEVERR Errno
  1733. pkg syscall (darwin-arm64), const EDOM = 33
  1734. pkg syscall (darwin-arm64), const EDQUOT = 69
  1735. pkg syscall (darwin-arm64), const EEXIST = 17
  1736. pkg syscall (darwin-arm64), const EFAULT = 14
  1737. pkg syscall (darwin-arm64), const EFBIG = 27
  1738. pkg syscall (darwin-arm64), const EFTYPE = 79
  1739. pkg syscall (darwin-arm64), const EFTYPE Errno
  1740. pkg syscall (darwin-arm64), const EHOSTDOWN = 64
  1741. pkg syscall (darwin-arm64), const EHOSTUNREACH = 65
  1742. pkg syscall (darwin-arm64), const EIDRM = 90
  1743. pkg syscall (darwin-arm64), const EILSEQ = 92
  1744. pkg syscall (darwin-arm64), const EINPROGRESS = 36
  1745. pkg syscall (darwin-arm64), const EINTR = 4
  1746. pkg syscall (darwin-arm64), const EINVAL = 22
  1747. pkg syscall (darwin-arm64), const EIO = 5
  1748. pkg syscall (darwin-arm64), const EISCONN = 56
  1749. pkg syscall (darwin-arm64), const EISDIR = 21
  1750. pkg syscall (darwin-arm64), const ELAST = 106
  1751. pkg syscall (darwin-arm64), const ELAST Errno
  1752. pkg syscall (darwin-arm64), const ELOOP = 62
  1753. pkg syscall (darwin-arm64), const EMFILE = 24
  1754. pkg syscall (darwin-arm64), const EMLINK = 31
  1755. pkg syscall (darwin-arm64), const EMSGSIZE = 40
  1756. pkg syscall (darwin-arm64), const EMULTIHOP = 95
  1757. pkg syscall (darwin-arm64), const EMULTIHOP Errno
  1758. pkg syscall (darwin-arm64), const ENAMETOOLONG = 63
  1759. pkg syscall (darwin-arm64), const ENEEDAUTH = 81
  1760. pkg syscall (darwin-arm64), const ENEEDAUTH Errno
  1761. pkg syscall (darwin-arm64), const ENETDOWN = 50
  1762. pkg syscall (darwin-arm64), const ENETRESET = 52
  1763. pkg syscall (darwin-arm64), const ENETUNREACH = 51
  1764. pkg syscall (darwin-arm64), const ENFILE = 23
  1765. pkg syscall (darwin-arm64), const ENOATTR = 93
  1766. pkg syscall (darwin-arm64), const ENOATTR Errno
  1767. pkg syscall (darwin-arm64), const ENOBUFS = 55
  1768. pkg syscall (darwin-arm64), const ENODATA = 96
  1769. pkg syscall (darwin-arm64), const ENODATA Errno
  1770. pkg syscall (darwin-arm64), const ENODEV = 19
  1771. pkg syscall (darwin-arm64), const ENOEXEC = 8
  1772. pkg syscall (darwin-arm64), const ENOLCK = 77
  1773. pkg syscall (darwin-arm64), const ENOLINK = 97
  1774. pkg syscall (darwin-arm64), const ENOLINK Errno
  1775. pkg syscall (darwin-arm64), const ENOMEM = 12
  1776. pkg syscall (darwin-arm64), const ENOMSG = 91
  1777. pkg syscall (darwin-arm64), const ENOPOLICY = 103
  1778. pkg syscall (darwin-arm64), const ENOPOLICY Errno
  1779. pkg syscall (darwin-arm64), const ENOPROTOOPT = 42
  1780. pkg syscall (darwin-arm64), const ENOSPC = 28
  1781. pkg syscall (darwin-arm64), const ENOSR = 98
  1782. pkg syscall (darwin-arm64), const ENOSR Errno
  1783. pkg syscall (darwin-arm64), const ENOSTR = 99
  1784. pkg syscall (darwin-arm64), const ENOSTR Errno
  1785. pkg syscall (darwin-arm64), const ENOSYS = 78
  1786. pkg syscall (darwin-arm64), const ENOTBLK = 15
  1787. pkg syscall (darwin-arm64), const ENOTCONN = 57
  1788. pkg syscall (darwin-arm64), const ENOTDIR = 20
  1789. pkg syscall (darwin-arm64), const ENOTEMPTY = 66
  1790. pkg syscall (darwin-arm64), const ENOTRECOVERABLE = 104
  1791. pkg syscall (darwin-arm64), const ENOTRECOVERABLE Errno
  1792. pkg syscall (darwin-arm64), const ENOTSOCK = 38
  1793. pkg syscall (darwin-arm64), const ENOTSUP = 45
  1794. pkg syscall (darwin-arm64), const ENOTTY = 25
  1795. pkg syscall (darwin-arm64), const ENXIO = 6
  1796. pkg syscall (darwin-arm64), const EOPNOTSUPP = 102
  1797. pkg syscall (darwin-arm64), const EOVERFLOW = 84
  1798. pkg syscall (darwin-arm64), const EOWNERDEAD = 105
  1799. pkg syscall (darwin-arm64), const EOWNERDEAD Errno
  1800. pkg syscall (darwin-arm64), const EPERM = 1
  1801. pkg syscall (darwin-arm64), const EPFNOSUPPORT = 46
  1802. pkg syscall (darwin-arm64), const EPIPE = 32
  1803. pkg syscall (darwin-arm64), const EPROCLIM = 67
  1804. pkg syscall (darwin-arm64), const EPROCLIM Errno
  1805. pkg syscall (darwin-arm64), const EPROCUNAVAIL = 76
  1806. pkg syscall (darwin-arm64), const EPROCUNAVAIL Errno
  1807. pkg syscall (darwin-arm64), const EPROGMISMATCH = 75
  1808. pkg syscall (darwin-arm64), const EPROGMISMATCH Errno
  1809. pkg syscall (darwin-arm64), const EPROGUNAVAIL = 74
  1810. pkg syscall (darwin-arm64), const EPROGUNAVAIL Errno
  1811. pkg syscall (darwin-arm64), const EPROTO = 100
  1812. pkg syscall (darwin-arm64), const EPROTO Errno
  1813. pkg syscall (darwin-arm64), const EPROTONOSUPPORT = 43
  1814. pkg syscall (darwin-arm64), const EPROTOTYPE = 41
  1815. pkg syscall (darwin-arm64), const EPWROFF = 82
  1816. pkg syscall (darwin-arm64), const EPWROFF Errno
  1817. pkg syscall (darwin-arm64), const EQFULL = 106
  1818. pkg syscall (darwin-arm64), const EQFULL Errno
  1819. pkg syscall (darwin-arm64), const ERANGE = 34
  1820. pkg syscall (darwin-arm64), const EREMOTE = 71
  1821. pkg syscall (darwin-arm64), const EROFS = 30
  1822. pkg syscall (darwin-arm64), const ERPCMISMATCH = 73
  1823. pkg syscall (darwin-arm64), const ERPCMISMATCH Errno
  1824. pkg syscall (darwin-arm64), const ESHLIBVERS = 87
  1825. pkg syscall (darwin-arm64), const ESHLIBVERS Errno
  1826. pkg syscall (darwin-arm64), const ESHUTDOWN = 58
  1827. pkg syscall (darwin-arm64), const ESOCKTNOSUPPORT = 44
  1828. pkg syscall (darwin-arm64), const ESPIPE = 29
  1829. pkg syscall (darwin-arm64), const ESRCH = 3
  1830. pkg syscall (darwin-arm64), const ESTALE = 70
  1831. pkg syscall (darwin-arm64), const ETIME = 101
  1832. pkg syscall (darwin-arm64), const ETIME Errno
  1833. pkg syscall (darwin-arm64), const ETIMEDOUT = 60
  1834. pkg syscall (darwin-arm64), const ETOOMANYREFS = 59
  1835. pkg syscall (darwin-arm64), const ETXTBSY = 26
  1836. pkg syscall (darwin-arm64), const EUSERS = 68
  1837. pkg syscall (darwin-arm64), const EVFILT_AIO = -3
  1838. pkg syscall (darwin-arm64), const EVFILT_AIO ideal-int
  1839. pkg syscall (darwin-arm64), const EVFILT_FS = -9
  1840. pkg syscall (darwin-arm64), const EVFILT_FS ideal-int
  1841. pkg syscall (darwin-arm64), const EVFILT_MACHPORT = -8
  1842. pkg syscall (darwin-arm64), const EVFILT_MACHPORT ideal-int
  1843. pkg syscall (darwin-arm64), const EVFILT_PROC = -5
  1844. pkg syscall (darwin-arm64), const EVFILT_PROC ideal-int
  1845. pkg syscall (darwin-arm64), const EVFILT_READ = -1
  1846. pkg syscall (darwin-arm64), const EVFILT_READ ideal-int
  1847. pkg syscall (darwin-arm64), const EVFILT_SIGNAL = -6
  1848. pkg syscall (darwin-arm64), const EVFILT_SIGNAL ideal-int
  1849. pkg syscall (darwin-arm64), const EVFILT_SYSCOUNT = 14
  1850. pkg syscall (darwin-arm64), const EVFILT_SYSCOUNT ideal-int
  1851. pkg syscall (darwin-arm64), const EVFILT_THREADMARKER = 14
  1852. pkg syscall (darwin-arm64), const EVFILT_THREADMARKER ideal-int
  1853. pkg syscall (darwin-arm64), const EVFILT_TIMER = -7
  1854. pkg syscall (darwin-arm64), const EVFILT_TIMER ideal-int
  1855. pkg syscall (darwin-arm64), const EVFILT_USER = -10
  1856. pkg syscall (darwin-arm64), const EVFILT_USER ideal-int
  1857. pkg syscall (darwin-arm64), const EVFILT_VM = -12
  1858. pkg syscall (darwin-arm64), const EVFILT_VM ideal-int
  1859. pkg syscall (darwin-arm64), const EVFILT_VNODE = -4
  1860. pkg syscall (darwin-arm64), const EVFILT_VNODE ideal-int
  1861. pkg syscall (darwin-arm64), const EVFILT_WRITE = -2
  1862. pkg syscall (darwin-arm64), const EVFILT_WRITE ideal-int
  1863. pkg syscall (darwin-arm64), const EV_ADD = 1
  1864. pkg syscall (darwin-arm64), const EV_ADD ideal-int
  1865. pkg syscall (darwin-arm64), const EV_CLEAR = 32
  1866. pkg syscall (darwin-arm64), const EV_CLEAR ideal-int
  1867. pkg syscall (darwin-arm64), const EV_DELETE = 2
  1868. pkg syscall (darwin-arm64), const EV_DELETE ideal-int
  1869. pkg syscall (darwin-arm64), const EV_DISABLE = 8
  1870. pkg syscall (darwin-arm64), const EV_DISABLE ideal-int
  1871. pkg syscall (darwin-arm64), const EV_DISPATCH = 128
  1872. pkg syscall (darwin-arm64), const EV_DISPATCH ideal-int
  1873. pkg syscall (darwin-arm64), const EV_ENABLE = 4
  1874. pkg syscall (darwin-arm64), const EV_ENABLE ideal-int
  1875. pkg syscall (darwin-arm64), const EV_EOF = 32768
  1876. pkg syscall (darwin-arm64), const EV_EOF ideal-int
  1877. pkg syscall (darwin-arm64), const EV_ERROR = 16384
  1878. pkg syscall (darwin-arm64), const EV_ERROR ideal-int
  1879. pkg syscall (darwin-arm64), const EV_FLAG0 = 4096
  1880. pkg syscall (darwin-arm64), const EV_FLAG0 ideal-int
  1881. pkg syscall (darwin-arm64), const EV_FLAG1 = 8192
  1882. pkg syscall (darwin-arm64), const EV_FLAG1 ideal-int
  1883. pkg syscall (darwin-arm64), const EV_ONESHOT = 16
  1884. pkg syscall (darwin-arm64), const EV_ONESHOT ideal-int
  1885. pkg syscall (darwin-arm64), const EV_OOBAND = 8192
  1886. pkg syscall (darwin-arm64), const EV_OOBAND ideal-int
  1887. pkg syscall (darwin-arm64), const EV_POLL = 4096
  1888. pkg syscall (darwin-arm64), const EV_POLL ideal-int
  1889. pkg syscall (darwin-arm64), const EV_RECEIPT = 64
  1890. pkg syscall (darwin-arm64), const EV_RECEIPT ideal-int
  1891. pkg syscall (darwin-arm64), const EV_SYSFLAGS = 61440
  1892. pkg syscall (darwin-arm64), const EV_SYSFLAGS ideal-int
  1893. pkg syscall (darwin-arm64), const EWOULDBLOCK = 35
  1894. pkg syscall (darwin-arm64), const EXDEV = 18
  1895. pkg syscall (darwin-arm64), const EXTA = 19200
  1896. pkg syscall (darwin-arm64), const EXTA ideal-int
  1897. pkg syscall (darwin-arm64), const EXTB = 38400
  1898. pkg syscall (darwin-arm64), const EXTB ideal-int
  1899. pkg syscall (darwin-arm64), const EXTPROC = 2048
  1900. pkg syscall (darwin-arm64), const EXTPROC ideal-int
  1901. pkg syscall (darwin-arm64), const FD_CLOEXEC = 1
  1902. pkg syscall (darwin-arm64), const FD_CLOEXEC ideal-int
  1903. pkg syscall (darwin-arm64), const FD_SETSIZE = 1024
  1904. pkg syscall (darwin-arm64), const FD_SETSIZE ideal-int
  1905. pkg syscall (darwin-arm64), const FLUSHO = 8388608
  1906. pkg syscall (darwin-arm64), const FLUSHO ideal-int
  1907. pkg syscall (darwin-arm64), const F_ADDFILESIGS = 61
  1908. pkg syscall (darwin-arm64), const F_ADDFILESIGS ideal-int
  1909. pkg syscall (darwin-arm64), const F_ADDSIGS = 59
  1910. pkg syscall (darwin-arm64), const F_ADDSIGS ideal-int
  1911. pkg syscall (darwin-arm64), const F_ALLOCATEALL = 4
  1912. pkg syscall (darwin-arm64), const F_ALLOCATEALL ideal-int
  1913. pkg syscall (darwin-arm64), const F_ALLOCATECONTIG = 2
  1914. pkg syscall (darwin-arm64), const F_ALLOCATECONTIG ideal-int
  1915. pkg syscall (darwin-arm64), const F_CHKCLEAN = 41
  1916. pkg syscall (darwin-arm64), const F_CHKCLEAN ideal-int
  1917. pkg syscall (darwin-arm64), const F_DUPFD = 0
  1918. pkg syscall (darwin-arm64), const F_DUPFD ideal-int
  1919. pkg syscall (darwin-arm64), const F_DUPFD_CLOEXEC = 67
  1920. pkg syscall (darwin-arm64), const F_DUPFD_CLOEXEC ideal-int
  1921. pkg syscall (darwin-arm64), const F_FINDSIGS = 78
  1922. pkg syscall (darwin-arm64), const F_FINDSIGS ideal-int
  1923. pkg syscall (darwin-arm64), const F_FLUSH_DATA = 40
  1924. pkg syscall (darwin-arm64), const F_FLUSH_DATA ideal-int
  1925. pkg syscall (darwin-arm64), const F_FREEZE_FS = 53
  1926. pkg syscall (darwin-arm64), const F_FREEZE_FS ideal-int
  1927. pkg syscall (darwin-arm64), const F_FULLFSYNC = 51
  1928. pkg syscall (darwin-arm64), const F_FULLFSYNC ideal-int
  1929. pkg syscall (darwin-arm64), const F_GETCODEDIR = 72
  1930. pkg syscall (darwin-arm64), const F_GETCODEDIR ideal-int
  1931. pkg syscall (darwin-arm64), const F_GETFD = 1
  1932. pkg syscall (darwin-arm64), const F_GETFD ideal-int
  1933. pkg syscall (darwin-arm64), const F_GETFL = 3
  1934. pkg syscall (darwin-arm64), const F_GETFL ideal-int
  1935. pkg syscall (darwin-arm64), const F_GETLK = 7
  1936. pkg syscall (darwin-arm64), const F_GETLK ideal-int
  1937. pkg syscall (darwin-arm64), const F_GETLKPID = 66
  1938. pkg syscall (darwin-arm64), const F_GETLKPID ideal-int
  1939. pkg syscall (darwin-arm64), const F_GETNOSIGPIPE = 74
  1940. pkg syscall (darwin-arm64), const F_GETNOSIGPIPE ideal-int
  1941. pkg syscall (darwin-arm64), const F_GETOWN = 5
  1942. pkg syscall (darwin-arm64), const F_GETOWN ideal-int
  1943. pkg syscall (darwin-arm64), const F_GETPATH = 50
  1944. pkg syscall (darwin-arm64), const F_GETPATH ideal-int
  1945. pkg syscall (darwin-arm64), const F_GETPATH_MTMINFO = 71
  1946. pkg syscall (darwin-arm64), const F_GETPATH_MTMINFO ideal-int
  1947. pkg syscall (darwin-arm64), const F_GETPROTECTIONCLASS = 63
  1948. pkg syscall (darwin-arm64), const F_GETPROTECTIONCLASS ideal-int
  1949. pkg syscall (darwin-arm64), const F_GETPROTECTIONLEVEL = 77
  1950. pkg syscall (darwin-arm64), const F_GETPROTECTIONLEVEL ideal-int
  1951. pkg syscall (darwin-arm64), const F_GLOBAL_NOCACHE = 55
  1952. pkg syscall (darwin-arm64), const F_GLOBAL_NOCACHE ideal-int
  1953. pkg syscall (darwin-arm64), const F_LOG2PHYS = 49
  1954. pkg syscall (darwin-arm64), const F_LOG2PHYS ideal-int
  1955. pkg syscall (darwin-arm64), const F_LOG2PHYS_EXT = 65
  1956. pkg syscall (darwin-arm64), const F_LOG2PHYS_EXT ideal-int
  1957. pkg syscall (darwin-arm64), const F_NOCACHE = 48
  1958. pkg syscall (darwin-arm64), const F_NOCACHE ideal-int
  1959. pkg syscall (darwin-arm64), const F_NODIRECT = 62
  1960. pkg syscall (darwin-arm64), const F_NODIRECT ideal-int
  1961. pkg syscall (darwin-arm64), const F_OK = 0
  1962. pkg syscall (darwin-arm64), const F_OK ideal-int
  1963. pkg syscall (darwin-arm64), const F_PATHPKG_CHECK = 52
  1964. pkg syscall (darwin-arm64), const F_PATHPKG_CHECK ideal-int
  1965. pkg syscall (darwin-arm64), const F_PEOFPOSMODE = 3
  1966. pkg syscall (darwin-arm64), const F_PEOFPOSMODE ideal-int
  1967. pkg syscall (darwin-arm64), const F_PREALLOCATE = 42
  1968. pkg syscall (darwin-arm64), const F_PREALLOCATE ideal-int
  1969. pkg syscall (darwin-arm64), const F_RDADVISE = 44
  1970. pkg syscall (darwin-arm64), const F_RDADVISE ideal-int
  1971. pkg syscall (darwin-arm64), const F_RDAHEAD = 45
  1972. pkg syscall (darwin-arm64), const F_RDAHEAD ideal-int
  1973. pkg syscall (darwin-arm64), const F_RDLCK = 1
  1974. pkg syscall (darwin-arm64), const F_RDLCK ideal-int
  1975. pkg syscall (darwin-arm64), const F_SETBACKINGSTORE = 70
  1976. pkg syscall (darwin-arm64), const F_SETBACKINGSTORE ideal-int
  1977. pkg syscall (darwin-arm64), const F_SETFD = 2
  1978. pkg syscall (darwin-arm64), const F_SETFD ideal-int
  1979. pkg syscall (darwin-arm64), const F_SETFL = 4
  1980. pkg syscall (darwin-arm64), const F_SETFL ideal-int
  1981. pkg syscall (darwin-arm64), const F_SETLK = 8
  1982. pkg syscall (darwin-arm64), const F_SETLK ideal-int
  1983. pkg syscall (darwin-arm64), const F_SETLKW = 9
  1984. pkg syscall (darwin-arm64), const F_SETLKW ideal-int
  1985. pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT = 10
  1986. pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT ideal-int
  1987. pkg syscall (darwin-arm64), const F_SETNOSIGPIPE = 73
  1988. pkg syscall (darwin-arm64), const F_SETNOSIGPIPE ideal-int
  1989. pkg syscall (darwin-arm64), const F_SETOWN = 6
  1990. pkg syscall (darwin-arm64), const F_SETOWN ideal-int
  1991. pkg syscall (darwin-arm64), const F_SETPROTECTIONCLASS = 64
  1992. pkg syscall (darwin-arm64), const F_SETPROTECTIONCLASS ideal-int
  1993. pkg syscall (darwin-arm64), const F_SETSIZE = 43
  1994. pkg syscall (darwin-arm64), const F_SETSIZE ideal-int
  1995. pkg syscall (darwin-arm64), const F_SINGLE_WRITER = 76
  1996. pkg syscall (darwin-arm64), const F_SINGLE_WRITER ideal-int
  1997. pkg syscall (darwin-arm64), const F_THAW_FS = 54
  1998. pkg syscall (darwin-arm64), const F_THAW_FS ideal-int
  1999. pkg syscall (darwin-arm64), const F_TRANSCODEKEY = 75
  2000. pkg syscall (darwin-arm64), const F_TRANSCODEKEY ideal-int
  2001. pkg syscall (darwin-arm64), const F_UNLCK = 2
  2002. pkg syscall (darwin-arm64), const F_UNLCK ideal-int
  2003. pkg syscall (darwin-arm64), const F_VOLPOSMODE = 4
  2004. pkg syscall (darwin-arm64), const F_VOLPOSMODE ideal-int
  2005. pkg syscall (darwin-arm64), const F_WRLCK = 3
  2006. pkg syscall (darwin-arm64), const F_WRLCK ideal-int
  2007. pkg syscall (darwin-arm64), const HUPCL = 16384
  2008. pkg syscall (darwin-arm64), const HUPCL ideal-int
  2009. pkg syscall (darwin-arm64), const ICANON = 256
  2010. pkg syscall (darwin-arm64), const ICANON ideal-int
  2011. pkg syscall (darwin-arm64), const ICMP6_FILTER = 18
  2012. pkg syscall (darwin-arm64), const ICMP6_FILTER ideal-int
  2013. pkg syscall (darwin-arm64), const ICRNL = 256
  2014. pkg syscall (darwin-arm64), const ICRNL ideal-int
  2015. pkg syscall (darwin-arm64), const IEXTEN = 1024
  2016. pkg syscall (darwin-arm64), const IEXTEN ideal-int
  2017. pkg syscall (darwin-arm64), const IFF_ALLMULTI = 512
  2018. pkg syscall (darwin-arm64), const IFF_ALLMULTI ideal-int
  2019. pkg syscall (darwin-arm64), const IFF_ALTPHYS = 16384
  2020. pkg syscall (darwin-arm64), const IFF_ALTPHYS ideal-int
  2021. pkg syscall (darwin-arm64), const IFF_DEBUG = 4
  2022. pkg syscall (darwin-arm64), const IFF_DEBUG ideal-int
  2023. pkg syscall (darwin-arm64), const IFF_LINK0 = 4096
  2024. pkg syscall (darwin-arm64), const IFF_LINK0 ideal-int
  2025. pkg syscall (darwin-arm64), const IFF_LINK1 = 8192
  2026. pkg syscall (darwin-arm64), const IFF_LINK1 ideal-int
  2027. pkg syscall (darwin-arm64), const IFF_LINK2 = 16384
  2028. pkg syscall (darwin-arm64), const IFF_LINK2 ideal-int
  2029. pkg syscall (darwin-arm64), const IFF_LOOPBACK = 8
  2030. pkg syscall (darwin-arm64), const IFF_MULTICAST = 32768
  2031. pkg syscall (darwin-arm64), const IFF_NOARP = 128
  2032. pkg syscall (darwin-arm64), const IFF_NOARP ideal-int
  2033. pkg syscall (darwin-arm64), const IFF_NOTRAILERS = 32
  2034. pkg syscall (darwin-arm64), const IFF_NOTRAILERS ideal-int
  2035. pkg syscall (darwin-arm64), const IFF_OACTIVE = 1024
  2036. pkg syscall (darwin-arm64), const IFF_OACTIVE ideal-int
  2037. pkg syscall (darwin-arm64), const IFF_POINTOPOINT = 16
  2038. pkg syscall (darwin-arm64), const IFF_POINTOPOINT ideal-int
  2039. pkg syscall (darwin-arm64), const IFF_PROMISC = 256
  2040. pkg syscall (darwin-arm64), const IFF_PROMISC ideal-int
  2041. pkg syscall (darwin-arm64), const IFF_RUNNING = 64
  2042. pkg syscall (darwin-arm64), const IFF_RUNNING ideal-int
  2043. pkg syscall (darwin-arm64), const IFF_SIMPLEX = 2048
  2044. pkg syscall (darwin-arm64), const IFF_SIMPLEX ideal-int
  2045. pkg syscall (darwin-arm64), const IFNAMSIZ = 16
  2046. pkg syscall (darwin-arm64), const IFNAMSIZ ideal-int
  2047. pkg syscall (darwin-arm64), const IFT_1822 = 2
  2048. pkg syscall (darwin-arm64), const IFT_1822 ideal-int
  2049. pkg syscall (darwin-arm64), const IFT_AAL5 = 49
  2050. pkg syscall (darwin-arm64), const IFT_AAL5 ideal-int
  2051. pkg syscall (darwin-arm64), const IFT_ARCNET = 35
  2052. pkg syscall (darwin-arm64), const IFT_ARCNET ideal-int
  2053. pkg syscall (darwin-arm64), const IFT_ARCNETPLUS = 36
  2054. pkg syscall (darwin-arm64), const IFT_ARCNETPLUS ideal-int
  2055. pkg syscall (darwin-arm64), const IFT_ATM = 37
  2056. pkg syscall (darwin-arm64), const IFT_ATM ideal-int
  2057. pkg syscall (darwin-arm64), const IFT_BRIDGE = 209
  2058. pkg syscall (darwin-arm64), const IFT_BRIDGE ideal-int
  2059. pkg syscall (darwin-arm64), const IFT_CARP = 248
  2060. pkg syscall (darwin-arm64), const IFT_CARP ideal-int
  2061. pkg syscall (darwin-arm64), const IFT_CELLULAR = 255
  2062. pkg syscall (darwin-arm64), const IFT_CELLULAR ideal-int
  2063. pkg syscall (darwin-arm64), const IFT_CEPT = 19
  2064. pkg syscall (darwin-arm64), const IFT_CEPT ideal-int
  2065. pkg syscall (darwin-arm64), const IFT_DS3 = 30
  2066. pkg syscall (darwin-arm64), const IFT_DS3 ideal-int
  2067. pkg syscall (darwin-arm64), const IFT_ENC = 244
  2068. pkg syscall (darwin-arm64), const IFT_ENC ideal-int
  2069. pkg syscall (darwin-arm64), const IFT_EON = 25
  2070. pkg syscall (darwin-arm64), const IFT_EON ideal-int
  2071. pkg syscall (darwin-arm64), const IFT_ETHER = 6
  2072. pkg syscall (darwin-arm64), const IFT_ETHER ideal-int
  2073. pkg syscall (darwin-arm64), const IFT_FAITH = 56
  2074. pkg syscall (darwin-arm64), const IFT_FAITH ideal-int
  2075. pkg syscall (darwin-arm64), const IFT_FDDI = 15
  2076. pkg syscall (darwin-arm64), const IFT_FDDI ideal-int
  2077. pkg syscall (darwin-arm64), const IFT_FRELAY = 32
  2078. pkg syscall (darwin-arm64), const IFT_FRELAY ideal-int
  2079. pkg syscall (darwin-arm64), const IFT_FRELAYDCE = 44
  2080. pkg syscall (darwin-arm64), const IFT_FRELAYDCE ideal-int
  2081. pkg syscall (darwin-arm64), const IFT_GIF = 55
  2082. pkg syscall (darwin-arm64), const IFT_GIF ideal-int
  2083. pkg syscall (darwin-arm64), const IFT_HDH1822 = 3
  2084. pkg syscall (darwin-arm64), const IFT_HDH1822 ideal-int
  2085. pkg syscall (darwin-arm64), const IFT_HIPPI = 47
  2086. pkg syscall (darwin-arm64), const IFT_HIPPI ideal-int
  2087. pkg syscall (darwin-arm64), const IFT_HSSI = 46
  2088. pkg syscall (darwin-arm64), const IFT_HSSI ideal-int
  2089. pkg syscall (darwin-arm64), const IFT_HY = 14
  2090. pkg syscall (darwin-arm64), const IFT_HY ideal-int
  2091. pkg syscall (darwin-arm64), const IFT_IEEE1394 = 144
  2092. pkg syscall (darwin-arm64), const IFT_IEEE1394 ideal-int
  2093. pkg syscall (darwin-arm64), const IFT_IEEE8023ADLAG = 136
  2094. pkg syscall (darwin-arm64), const IFT_IEEE8023ADLAG ideal-int
  2095. pkg syscall (darwin-arm64), const IFT_ISDNBASIC = 20
  2096. pkg syscall (darwin-arm64), const IFT_ISDNBASIC ideal-int
  2097. pkg syscall (darwin-arm64), const IFT_ISDNPRIMARY = 21
  2098. pkg syscall (darwin-arm64), const IFT_ISDNPRIMARY ideal-int
  2099. pkg syscall (darwin-arm64), const IFT_ISO88022LLC = 41
  2100. pkg syscall (darwin-arm64), const IFT_ISO88022LLC ideal-int
  2101. pkg syscall (darwin-arm64), const IFT_ISO88023 = 7
  2102. pkg syscall (darwin-arm64), const IFT_ISO88023 ideal-int
  2103. pkg syscall (darwin-arm64), const IFT_ISO88024 = 8
  2104. pkg syscall (darwin-arm64), const IFT_ISO88024 ideal-int
  2105. pkg syscall (darwin-arm64), const IFT_ISO88025 = 9
  2106. pkg syscall (darwin-arm64), const IFT_ISO88025 ideal-int
  2107. pkg syscall (darwin-arm64), const IFT_ISO88026 = 10
  2108. pkg syscall (darwin-arm64), const IFT_ISO88026 ideal-int
  2109. pkg syscall (darwin-arm64), const IFT_L2VLAN = 135
  2110. pkg syscall (darwin-arm64), const IFT_L2VLAN ideal-int
  2111. pkg syscall (darwin-arm64), const IFT_LAPB = 16
  2112. pkg syscall (darwin-arm64), const IFT_LAPB ideal-int
  2113. pkg syscall (darwin-arm64), const IFT_LOCALTALK = 42
  2114. pkg syscall (darwin-arm64), const IFT_LOCALTALK ideal-int
  2115. pkg syscall (darwin-arm64), const IFT_LOOP = 24
  2116. pkg syscall (darwin-arm64), const IFT_LOOP ideal-int
  2117. pkg syscall (darwin-arm64), const IFT_MIOX25 = 38
  2118. pkg syscall (darwin-arm64), const IFT_MIOX25 ideal-int
  2119. pkg syscall (darwin-arm64), const IFT_MODEM = 48
  2120. pkg syscall (darwin-arm64), const IFT_MODEM ideal-int
  2121. pkg syscall (darwin-arm64), const IFT_NSIP = 27
  2122. pkg syscall (darwin-arm64), const IFT_NSIP ideal-int
  2123. pkg syscall (darwin-arm64), const IFT_OTHER = 1
  2124. pkg syscall (darwin-arm64), const IFT_OTHER ideal-int
  2125. pkg syscall (darwin-arm64), const IFT_P10 = 12
  2126. pkg syscall (darwin-arm64), const IFT_P10 ideal-int
  2127. pkg syscall (darwin-arm64), const IFT_P80 = 13
  2128. pkg syscall (darwin-arm64), const IFT_P80 ideal-int
  2129. pkg syscall (darwin-arm64), const IFT_PARA = 34
  2130. pkg syscall (darwin-arm64), const IFT_PARA ideal-int
  2131. pkg syscall (darwin-arm64), const IFT_PDP = 255
  2132. pkg syscall (darwin-arm64), const IFT_PDP ideal-int
  2133. pkg syscall (darwin-arm64), const IFT_PFLOG = 245
  2134. pkg syscall (darwin-arm64), const IFT_PFLOG ideal-int
  2135. pkg syscall (darwin-arm64), const IFT_PFSYNC = 246
  2136. pkg syscall (darwin-arm64), const IFT_PFSYNC ideal-int
  2137. pkg syscall (darwin-arm64), const IFT_PPP = 23
  2138. pkg syscall (darwin-arm64), const IFT_PPP ideal-int
  2139. pkg syscall (darwin-arm64), const IFT_PROPMUX = 54
  2140. pkg syscall (darwin-arm64), const IFT_PROPMUX ideal-int
  2141. pkg syscall (darwin-arm64), const IFT_PROPVIRTUAL = 53
  2142. pkg syscall (darwin-arm64), const IFT_PROPVIRTUAL ideal-int
  2143. pkg syscall (darwin-arm64), const IFT_PTPSERIAL = 22
  2144. pkg syscall (darwin-arm64), const IFT_PTPSERIAL ideal-int
  2145. pkg syscall (darwin-arm64), const IFT_RS232 = 33
  2146. pkg syscall (darwin-arm64), const IFT_RS232 ideal-int
  2147. pkg syscall (darwin-arm64), const IFT_SDLC = 17
  2148. pkg syscall (darwin-arm64), const IFT_SDLC ideal-int
  2149. pkg syscall (darwin-arm64), const IFT_SIP = 31
  2150. pkg syscall (darwin-arm64), const IFT_SIP ideal-int
  2151. pkg syscall (darwin-arm64), const IFT_SLIP = 28
  2152. pkg syscall (darwin-arm64), const IFT_SLIP ideal-int
  2153. pkg syscall (darwin-arm64), const IFT_SMDSDXI = 43
  2154. pkg syscall (darwin-arm64), const IFT_SMDSDXI ideal-int
  2155. pkg syscall (darwin-arm64), const IFT_SMDSICIP = 52
  2156. pkg syscall (darwin-arm64), const IFT_SMDSICIP ideal-int
  2157. pkg syscall (darwin-arm64), const IFT_SONET = 39
  2158. pkg syscall (darwin-arm64), const IFT_SONET ideal-int
  2159. pkg syscall (darwin-arm64), const IFT_SONETPATH = 50
  2160. pkg syscall (darwin-arm64), const IFT_SONETPATH ideal-int
  2161. pkg syscall (darwin-arm64), const IFT_SONETVT = 51
  2162. pkg syscall (darwin-arm64), const IFT_SONETVT ideal-int
  2163. pkg syscall (darwin-arm64), const IFT_STARLAN = 11
  2164. pkg syscall (darwin-arm64), const IFT_STARLAN ideal-int
  2165. pkg syscall (darwin-arm64), const IFT_STF = 57
  2166. pkg syscall (darwin-arm64), const IFT_STF ideal-int
  2167. pkg syscall (darwin-arm64), const IFT_T1 = 18
  2168. pkg syscall (darwin-arm64), const IFT_T1 ideal-int
  2169. pkg syscall (darwin-arm64), const IFT_ULTRA = 29
  2170. pkg syscall (darwin-arm64), const IFT_ULTRA ideal-int
  2171. pkg syscall (darwin-arm64), const IFT_V35 = 45
  2172. pkg syscall (darwin-arm64), const IFT_V35 ideal-int
  2173. pkg syscall (darwin-arm64), const IFT_X25 = 5
  2174. pkg syscall (darwin-arm64), const IFT_X25 ideal-int
  2175. pkg syscall (darwin-arm64), const IFT_X25DDN = 4
  2176. pkg syscall (darwin-arm64), const IFT_X25DDN ideal-int
  2177. pkg syscall (darwin-arm64), const IFT_X25PLE = 40
  2178. pkg syscall (darwin-arm64), const IFT_X25PLE ideal-int
  2179. pkg syscall (darwin-arm64), const IFT_XETHER = 26
  2180. pkg syscall (darwin-arm64), const IFT_XETHER ideal-int
  2181. pkg syscall (darwin-arm64), const IGNBRK = 1
  2182. pkg syscall (darwin-arm64), const IGNBRK ideal-int
  2183. pkg syscall (darwin-arm64), const IGNCR = 128
  2184. pkg syscall (darwin-arm64), const IGNCR ideal-int
  2185. pkg syscall (darwin-arm64), const IGNPAR = 4
  2186. pkg syscall (darwin-arm64), const IGNPAR ideal-int
  2187. pkg syscall (darwin-arm64), const IMAXBEL = 8192
  2188. pkg syscall (darwin-arm64), const IMAXBEL ideal-int
  2189. pkg syscall (darwin-arm64), const INLCR = 64
  2190. pkg syscall (darwin-arm64), const INLCR ideal-int
  2191. pkg syscall (darwin-arm64), const INPCK = 16
  2192. pkg syscall (darwin-arm64), const INPCK ideal-int
  2193. pkg syscall (darwin-arm64), const IN_CLASSA_HOST = 16777215
  2194. pkg syscall (darwin-arm64), const IN_CLASSA_HOST ideal-int
  2195. pkg syscall (darwin-arm64), const IN_CLASSA_MAX = 128
  2196. pkg syscall (darwin-arm64), const IN_CLASSA_MAX ideal-int
  2197. pkg syscall (darwin-arm64), const IN_CLASSA_NET = 4278190080
  2198. pkg syscall (darwin-arm64), const IN_CLASSA_NET ideal-int
  2199. pkg syscall (darwin-arm64), const IN_CLASSA_NSHIFT = 24
  2200. pkg syscall (darwin-arm64), const IN_CLASSA_NSHIFT ideal-int
  2201. pkg syscall (darwin-arm64), const IN_CLASSB_HOST = 65535
  2202. pkg syscall (darwin-arm64), const IN_CLASSB_HOST ideal-int
  2203. pkg syscall (darwin-arm64), const IN_CLASSB_MAX = 65536
  2204. pkg syscall (darwin-arm64), const IN_CLASSB_MAX ideal-int
  2205. pkg syscall (darwin-arm64), const IN_CLASSB_NET = 4294901760
  2206. pkg syscall (darwin-arm64), const IN_CLASSB_NET ideal-int
  2207. pkg syscall (darwin-arm64), const IN_CLASSB_NSHIFT = 16
  2208. pkg syscall (darwin-arm64), const IN_CLASSB_NSHIFT ideal-int
  2209. pkg syscall (darwin-arm64), const IN_CLASSC_HOST = 255
  2210. pkg syscall (darwin-arm64), const IN_CLASSC_HOST ideal-int
  2211. pkg syscall (darwin-arm64), const IN_CLASSC_NET = 4294967040
  2212. pkg syscall (darwin-arm64), const IN_CLASSC_NET ideal-int
  2213. pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT = 8
  2214. pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT ideal-int
  2215. pkg syscall (darwin-arm64), const IN_CLASSD_HOST = 268435455
  2216. pkg syscall (darwin-arm64), const IN_CLASSD_HOST ideal-int
  2217. pkg syscall (darwin-arm64), const IN_CLASSD_NET = 4026531840
  2218. pkg syscall (darwin-arm64), const IN_CLASSD_NET ideal-int
  2219. pkg syscall (darwin-arm64), const IN_CLASSD_NSHIFT = 28
  2220. pkg syscall (darwin-arm64), const IN_CLASSD_NSHIFT ideal-int
  2221. pkg syscall (darwin-arm64), const IN_LINKLOCALNETNUM = 2851995648
  2222. pkg syscall (darwin-arm64), const IN_LINKLOCALNETNUM ideal-int
  2223. pkg syscall (darwin-arm64), const IN_LOOPBACKNET = 127
  2224. pkg syscall (darwin-arm64), const IN_LOOPBACKNET ideal-int
  2225. pkg syscall (darwin-arm64), const IPPROTO_3PC = 34
  2226. pkg syscall (darwin-arm64), const IPPROTO_3PC ideal-int
  2227. pkg syscall (darwin-arm64), const IPPROTO_ADFS = 68
  2228. pkg syscall (darwin-arm64), const IPPROTO_ADFS ideal-int
  2229. pkg syscall (darwin-arm64), const IPPROTO_AH = 51
  2230. pkg syscall (darwin-arm64), const IPPROTO_AH ideal-int
  2231. pkg syscall (darwin-arm64), const IPPROTO_AHIP = 61
  2232. pkg syscall (darwin-arm64), const IPPROTO_AHIP ideal-int
  2233. pkg syscall (darwin-arm64), const IPPROTO_APES = 99
  2234. pkg syscall (darwin-arm64), const IPPROTO_APES ideal-int
  2235. pkg syscall (darwin-arm64), const IPPROTO_ARGUS = 13
  2236. pkg syscall (darwin-arm64), const IPPROTO_ARGUS ideal-int
  2237. pkg syscall (darwin-arm64), const IPPROTO_AX25 = 93
  2238. pkg syscall (darwin-arm64), const IPPROTO_AX25 ideal-int
  2239. pkg syscall (darwin-arm64), const IPPROTO_BHA = 49
  2240. pkg syscall (darwin-arm64), const IPPROTO_BHA ideal-int
  2241. pkg syscall (darwin-arm64), const IPPROTO_BLT = 30
  2242. pkg syscall (darwin-arm64), const IPPROTO_BLT ideal-int
  2243. pkg syscall (darwin-arm64), const IPPROTO_BRSATMON = 76
  2244. pkg syscall (darwin-arm64), const IPPROTO_BRSATMON ideal-int
  2245. pkg syscall (darwin-arm64), const IPPROTO_CFTP = 62
  2246. pkg syscall (darwin-arm64), const IPPROTO_CFTP ideal-int
  2247. pkg syscall (darwin-arm64), const IPPROTO_CHAOS = 16
  2248. pkg syscall (darwin-arm64), const IPPROTO_CHAOS ideal-int
  2249. pkg syscall (darwin-arm64), const IPPROTO_CMTP = 38
  2250. pkg syscall (darwin-arm64), const IPPROTO_CMTP ideal-int
  2251. pkg syscall (darwin-arm64), const IPPROTO_CPHB = 73
  2252. pkg syscall (darwin-arm64), const IPPROTO_CPHB ideal-int
  2253. pkg syscall (darwin-arm64), const IPPROTO_CPNX = 72
  2254. pkg syscall (darwin-arm64), const IPPROTO_CPNX ideal-int
  2255. pkg syscall (darwin-arm64), const IPPROTO_DDP = 37
  2256. pkg syscall (darwin-arm64), const IPPROTO_DDP ideal-int
  2257. pkg syscall (darwin-arm64), const IPPROTO_DGP = 86
  2258. pkg syscall (darwin-arm64), const IPPROTO_DGP ideal-int
  2259. pkg syscall (darwin-arm64), const IPPROTO_DIVERT = 254
  2260. pkg syscall (darwin-arm64), const IPPROTO_DIVERT ideal-int
  2261. pkg syscall (darwin-arm64), const IPPROTO_DONE = 257
  2262. pkg syscall (darwin-arm64), const IPPROTO_DONE ideal-int
  2263. pkg syscall (darwin-arm64), const IPPROTO_DSTOPTS = 60
  2264. pkg syscall (darwin-arm64), const IPPROTO_DSTOPTS ideal-int
  2265. pkg syscall (darwin-arm64), const IPPROTO_EGP = 8
  2266. pkg syscall (darwin-arm64), const IPPROTO_EGP ideal-int
  2267. pkg syscall (darwin-arm64), const IPPROTO_EMCON = 14
  2268. pkg syscall (darwin-arm64), const IPPROTO_EMCON ideal-int
  2269. pkg syscall (darwin-arm64), const IPPROTO_ENCAP = 98
  2270. pkg syscall (darwin-arm64), const IPPROTO_ENCAP ideal-int
  2271. pkg syscall (darwin-arm64), const IPPROTO_EON = 80
  2272. pkg syscall (darwin-arm64), const IPPROTO_EON ideal-int
  2273. pkg syscall (darwin-arm64), const IPPROTO_ESP = 50
  2274. pkg syscall (darwin-arm64), const IPPROTO_ESP ideal-int
  2275. pkg syscall (darwin-arm64), const IPPROTO_ETHERIP = 97
  2276. pkg syscall (darwin-arm64), const IPPROTO_ETHERIP ideal-int
  2277. pkg syscall (darwin-arm64), const IPPROTO_FRAGMENT = 44
  2278. pkg syscall (darwin-arm64), const IPPROTO_FRAGMENT ideal-int
  2279. pkg syscall (darwin-arm64), const IPPROTO_GGP = 3
  2280. pkg syscall (darwin-arm64), const IPPROTO_GGP ideal-int
  2281. pkg syscall (darwin-arm64), const IPPROTO_GMTP = 100
  2282. pkg syscall (darwin-arm64), const IPPROTO_GMTP ideal-int
  2283. pkg syscall (darwin-arm64), const IPPROTO_GRE = 47
  2284. pkg syscall (darwin-arm64), const IPPROTO_GRE ideal-int
  2285. pkg syscall (darwin-arm64), const IPPROTO_HELLO = 63
  2286. pkg syscall (darwin-arm64), const IPPROTO_HELLO ideal-int
  2287. pkg syscall (darwin-arm64), const IPPROTO_HMP = 20
  2288. pkg syscall (darwin-arm64), const IPPROTO_HMP ideal-int
  2289. pkg syscall (darwin-arm64), const IPPROTO_HOPOPTS = 0
  2290. pkg syscall (darwin-arm64), const IPPROTO_HOPOPTS ideal-int
  2291. pkg syscall (darwin-arm64), const IPPROTO_ICMP = 1
  2292. pkg syscall (darwin-arm64), const IPPROTO_ICMP ideal-int
  2293. pkg syscall (darwin-arm64), const IPPROTO_ICMPV6 = 58
  2294. pkg syscall (darwin-arm64), const IPPROTO_ICMPV6 ideal-int
  2295. pkg syscall (darwin-arm64), const IPPROTO_IDP = 22
  2296. pkg syscall (darwin-arm64), const IPPROTO_IDP ideal-int
  2297. pkg syscall (darwin-arm64), const IPPROTO_IDPR = 35
  2298. pkg syscall (darwin-arm64), const IPPROTO_IDPR ideal-int
  2299. pkg syscall (darwin-arm64), const IPPROTO_IDRP = 45
  2300. pkg syscall (darwin-arm64), const IPPROTO_IDRP ideal-int
  2301. pkg syscall (darwin-arm64), const IPPROTO_IGMP = 2
  2302. pkg syscall (darwin-arm64), const IPPROTO_IGMP ideal-int
  2303. pkg syscall (darwin-arm64), const IPPROTO_IGP = 85
  2304. pkg syscall (darwin-arm64), const IPPROTO_IGP ideal-int
  2305. pkg syscall (darwin-arm64), const IPPROTO_IGRP = 88
  2306. pkg syscall (darwin-arm64), const IPPROTO_IGRP ideal-int
  2307. pkg syscall (darwin-arm64), const IPPROTO_IL = 40
  2308. pkg syscall (darwin-arm64), const IPPROTO_IL ideal-int
  2309. pkg syscall (darwin-arm64), const IPPROTO_INLSP = 52
  2310. pkg syscall (darwin-arm64), const IPPROTO_INLSP ideal-int
  2311. pkg syscall (darwin-arm64), const IPPROTO_INP = 32
  2312. pkg syscall (darwin-arm64), const IPPROTO_INP ideal-int
  2313. pkg syscall (darwin-arm64), const IPPROTO_IPCOMP = 108
  2314. pkg syscall (darwin-arm64), const IPPROTO_IPCOMP ideal-int
  2315. pkg syscall (darwin-arm64), const IPPROTO_IPCV = 71
  2316. pkg syscall (darwin-arm64), const IPPROTO_IPCV ideal-int
  2317. pkg syscall (darwin-arm64), const IPPROTO_IPEIP = 94
  2318. pkg syscall (darwin-arm64), const IPPROTO_IPEIP ideal-int
  2319. pkg syscall (darwin-arm64), const IPPROTO_IPIP = 4
  2320. pkg syscall (darwin-arm64), const IPPROTO_IPIP ideal-int
  2321. pkg syscall (darwin-arm64), const IPPROTO_IPPC = 67
  2322. pkg syscall (darwin-arm64), const IPPROTO_IPPC ideal-int
  2323. pkg syscall (darwin-arm64), const IPPROTO_IPV4 = 4
  2324. pkg syscall (darwin-arm64), const IPPROTO_IPV4 ideal-int
  2325. pkg syscall (darwin-arm64), const IPPROTO_IRTP = 28
  2326. pkg syscall (darwin-arm64), const IPPROTO_IRTP ideal-int
  2327. pkg syscall (darwin-arm64), const IPPROTO_KRYPTOLAN = 65
  2328. pkg syscall (darwin-arm64), const IPPROTO_KRYPTOLAN ideal-int
  2329. pkg syscall (darwin-arm64), const IPPROTO_LARP = 91
  2330. pkg syscall (darwin-arm64), const IPPROTO_LARP ideal-int
  2331. pkg syscall (darwin-arm64), const IPPROTO_LEAF1 = 25
  2332. pkg syscall (darwin-arm64), const IPPROTO_LEAF1 ideal-int
  2333. pkg syscall (darwin-arm64), const IPPROTO_LEAF2 = 26
  2334. pkg syscall (darwin-arm64), const IPPROTO_LEAF2 ideal-int
  2335. pkg syscall (darwin-arm64), const IPPROTO_MAX = 256
  2336. pkg syscall (darwin-arm64), const IPPROTO_MAX ideal-int
  2337. pkg syscall (darwin-arm64), const IPPROTO_MAXID = 52
  2338. pkg syscall (darwin-arm64), const IPPROTO_MAXID ideal-int
  2339. pkg syscall (darwin-arm64), const IPPROTO_MEAS = 19
  2340. pkg syscall (darwin-arm64), const IPPROTO_MEAS ideal-int
  2341. pkg syscall (darwin-arm64), const IPPROTO_MHRP = 48
  2342. pkg syscall (darwin-arm64), const IPPROTO_MHRP ideal-int
  2343. pkg syscall (darwin-arm64), const IPPROTO_MICP = 95
  2344. pkg syscall (darwin-arm64), const IPPROTO_MICP ideal-int
  2345. pkg syscall (darwin-arm64), const IPPROTO_MTP = 92
  2346. pkg syscall (darwin-arm64), const IPPROTO_MTP ideal-int
  2347. pkg syscall (darwin-arm64), const IPPROTO_MUX = 18
  2348. pkg syscall (darwin-arm64), const IPPROTO_MUX ideal-int
  2349. pkg syscall (darwin-arm64), const IPPROTO_ND = 77
  2350. pkg syscall (darwin-arm64), const IPPROTO_ND ideal-int
  2351. pkg syscall (darwin-arm64), const IPPROTO_NHRP = 54
  2352. pkg syscall (darwin-arm64), const IPPROTO_NHRP ideal-int
  2353. pkg syscall (darwin-arm64), const IPPROTO_NONE = 59
  2354. pkg syscall (darwin-arm64), const IPPROTO_NONE ideal-int
  2355. pkg syscall (darwin-arm64), const IPPROTO_NSP = 31
  2356. pkg syscall (darwin-arm64), const IPPROTO_NSP ideal-int
  2357. pkg syscall (darwin-arm64), const IPPROTO_NVPII = 11
  2358. pkg syscall (darwin-arm64), const IPPROTO_NVPII ideal-int
  2359. pkg syscall (darwin-arm64), const IPPROTO_OSPFIGP = 89
  2360. pkg syscall (darwin-arm64), const IPPROTO_OSPFIGP ideal-int
  2361. pkg syscall (darwin-arm64), const IPPROTO_PGM = 113
  2362. pkg syscall (darwin-arm64), const IPPROTO_PGM ideal-int
  2363. pkg syscall (darwin-arm64), const IPPROTO_PIGP = 9
  2364. pkg syscall (darwin-arm64), const IPPROTO_PIGP ideal-int
  2365. pkg syscall (darwin-arm64), const IPPROTO_PIM = 103
  2366. pkg syscall (darwin-arm64), const IPPROTO_PIM ideal-int
  2367. pkg syscall (darwin-arm64), const IPPROTO_PRM = 21
  2368. pkg syscall (darwin-arm64), const IPPROTO_PRM ideal-int
  2369. pkg syscall (darwin-arm64), const IPPROTO_PUP = 12
  2370. pkg syscall (darwin-arm64), const IPPROTO_PUP ideal-int
  2371. pkg syscall (darwin-arm64), const IPPROTO_PVP = 75
  2372. pkg syscall (darwin-arm64), const IPPROTO_PVP ideal-int
  2373. pkg syscall (darwin-arm64), const IPPROTO_RAW = 255
  2374. pkg syscall (darwin-arm64), const IPPROTO_RAW ideal-int
  2375. pkg syscall (darwin-arm64), const IPPROTO_RCCMON = 10
  2376. pkg syscall (darwin-arm64), const IPPROTO_RCCMON ideal-int
  2377. pkg syscall (darwin-arm64), const IPPROTO_RDP = 27
  2378. pkg syscall (darwin-arm64), const IPPROTO_RDP ideal-int
  2379. pkg syscall (darwin-arm64), const IPPROTO_ROUTING = 43
  2380. pkg syscall (darwin-arm64), const IPPROTO_ROUTING ideal-int
  2381. pkg syscall (darwin-arm64), const IPPROTO_RSVP = 46
  2382. pkg syscall (darwin-arm64), const IPPROTO_RSVP ideal-int
  2383. pkg syscall (darwin-arm64), const IPPROTO_RVD = 66
  2384. pkg syscall (darwin-arm64), const IPPROTO_RVD ideal-int
  2385. pkg syscall (darwin-arm64), const IPPROTO_SATEXPAK = 64
  2386. pkg syscall (darwin-arm64), const IPPROTO_SATEXPAK ideal-int
  2387. pkg syscall (darwin-arm64), const IPPROTO_SATMON = 69
  2388. pkg syscall (darwin-arm64), const IPPROTO_SATMON ideal-int
  2389. pkg syscall (darwin-arm64), const IPPROTO_SCCSP = 96
  2390. pkg syscall (darwin-arm64), const IPPROTO_SCCSP ideal-int
  2391. pkg syscall (darwin-arm64), const IPPROTO_SCTP = 132
  2392. pkg syscall (darwin-arm64), const IPPROTO_SCTP ideal-int
  2393. pkg syscall (darwin-arm64), const IPPROTO_SDRP = 42
  2394. pkg syscall (darwin-arm64), const IPPROTO_SDRP ideal-int
  2395. pkg syscall (darwin-arm64), const IPPROTO_SEP = 33
  2396. pkg syscall (darwin-arm64), const IPPROTO_SEP ideal-int
  2397. pkg syscall (darwin-arm64), const IPPROTO_SRPC = 90
  2398. pkg syscall (darwin-arm64), const IPPROTO_SRPC ideal-int
  2399. pkg syscall (darwin-arm64), const IPPROTO_ST = 7
  2400. pkg syscall (darwin-arm64), const IPPROTO_ST ideal-int
  2401. pkg syscall (darwin-arm64), const IPPROTO_SVMTP = 82
  2402. pkg syscall (darwin-arm64), const IPPROTO_SVMTP ideal-int
  2403. pkg syscall (darwin-arm64), const IPPROTO_SWIPE = 53
  2404. pkg syscall (darwin-arm64), const IPPROTO_SWIPE ideal-int
  2405. pkg syscall (darwin-arm64), const IPPROTO_TCF = 87
  2406. pkg syscall (darwin-arm64), const IPPROTO_TCF ideal-int
  2407. pkg syscall (darwin-arm64), const IPPROTO_TP = 29
  2408. pkg syscall (darwin-arm64), const IPPROTO_TP ideal-int
  2409. pkg syscall (darwin-arm64), const IPPROTO_TPXX = 39
  2410. pkg syscall (darwin-arm64), const IPPROTO_TPXX ideal-int
  2411. pkg syscall (darwin-arm64), const IPPROTO_TRUNK1 = 23
  2412. pkg syscall (darwin-arm64), const IPPROTO_TRUNK1 ideal-int
  2413. pkg syscall (darwin-arm64), const IPPROTO_TRUNK2 = 24
  2414. pkg syscall (darwin-arm64), const IPPROTO_TRUNK2 ideal-int
  2415. pkg syscall (darwin-arm64), const IPPROTO_TTP = 84
  2416. pkg syscall (darwin-arm64), const IPPROTO_TTP ideal-int
  2417. pkg syscall (darwin-arm64), const IPPROTO_VINES = 83
  2418. pkg syscall (darwin-arm64), const IPPROTO_VINES ideal-int
  2419. pkg syscall (darwin-arm64), const IPPROTO_VISA = 70
  2420. pkg syscall (darwin-arm64), const IPPROTO_VISA ideal-int
  2421. pkg syscall (darwin-arm64), const IPPROTO_VMTP = 81
  2422. pkg syscall (darwin-arm64), const IPPROTO_VMTP ideal-int
  2423. pkg syscall (darwin-arm64), const IPPROTO_WBEXPAK = 79
  2424. pkg syscall (darwin-arm64), const IPPROTO_WBEXPAK ideal-int
  2425. pkg syscall (darwin-arm64), const IPPROTO_WBMON = 78
  2426. pkg syscall (darwin-arm64), const IPPROTO_WBMON ideal-int
  2427. pkg syscall (darwin-arm64), const IPPROTO_WSN = 74
  2428. pkg syscall (darwin-arm64), const IPPROTO_WSN ideal-int
  2429. pkg syscall (darwin-arm64), const IPPROTO_XNET = 15
  2430. pkg syscall (darwin-arm64), const IPPROTO_XNET ideal-int
  2431. pkg syscall (darwin-arm64), const IPPROTO_XTP = 36
  2432. pkg syscall (darwin-arm64), const IPPROTO_XTP ideal-int
  2433. pkg syscall (darwin-arm64), const IPV6_2292DSTOPTS = 23
  2434. pkg syscall (darwin-arm64), const IPV6_2292DSTOPTS ideal-int
  2435. pkg syscall (darwin-arm64), const IPV6_2292HOPLIMIT = 20
  2436. pkg syscall (darwin-arm64), const IPV6_2292HOPLIMIT ideal-int
  2437. pkg syscall (darwin-arm64), const IPV6_2292HOPOPTS = 22
  2438. pkg syscall (darwin-arm64), const IPV6_2292HOPOPTS ideal-int
  2439. pkg syscall (darwin-arm64), const IPV6_2292NEXTHOP = 21
  2440. pkg syscall (darwin-arm64), const IPV6_2292NEXTHOP ideal-int
  2441. pkg syscall (darwin-arm64), const IPV6_2292PKTINFO = 19
  2442. pkg syscall (darwin-arm64), const IPV6_2292PKTINFO ideal-int
  2443. pkg syscall (darwin-arm64), const IPV6_2292PKTOPTIONS = 25
  2444. pkg syscall (darwin-arm64), const IPV6_2292PKTOPTIONS ideal-int
  2445. pkg syscall (darwin-arm64), const IPV6_2292RTHDR = 24
  2446. pkg syscall (darwin-arm64), const IPV6_2292RTHDR ideal-int
  2447. pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY = 27
  2448. pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY ideal-int
  2449. pkg syscall (darwin-arm64), const IPV6_BOUND_IF = 125
  2450. pkg syscall (darwin-arm64), const IPV6_BOUND_IF ideal-int
  2451. pkg syscall (darwin-arm64), const IPV6_CHECKSUM = 26
  2452. pkg syscall (darwin-arm64), const IPV6_CHECKSUM ideal-int
  2453. pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1
  2454. pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  2455. pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_LOOP = 1
  2456. pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  2457. pkg syscall (darwin-arm64), const IPV6_DEFHLIM = 64
  2458. pkg syscall (darwin-arm64), const IPV6_DEFHLIM ideal-int
  2459. pkg syscall (darwin-arm64), const IPV6_FAITH = 29
  2460. pkg syscall (darwin-arm64), const IPV6_FAITH ideal-int
  2461. pkg syscall (darwin-arm64), const IPV6_FLOWINFO_MASK = 4294967055
  2462. pkg syscall (darwin-arm64), const IPV6_FLOWINFO_MASK ideal-int
  2463. pkg syscall (darwin-arm64), const IPV6_FLOWLABEL_MASK = 4294905600
  2464. pkg syscall (darwin-arm64), const IPV6_FLOWLABEL_MASK ideal-int
  2465. pkg syscall (darwin-arm64), const IPV6_FRAGTTL = 120
  2466. pkg syscall (darwin-arm64), const IPV6_FRAGTTL ideal-int
  2467. pkg syscall (darwin-arm64), const IPV6_FW_ADD = 30
  2468. pkg syscall (darwin-arm64), const IPV6_FW_ADD ideal-int
  2469. pkg syscall (darwin-arm64), const IPV6_FW_DEL = 31
  2470. pkg syscall (darwin-arm64), const IPV6_FW_DEL ideal-int
  2471. pkg syscall (darwin-arm64), const IPV6_FW_FLUSH = 32
  2472. pkg syscall (darwin-arm64), const IPV6_FW_FLUSH ideal-int
  2473. pkg syscall (darwin-arm64), const IPV6_FW_GET = 34
  2474. pkg syscall (darwin-arm64), const IPV6_FW_GET ideal-int
  2475. pkg syscall (darwin-arm64), const IPV6_FW_ZERO = 33
  2476. pkg syscall (darwin-arm64), const IPV6_FW_ZERO ideal-int
  2477. pkg syscall (darwin-arm64), const IPV6_HLIMDEC = 1
  2478. pkg syscall (darwin-arm64), const IPV6_HLIMDEC ideal-int
  2479. pkg syscall (darwin-arm64), const IPV6_IPSEC_POLICY = 28
  2480. pkg syscall (darwin-arm64), const IPV6_IPSEC_POLICY ideal-int
  2481. pkg syscall (darwin-arm64), const IPV6_JOIN_GROUP = 12
  2482. pkg syscall (darwin-arm64), const IPV6_LEAVE_GROUP = 13
  2483. pkg syscall (darwin-arm64), const IPV6_MAXHLIM = 255
  2484. pkg syscall (darwin-arm64), const IPV6_MAXHLIM ideal-int
  2485. pkg syscall (darwin-arm64), const IPV6_MAXOPTHDR = 2048
  2486. pkg syscall (darwin-arm64), const IPV6_MAXOPTHDR ideal-int
  2487. pkg syscall (darwin-arm64), const IPV6_MAXPACKET = 65535
  2488. pkg syscall (darwin-arm64), const IPV6_MAXPACKET ideal-int
  2489. pkg syscall (darwin-arm64), const IPV6_MAX_GROUP_SRC_FILTER = 512
  2490. pkg syscall (darwin-arm64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
  2491. pkg syscall (darwin-arm64), const IPV6_MAX_MEMBERSHIPS = 4095
  2492. pkg syscall (darwin-arm64), const IPV6_MAX_MEMBERSHIPS ideal-int
  2493. pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER = 128
  2494. pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
  2495. pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS = 31
  2496. pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS ideal-int
  2497. pkg syscall (darwin-arm64), const IPV6_MMTU = 1280
  2498. pkg syscall (darwin-arm64), const IPV6_MMTU ideal-int
  2499. pkg syscall (darwin-arm64), const IPV6_MULTICAST_HOPS = 10
  2500. pkg syscall (darwin-arm64), const IPV6_MULTICAST_IF = 9
  2501. pkg syscall (darwin-arm64), const IPV6_MULTICAST_LOOP = 11
  2502. pkg syscall (darwin-arm64), const IPV6_PORTRANGE = 14
  2503. pkg syscall (darwin-arm64), const IPV6_PORTRANGE ideal-int
  2504. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_DEFAULT = 0
  2505. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_DEFAULT ideal-int
  2506. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_HIGH = 1
  2507. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_HIGH ideal-int
  2508. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_LOW = 2
  2509. pkg syscall (darwin-arm64), const IPV6_PORTRANGE_LOW ideal-int
  2510. pkg syscall (darwin-arm64), const IPV6_RECVTCLASS = 35
  2511. pkg syscall (darwin-arm64), const IPV6_RECVTCLASS ideal-int
  2512. pkg syscall (darwin-arm64), const IPV6_RTHDR_LOOSE = 0
  2513. pkg syscall (darwin-arm64), const IPV6_RTHDR_LOOSE ideal-int
  2514. pkg syscall (darwin-arm64), const IPV6_RTHDR_STRICT = 1
  2515. pkg syscall (darwin-arm64), const IPV6_RTHDR_STRICT ideal-int
  2516. pkg syscall (darwin-arm64), const IPV6_RTHDR_TYPE_0 = 0
  2517. pkg syscall (darwin-arm64), const IPV6_RTHDR_TYPE_0 ideal-int
  2518. pkg syscall (darwin-arm64), const IPV6_SOCKOPT_RESERVED1 = 3
  2519. pkg syscall (darwin-arm64), const IPV6_SOCKOPT_RESERVED1 ideal-int
  2520. pkg syscall (darwin-arm64), const IPV6_TCLASS = 36
  2521. pkg syscall (darwin-arm64), const IPV6_TCLASS ideal-int
  2522. pkg syscall (darwin-arm64), const IPV6_UNICAST_HOPS = 4
  2523. pkg syscall (darwin-arm64), const IPV6_V6ONLY = 27
  2524. pkg syscall (darwin-arm64), const IPV6_VERSION = 96
  2525. pkg syscall (darwin-arm64), const IPV6_VERSION ideal-int
  2526. pkg syscall (darwin-arm64), const IPV6_VERSION_MASK = 240
  2527. pkg syscall (darwin-arm64), const IPV6_VERSION_MASK ideal-int
  2528. pkg syscall (darwin-arm64), const IP_ADD_MEMBERSHIP = 12
  2529. pkg syscall (darwin-arm64), const IP_ADD_SOURCE_MEMBERSHIP = 70
  2530. pkg syscall (darwin-arm64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
  2531. pkg syscall (darwin-arm64), const IP_BLOCK_SOURCE = 72
  2532. pkg syscall (darwin-arm64), const IP_BLOCK_SOURCE ideal-int
  2533. pkg syscall (darwin-arm64), const IP_BOUND_IF = 25
  2534. pkg syscall (darwin-arm64), const IP_BOUND_IF ideal-int
  2535. pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_LOOP = 1
  2536. pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  2537. pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_TTL = 1
  2538. pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_TTL ideal-int
  2539. pkg syscall (darwin-arm64), const IP_DF = 16384
  2540. pkg syscall (darwin-arm64), const IP_DF ideal-int
  2541. pkg syscall (darwin-arm64), const IP_DROP_MEMBERSHIP = 13
  2542. pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP = 71
  2543. pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
  2544. pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE = 60
  2545. pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE ideal-int
  2546. pkg syscall (darwin-arm64), const IP_DUMMYNET_DEL = 61
  2547. pkg syscall (darwin-arm64), const IP_DUMMYNET_DEL ideal-int
  2548. pkg syscall (darwin-arm64), const IP_DUMMYNET_FLUSH = 62
  2549. pkg syscall (darwin-arm64), const IP_DUMMYNET_FLUSH ideal-int
  2550. pkg syscall (darwin-arm64), const IP_DUMMYNET_GET = 64
  2551. pkg syscall (darwin-arm64), const IP_DUMMYNET_GET ideal-int
  2552. pkg syscall (darwin-arm64), const IP_FAITH = 22
  2553. pkg syscall (darwin-arm64), const IP_FAITH ideal-int
  2554. pkg syscall (darwin-arm64), const IP_FW_ADD = 40
  2555. pkg syscall (darwin-arm64), const IP_FW_ADD ideal-int
  2556. pkg syscall (darwin-arm64), const IP_FW_DEL = 41
  2557. pkg syscall (darwin-arm64), const IP_FW_DEL ideal-int
  2558. pkg syscall (darwin-arm64), const IP_FW_FLUSH = 42
  2559. pkg syscall (darwin-arm64), const IP_FW_FLUSH ideal-int
  2560. pkg syscall (darwin-arm64), const IP_FW_GET = 44
  2561. pkg syscall (darwin-arm64), const IP_FW_GET ideal-int
  2562. pkg syscall (darwin-arm64), const IP_FW_RESETLOG = 45
  2563. pkg syscall (darwin-arm64), const IP_FW_RESETLOG ideal-int
  2564. pkg syscall (darwin-arm64), const IP_FW_ZERO = 43
  2565. pkg syscall (darwin-arm64), const IP_FW_ZERO ideal-int
  2566. pkg syscall (darwin-arm64), const IP_HDRINCL = 2
  2567. pkg syscall (darwin-arm64), const IP_HDRINCL ideal-int
  2568. pkg syscall (darwin-arm64), const IP_IPSEC_POLICY = 21
  2569. pkg syscall (darwin-arm64), const IP_IPSEC_POLICY ideal-int
  2570. pkg syscall (darwin-arm64), const IP_MAXPACKET = 65535
  2571. pkg syscall (darwin-arm64), const IP_MAXPACKET ideal-int
  2572. pkg syscall (darwin-arm64), const IP_MAX_GROUP_SRC_FILTER = 512
  2573. pkg syscall (darwin-arm64), const IP_MAX_GROUP_SRC_FILTER ideal-int
  2574. pkg syscall (darwin-arm64), const IP_MAX_MEMBERSHIPS = 4095
  2575. pkg syscall (darwin-arm64), const IP_MAX_MEMBERSHIPS ideal-int
  2576. pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128
  2577. pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int
  2578. pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER = 128
  2579. pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int
  2580. pkg syscall (darwin-arm64), const IP_MF = 8192
  2581. pkg syscall (darwin-arm64), const IP_MF ideal-int
  2582. pkg syscall (darwin-arm64), const IP_MIN_MEMBERSHIPS = 31
  2583. pkg syscall (darwin-arm64), const IP_MIN_MEMBERSHIPS ideal-int
  2584. pkg syscall (darwin-arm64), const IP_MSFILTER = 74
  2585. pkg syscall (darwin-arm64), const IP_MSFILTER ideal-int
  2586. pkg syscall (darwin-arm64), const IP_MSS = 576
  2587. pkg syscall (darwin-arm64), const IP_MSS ideal-int
  2588. pkg syscall (darwin-arm64), const IP_MULTICAST_IF = 9
  2589. pkg syscall (darwin-arm64), const IP_MULTICAST_IFINDEX = 66
  2590. pkg syscall (darwin-arm64), const IP_MULTICAST_IFINDEX ideal-int
  2591. pkg syscall (darwin-arm64), const IP_MULTICAST_LOOP = 11
  2592. pkg syscall (darwin-arm64), const IP_MULTICAST_TTL = 10
  2593. pkg syscall (darwin-arm64), const IP_MULTICAST_VIF = 14
  2594. pkg syscall (darwin-arm64), const IP_MULTICAST_VIF ideal-int
  2595. pkg syscall (darwin-arm64), const IP_NAT__XXX = 55
  2596. pkg syscall (darwin-arm64), const IP_NAT__XXX ideal-int
  2597. pkg syscall (darwin-arm64), const IP_OFFMASK = 8191
  2598. pkg syscall (darwin-arm64), const IP_OFFMASK ideal-int
  2599. pkg syscall (darwin-arm64), const IP_OLD_FW_ADD = 50
  2600. pkg syscall (darwin-arm64), const IP_OLD_FW_ADD ideal-int
  2601. pkg syscall (darwin-arm64), const IP_OLD_FW_DEL = 51
  2602. pkg syscall (darwin-arm64), const IP_OLD_FW_DEL ideal-int
  2603. pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH = 52
  2604. pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH ideal-int
  2605. pkg syscall (darwin-arm64), const IP_OLD_FW_GET = 54
  2606. pkg syscall (darwin-arm64), const IP_OLD_FW_GET ideal-int
  2607. pkg syscall (darwin-arm64), const IP_OLD_FW_RESETLOG = 56
  2608. pkg syscall (darwin-arm64), const IP_OLD_FW_RESETLOG ideal-int
  2609. pkg syscall (darwin-arm64), const IP_OLD_FW_ZERO = 53
  2610. pkg syscall (darwin-arm64), const IP_OLD_FW_ZERO ideal-int
  2611. pkg syscall (darwin-arm64), const IP_OPTIONS = 1
  2612. pkg syscall (darwin-arm64), const IP_OPTIONS ideal-int
  2613. pkg syscall (darwin-arm64), const IP_PKTINFO = 26
  2614. pkg syscall (darwin-arm64), const IP_PKTINFO ideal-int
  2615. pkg syscall (darwin-arm64), const IP_PORTRANGE = 19
  2616. pkg syscall (darwin-arm64), const IP_PORTRANGE ideal-int
  2617. pkg syscall (darwin-arm64), const IP_PORTRANGE_DEFAULT = 0
  2618. pkg syscall (darwin-arm64), const IP_PORTRANGE_DEFAULT ideal-int
  2619. pkg syscall (darwin-arm64), const IP_PORTRANGE_HIGH = 1
  2620. pkg syscall (darwin-arm64), const IP_PORTRANGE_HIGH ideal-int
  2621. pkg syscall (darwin-arm64), const IP_PORTRANGE_LOW = 2
  2622. pkg syscall (darwin-arm64), const IP_PORTRANGE_LOW ideal-int
  2623. pkg syscall (darwin-arm64), const IP_RECVDSTADDR = 7
  2624. pkg syscall (darwin-arm64), const IP_RECVDSTADDR ideal-int
  2625. pkg syscall (darwin-arm64), const IP_RECVIF = 20
  2626. pkg syscall (darwin-arm64), const IP_RECVIF ideal-int
  2627. pkg syscall (darwin-arm64), const IP_RECVOPTS = 5
  2628. pkg syscall (darwin-arm64), const IP_RECVOPTS ideal-int
  2629. pkg syscall (darwin-arm64), const IP_RECVPKTINFO = 26
  2630. pkg syscall (darwin-arm64), const IP_RECVPKTINFO ideal-int
  2631. pkg syscall (darwin-arm64), const IP_RECVRETOPTS = 6
  2632. pkg syscall (darwin-arm64), const IP_RECVRETOPTS ideal-int
  2633. pkg syscall (darwin-arm64), const IP_RECVTTL = 24
  2634. pkg syscall (darwin-arm64), const IP_RECVTTL ideal-int
  2635. pkg syscall (darwin-arm64), const IP_RETOPTS = 8
  2636. pkg syscall (darwin-arm64), const IP_RETOPTS ideal-int
  2637. pkg syscall (darwin-arm64), const IP_RF = 32768
  2638. pkg syscall (darwin-arm64), const IP_RF ideal-int
  2639. pkg syscall (darwin-arm64), const IP_RSVP_OFF = 16
  2640. pkg syscall (darwin-arm64), const IP_RSVP_OFF ideal-int
  2641. pkg syscall (darwin-arm64), const IP_RSVP_ON = 15
  2642. pkg syscall (darwin-arm64), const IP_RSVP_ON ideal-int
  2643. pkg syscall (darwin-arm64), const IP_RSVP_VIF_OFF = 18
  2644. pkg syscall (darwin-arm64), const IP_RSVP_VIF_OFF ideal-int
  2645. pkg syscall (darwin-arm64), const IP_RSVP_VIF_ON = 17
  2646. pkg syscall (darwin-arm64), const IP_RSVP_VIF_ON ideal-int
  2647. pkg syscall (darwin-arm64), const IP_STRIPHDR = 23
  2648. pkg syscall (darwin-arm64), const IP_STRIPHDR ideal-int
  2649. pkg syscall (darwin-arm64), const IP_TOS = 3
  2650. pkg syscall (darwin-arm64), const IP_TRAFFIC_MGT_BACKGROUND = 65
  2651. pkg syscall (darwin-arm64), const IP_TRAFFIC_MGT_BACKGROUND ideal-int
  2652. pkg syscall (darwin-arm64), const IP_TTL = 4
  2653. pkg syscall (darwin-arm64), const IP_UNBLOCK_SOURCE = 73
  2654. pkg syscall (darwin-arm64), const IP_UNBLOCK_SOURCE ideal-int
  2655. pkg syscall (darwin-arm64), const ISIG = 128
  2656. pkg syscall (darwin-arm64), const ISIG ideal-int
  2657. pkg syscall (darwin-arm64), const ISTRIP = 32
  2658. pkg syscall (darwin-arm64), const ISTRIP ideal-int
  2659. pkg syscall (darwin-arm64), const IUTF8 = 16384
  2660. pkg syscall (darwin-arm64), const IUTF8 ideal-int
  2661. pkg syscall (darwin-arm64), const IXANY = 2048
  2662. pkg syscall (darwin-arm64), const IXANY ideal-int
  2663. pkg syscall (darwin-arm64), const IXOFF = 1024
  2664. pkg syscall (darwin-arm64), const IXOFF ideal-int
  2665. pkg syscall (darwin-arm64), const IXON = 512
  2666. pkg syscall (darwin-arm64), const IXON ideal-int
  2667. pkg syscall (darwin-arm64), const LOCK_EX = 2
  2668. pkg syscall (darwin-arm64), const LOCK_EX ideal-int
  2669. pkg syscall (darwin-arm64), const LOCK_NB = 4
  2670. pkg syscall (darwin-arm64), const LOCK_NB ideal-int
  2671. pkg syscall (darwin-arm64), const LOCK_SH = 1
  2672. pkg syscall (darwin-arm64), const LOCK_SH ideal-int
  2673. pkg syscall (darwin-arm64), const LOCK_UN = 8
  2674. pkg syscall (darwin-arm64), const LOCK_UN ideal-int
  2675. pkg syscall (darwin-arm64), const MADV_CAN_REUSE = 9
  2676. pkg syscall (darwin-arm64), const MADV_CAN_REUSE ideal-int
  2677. pkg syscall (darwin-arm64), const MADV_DONTNEED = 4
  2678. pkg syscall (darwin-arm64), const MADV_DONTNEED ideal-int
  2679. pkg syscall (darwin-arm64), const MADV_FREE = 5
  2680. pkg syscall (darwin-arm64), const MADV_FREE ideal-int
  2681. pkg syscall (darwin-arm64), const MADV_FREE_REUSABLE = 7
  2682. pkg syscall (darwin-arm64), const MADV_FREE_REUSABLE ideal-int
  2683. pkg syscall (darwin-arm64), const MADV_FREE_REUSE = 8
  2684. pkg syscall (darwin-arm64), const MADV_FREE_REUSE ideal-int
  2685. pkg syscall (darwin-arm64), const MADV_NORMAL = 0
  2686. pkg syscall (darwin-arm64), const MADV_NORMAL ideal-int
  2687. pkg syscall (darwin-arm64), const MADV_RANDOM = 1
  2688. pkg syscall (darwin-arm64), const MADV_RANDOM ideal-int
  2689. pkg syscall (darwin-arm64), const MADV_SEQUENTIAL = 2
  2690. pkg syscall (darwin-arm64), const MADV_SEQUENTIAL ideal-int
  2691. pkg syscall (darwin-arm64), const MADV_WILLNEED = 3
  2692. pkg syscall (darwin-arm64), const MADV_WILLNEED ideal-int
  2693. pkg syscall (darwin-arm64), const MADV_ZERO_WIRED_PAGES = 6
  2694. pkg syscall (darwin-arm64), const MADV_ZERO_WIRED_PAGES ideal-int
  2695. pkg syscall (darwin-arm64), const MAP_ANON = 4096
  2696. pkg syscall (darwin-arm64), const MAP_ANON ideal-int
  2697. pkg syscall (darwin-arm64), const MAP_COPY = 2
  2698. pkg syscall (darwin-arm64), const MAP_COPY ideal-int
  2699. pkg syscall (darwin-arm64), const MAP_FILE = 0
  2700. pkg syscall (darwin-arm64), const MAP_FILE ideal-int
  2701. pkg syscall (darwin-arm64), const MAP_FIXED = 16
  2702. pkg syscall (darwin-arm64), const MAP_FIXED ideal-int
  2703. pkg syscall (darwin-arm64), const MAP_HASSEMAPHORE = 512
  2704. pkg syscall (darwin-arm64), const MAP_HASSEMAPHORE ideal-int
  2705. pkg syscall (darwin-arm64), const MAP_JIT = 2048
  2706. pkg syscall (darwin-arm64), const MAP_JIT ideal-int
  2707. pkg syscall (darwin-arm64), const MAP_NOCACHE = 1024
  2708. pkg syscall (darwin-arm64), const MAP_NOCACHE ideal-int
  2709. pkg syscall (darwin-arm64), const MAP_NOEXTEND = 256
  2710. pkg syscall (darwin-arm64), const MAP_NOEXTEND ideal-int
  2711. pkg syscall (darwin-arm64), const MAP_NORESERVE = 64
  2712. pkg syscall (darwin-arm64), const MAP_NORESERVE ideal-int
  2713. pkg syscall (darwin-arm64), const MAP_PRIVATE = 2
  2714. pkg syscall (darwin-arm64), const MAP_PRIVATE ideal-int
  2715. pkg syscall (darwin-arm64), const MAP_RENAME = 32
  2716. pkg syscall (darwin-arm64), const MAP_RENAME ideal-int
  2717. pkg syscall (darwin-arm64), const MAP_RESERVED0080 = 128
  2718. pkg syscall (darwin-arm64), const MAP_RESERVED0080 ideal-int
  2719. pkg syscall (darwin-arm64), const MAP_SHARED = 1
  2720. pkg syscall (darwin-arm64), const MAP_SHARED ideal-int
  2721. pkg syscall (darwin-arm64), const MCL_CURRENT = 1
  2722. pkg syscall (darwin-arm64), const MCL_CURRENT ideal-int
  2723. pkg syscall (darwin-arm64), const MCL_FUTURE = 2
  2724. pkg syscall (darwin-arm64), const MCL_FUTURE ideal-int
  2725. pkg syscall (darwin-arm64), const MSG_CTRUNC = 32
  2726. pkg syscall (darwin-arm64), const MSG_CTRUNC ideal-int
  2727. pkg syscall (darwin-arm64), const MSG_DONTROUTE = 4
  2728. pkg syscall (darwin-arm64), const MSG_DONTROUTE ideal-int
  2729. pkg syscall (darwin-arm64), const MSG_DONTWAIT = 128
  2730. pkg syscall (darwin-arm64), const MSG_DONTWAIT ideal-int
  2731. pkg syscall (darwin-arm64), const MSG_EOF = 256
  2732. pkg syscall (darwin-arm64), const MSG_EOF ideal-int
  2733. pkg syscall (darwin-arm64), const MSG_EOR = 8
  2734. pkg syscall (darwin-arm64), const MSG_EOR ideal-int
  2735. pkg syscall (darwin-arm64), const MSG_FLUSH = 1024
  2736. pkg syscall (darwin-arm64), const MSG_FLUSH ideal-int
  2737. pkg syscall (darwin-arm64), const MSG_HAVEMORE = 8192
  2738. pkg syscall (darwin-arm64), const MSG_HAVEMORE ideal-int
  2739. pkg syscall (darwin-arm64), const MSG_HOLD = 2048
  2740. pkg syscall (darwin-arm64), const MSG_HOLD ideal-int
  2741. pkg syscall (darwin-arm64), const MSG_NEEDSA = 65536
  2742. pkg syscall (darwin-arm64), const MSG_NEEDSA ideal-int
  2743. pkg syscall (darwin-arm64), const MSG_OOB = 1
  2744. pkg syscall (darwin-arm64), const MSG_OOB ideal-int
  2745. pkg syscall (darwin-arm64), const MSG_PEEK = 2
  2746. pkg syscall (darwin-arm64), const MSG_PEEK ideal-int
  2747. pkg syscall (darwin-arm64), const MSG_RCVMORE = 16384
  2748. pkg syscall (darwin-arm64), const MSG_RCVMORE ideal-int
  2749. pkg syscall (darwin-arm64), const MSG_SEND = 4096
  2750. pkg syscall (darwin-arm64), const MSG_SEND ideal-int
  2751. pkg syscall (darwin-arm64), const MSG_TRUNC = 16
  2752. pkg syscall (darwin-arm64), const MSG_TRUNC ideal-int
  2753. pkg syscall (darwin-arm64), const MSG_WAITALL = 64
  2754. pkg syscall (darwin-arm64), const MSG_WAITALL ideal-int
  2755. pkg syscall (darwin-arm64), const MSG_WAITSTREAM = 512
  2756. pkg syscall (darwin-arm64), const MSG_WAITSTREAM ideal-int
  2757. pkg syscall (darwin-arm64), const MS_ASYNC = 1
  2758. pkg syscall (darwin-arm64), const MS_ASYNC ideal-int
  2759. pkg syscall (darwin-arm64), const MS_DEACTIVATE = 8
  2760. pkg syscall (darwin-arm64), const MS_DEACTIVATE ideal-int
  2761. pkg syscall (darwin-arm64), const MS_INVALIDATE = 2
  2762. pkg syscall (darwin-arm64), const MS_INVALIDATE ideal-int
  2763. pkg syscall (darwin-arm64), const MS_KILLPAGES = 4
  2764. pkg syscall (darwin-arm64), const MS_KILLPAGES ideal-int
  2765. pkg syscall (darwin-arm64), const MS_SYNC = 16
  2766. pkg syscall (darwin-arm64), const MS_SYNC ideal-int
  2767. pkg syscall (darwin-arm64), const NAME_MAX = 255
  2768. pkg syscall (darwin-arm64), const NAME_MAX ideal-int
  2769. pkg syscall (darwin-arm64), const NET_RT_DUMP = 1
  2770. pkg syscall (darwin-arm64), const NET_RT_DUMP ideal-int
  2771. pkg syscall (darwin-arm64), const NET_RT_DUMP2 = 7
  2772. pkg syscall (darwin-arm64), const NET_RT_DUMP2 ideal-int
  2773. pkg syscall (darwin-arm64), const NET_RT_FLAGS = 2
  2774. pkg syscall (darwin-arm64), const NET_RT_FLAGS ideal-int
  2775. pkg syscall (darwin-arm64), const NET_RT_IFLIST = 3
  2776. pkg syscall (darwin-arm64), const NET_RT_IFLIST ideal-int
  2777. pkg syscall (darwin-arm64), const NET_RT_IFLIST2 = 6
  2778. pkg syscall (darwin-arm64), const NET_RT_IFLIST2 ideal-int
  2779. pkg syscall (darwin-arm64), const NET_RT_MAXID = 10
  2780. pkg syscall (darwin-arm64), const NET_RT_MAXID ideal-int
  2781. pkg syscall (darwin-arm64), const NET_RT_STAT = 4
  2782. pkg syscall (darwin-arm64), const NET_RT_STAT ideal-int
  2783. pkg syscall (darwin-arm64), const NET_RT_TRASH = 5
  2784. pkg syscall (darwin-arm64), const NET_RT_TRASH ideal-int
  2785. pkg syscall (darwin-arm64), const NOFLSH = 2147483648
  2786. pkg syscall (darwin-arm64), const NOFLSH ideal-int
  2787. pkg syscall (darwin-arm64), const NOTE_ABSOLUTE = 8
  2788. pkg syscall (darwin-arm64), const NOTE_ABSOLUTE ideal-int
  2789. pkg syscall (darwin-arm64), const NOTE_ATTRIB = 8
  2790. pkg syscall (darwin-arm64), const NOTE_ATTRIB ideal-int
  2791. pkg syscall (darwin-arm64), const NOTE_BACKGROUND = 64
  2792. pkg syscall (darwin-arm64), const NOTE_BACKGROUND ideal-int
  2793. pkg syscall (darwin-arm64), const NOTE_CHILD = 4
  2794. pkg syscall (darwin-arm64), const NOTE_CHILD ideal-int
  2795. pkg syscall (darwin-arm64), const NOTE_CRITICAL = 32
  2796. pkg syscall (darwin-arm64), const NOTE_CRITICAL ideal-int
  2797. pkg syscall (darwin-arm64), const NOTE_DELETE = 1
  2798. pkg syscall (darwin-arm64), const NOTE_DELETE ideal-int
  2799. pkg syscall (darwin-arm64), const NOTE_EXEC = 536870912
  2800. pkg syscall (darwin-arm64), const NOTE_EXEC ideal-int
  2801. pkg syscall (darwin-arm64), const NOTE_EXIT = 2147483648
  2802. pkg syscall (darwin-arm64), const NOTE_EXIT ideal-int
  2803. pkg syscall (darwin-arm64), const NOTE_EXITSTATUS = 67108864
  2804. pkg syscall (darwin-arm64), const NOTE_EXITSTATUS ideal-int
  2805. pkg syscall (darwin-arm64), const NOTE_EXIT_CSERROR = 262144
  2806. pkg syscall (darwin-arm64), const NOTE_EXIT_CSERROR ideal-int
  2807. pkg syscall (darwin-arm64), const NOTE_EXIT_DECRYPTFAIL = 65536
  2808. pkg syscall (darwin-arm64), const NOTE_EXIT_DECRYPTFAIL ideal-int
  2809. pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL = 33554432
  2810. pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL ideal-int
  2811. pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK = 458752
  2812. pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK ideal-int
  2813. pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY = 131072
  2814. pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY ideal-int
  2815. pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED = 524288
  2816. pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED ideal-int
  2817. pkg syscall (darwin-arm64), const NOTE_EXTEND = 4
  2818. pkg syscall (darwin-arm64), const NOTE_EXTEND ideal-int
  2819. pkg syscall (darwin-arm64), const NOTE_FFAND = 1073741824
  2820. pkg syscall (darwin-arm64), const NOTE_FFAND ideal-int
  2821. pkg syscall (darwin-arm64), const NOTE_FFCOPY = 3221225472
  2822. pkg syscall (darwin-arm64), const NOTE_FFCOPY ideal-int
  2823. pkg syscall (darwin-arm64), const NOTE_FFCTRLMASK = 3221225472
  2824. pkg syscall (darwin-arm64), const NOTE_FFCTRLMASK ideal-int
  2825. pkg syscall (darwin-arm64), const NOTE_FFLAGSMASK = 16777215
  2826. pkg syscall (darwin-arm64), const NOTE_FFLAGSMASK ideal-int
  2827. pkg syscall (darwin-arm64), const NOTE_FFNOP = 0
  2828. pkg syscall (darwin-arm64), const NOTE_FFNOP ideal-int
  2829. pkg syscall (darwin-arm64), const NOTE_FFOR = 2147483648
  2830. pkg syscall (darwin-arm64), const NOTE_FFOR ideal-int
  2831. pkg syscall (darwin-arm64), const NOTE_FORK = 1073741824
  2832. pkg syscall (darwin-arm64), const NOTE_FORK ideal-int
  2833. pkg syscall (darwin-arm64), const NOTE_LEEWAY = 16
  2834. pkg syscall (darwin-arm64), const NOTE_LEEWAY ideal-int
  2835. pkg syscall (darwin-arm64), const NOTE_LINK = 16
  2836. pkg syscall (darwin-arm64), const NOTE_LINK ideal-int
  2837. pkg syscall (darwin-arm64), const NOTE_LOWAT = 1
  2838. pkg syscall (darwin-arm64), const NOTE_LOWAT ideal-int
  2839. pkg syscall (darwin-arm64), const NOTE_NONE = 128
  2840. pkg syscall (darwin-arm64), const NOTE_NONE ideal-int
  2841. pkg syscall (darwin-arm64), const NOTE_NSECONDS = 4
  2842. pkg syscall (darwin-arm64), const NOTE_NSECONDS ideal-int
  2843. pkg syscall (darwin-arm64), const NOTE_PCTRLMASK = -1048576
  2844. pkg syscall (darwin-arm64), const NOTE_PCTRLMASK ideal-int
  2845. pkg syscall (darwin-arm64), const NOTE_PDATAMASK = 1048575
  2846. pkg syscall (darwin-arm64), const NOTE_PDATAMASK ideal-int
  2847. pkg syscall (darwin-arm64), const NOTE_REAP = 268435456
  2848. pkg syscall (darwin-arm64), const NOTE_REAP ideal-int
  2849. pkg syscall (darwin-arm64), const NOTE_RENAME = 32
  2850. pkg syscall (darwin-arm64), const NOTE_RENAME ideal-int
  2851. pkg syscall (darwin-arm64), const NOTE_REVOKE = 64
  2852. pkg syscall (darwin-arm64), const NOTE_REVOKE ideal-int
  2853. pkg syscall (darwin-arm64), const NOTE_SECONDS = 1
  2854. pkg syscall (darwin-arm64), const NOTE_SECONDS ideal-int
  2855. pkg syscall (darwin-arm64), const NOTE_SIGNAL = 134217728
  2856. pkg syscall (darwin-arm64), const NOTE_SIGNAL ideal-int
  2857. pkg syscall (darwin-arm64), const NOTE_TRACK = 1
  2858. pkg syscall (darwin-arm64), const NOTE_TRACK ideal-int
  2859. pkg syscall (darwin-arm64), const NOTE_TRACKERR = 2
  2860. pkg syscall (darwin-arm64), const NOTE_TRACKERR ideal-int
  2861. pkg syscall (darwin-arm64), const NOTE_TRIGGER = 16777216
  2862. pkg syscall (darwin-arm64), const NOTE_TRIGGER ideal-int
  2863. pkg syscall (darwin-arm64), const NOTE_USECONDS = 2
  2864. pkg syscall (darwin-arm64), const NOTE_USECONDS ideal-int
  2865. pkg syscall (darwin-arm64), const NOTE_VM_ERROR = 268435456
  2866. pkg syscall (darwin-arm64), const NOTE_VM_ERROR ideal-int
  2867. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE = 2147483648
  2868. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE ideal-int
  2869. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912
  2870. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int
  2871. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_TERMINATE = 1073741824
  2872. pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_TERMINATE ideal-int
  2873. pkg syscall (darwin-arm64), const NOTE_WRITE = 2
  2874. pkg syscall (darwin-arm64), const NOTE_WRITE ideal-int
  2875. pkg syscall (darwin-arm64), const OCRNL = 16
  2876. pkg syscall (darwin-arm64), const OCRNL ideal-int
  2877. pkg syscall (darwin-arm64), const OFDEL = 131072
  2878. pkg syscall (darwin-arm64), const OFDEL ideal-int
  2879. pkg syscall (darwin-arm64), const OFILL = 128
  2880. pkg syscall (darwin-arm64), const OFILL ideal-int
  2881. pkg syscall (darwin-arm64), const ONLCR = 2
  2882. pkg syscall (darwin-arm64), const ONLCR ideal-int
  2883. pkg syscall (darwin-arm64), const ONLRET = 64
  2884. pkg syscall (darwin-arm64), const ONLRET ideal-int
  2885. pkg syscall (darwin-arm64), const ONOCR = 32
  2886. pkg syscall (darwin-arm64), const ONOCR ideal-int
  2887. pkg syscall (darwin-arm64), const ONOEOT = 8
  2888. pkg syscall (darwin-arm64), const ONOEOT ideal-int
  2889. pkg syscall (darwin-arm64), const OPOST = 1
  2890. pkg syscall (darwin-arm64), const OPOST ideal-int
  2891. pkg syscall (darwin-arm64), const O_ACCMODE = 3
  2892. pkg syscall (darwin-arm64), const O_ACCMODE ideal-int
  2893. pkg syscall (darwin-arm64), const O_ALERT = 536870912
  2894. pkg syscall (darwin-arm64), const O_ALERT ideal-int
  2895. pkg syscall (darwin-arm64), const O_APPEND = 8
  2896. pkg syscall (darwin-arm64), const O_ASYNC = 64
  2897. pkg syscall (darwin-arm64), const O_CLOEXEC = 16777216
  2898. pkg syscall (darwin-arm64), const O_CREAT = 512
  2899. pkg syscall (darwin-arm64), const O_DIRECTORY = 1048576
  2900. pkg syscall (darwin-arm64), const O_DIRECTORY ideal-int
  2901. pkg syscall (darwin-arm64), const O_DP_GETRAWENCRYPTED = 1
  2902. pkg syscall (darwin-arm64), const O_DP_GETRAWENCRYPTED ideal-int
  2903. pkg syscall (darwin-arm64), const O_DSYNC = 4194304
  2904. pkg syscall (darwin-arm64), const O_DSYNC ideal-int
  2905. pkg syscall (darwin-arm64), const O_EVTONLY = 32768
  2906. pkg syscall (darwin-arm64), const O_EVTONLY ideal-int
  2907. pkg syscall (darwin-arm64), const O_EXCL = 2048
  2908. pkg syscall (darwin-arm64), const O_EXLOCK = 32
  2909. pkg syscall (darwin-arm64), const O_EXLOCK ideal-int
  2910. pkg syscall (darwin-arm64), const O_FSYNC = 128
  2911. pkg syscall (darwin-arm64), const O_FSYNC ideal-int
  2912. pkg syscall (darwin-arm64), const O_NDELAY = 4
  2913. pkg syscall (darwin-arm64), const O_NDELAY ideal-int
  2914. pkg syscall (darwin-arm64), const O_NOCTTY = 131072
  2915. pkg syscall (darwin-arm64), const O_NOFOLLOW = 256
  2916. pkg syscall (darwin-arm64), const O_NOFOLLOW ideal-int
  2917. pkg syscall (darwin-arm64), const O_NONBLOCK = 4
  2918. pkg syscall (darwin-arm64), const O_POPUP = 2147483648
  2919. pkg syscall (darwin-arm64), const O_POPUP ideal-int
  2920. pkg syscall (darwin-arm64), const O_SHLOCK = 16
  2921. pkg syscall (darwin-arm64), const O_SHLOCK ideal-int
  2922. pkg syscall (darwin-arm64), const O_SYMLINK = 2097152
  2923. pkg syscall (darwin-arm64), const O_SYMLINK ideal-int
  2924. pkg syscall (darwin-arm64), const O_SYNC = 128
  2925. pkg syscall (darwin-arm64), const O_TRUNC = 1024
  2926. pkg syscall (darwin-arm64), const PARENB = 4096
  2927. pkg syscall (darwin-arm64), const PARENB ideal-int
  2928. pkg syscall (darwin-arm64), const PARMRK = 8
  2929. pkg syscall (darwin-arm64), const PARMRK ideal-int
  2930. pkg syscall (darwin-arm64), const PARODD = 8192
  2931. pkg syscall (darwin-arm64), const PARODD ideal-int
  2932. pkg syscall (darwin-arm64), const PENDIN = 536870912
  2933. pkg syscall (darwin-arm64), const PENDIN ideal-int
  2934. pkg syscall (darwin-arm64), const PRIO_PGRP = 1
  2935. pkg syscall (darwin-arm64), const PRIO_PGRP ideal-int
  2936. pkg syscall (darwin-arm64), const PRIO_PROCESS = 0
  2937. pkg syscall (darwin-arm64), const PRIO_PROCESS ideal-int
  2938. pkg syscall (darwin-arm64), const PRIO_USER = 2
  2939. pkg syscall (darwin-arm64), const PRIO_USER ideal-int
  2940. pkg syscall (darwin-arm64), const PROT_EXEC = 4
  2941. pkg syscall (darwin-arm64), const PROT_EXEC ideal-int
  2942. pkg syscall (darwin-arm64), const PROT_NONE = 0
  2943. pkg syscall (darwin-arm64), const PROT_NONE ideal-int
  2944. pkg syscall (darwin-arm64), const PROT_READ = 1
  2945. pkg syscall (darwin-arm64), const PROT_READ ideal-int
  2946. pkg syscall (darwin-arm64), const PROT_WRITE = 2
  2947. pkg syscall (darwin-arm64), const PROT_WRITE ideal-int
  2948. pkg syscall (darwin-arm64), const PTRACE_CONT = 7
  2949. pkg syscall (darwin-arm64), const PTRACE_CONT ideal-int
  2950. pkg syscall (darwin-arm64), const PTRACE_KILL = 8
  2951. pkg syscall (darwin-arm64), const PTRACE_KILL ideal-int
  2952. pkg syscall (darwin-arm64), const PTRACE_TRACEME = 0
  2953. pkg syscall (darwin-arm64), const PTRACE_TRACEME ideal-int
  2954. pkg syscall (darwin-arm64), const PT_ATTACH = 10
  2955. pkg syscall (darwin-arm64), const PT_ATTACH ideal-int
  2956. pkg syscall (darwin-arm64), const PT_ATTACHEXC = 14
  2957. pkg syscall (darwin-arm64), const PT_ATTACHEXC ideal-int
  2958. pkg syscall (darwin-arm64), const PT_CONTINUE = 7
  2959. pkg syscall (darwin-arm64), const PT_CONTINUE ideal-int
  2960. pkg syscall (darwin-arm64), const PT_DENY_ATTACH = 31
  2961. pkg syscall (darwin-arm64), const PT_DENY_ATTACH ideal-int
  2962. pkg syscall (darwin-arm64), const PT_DETACH = 11
  2963. pkg syscall (darwin-arm64), const PT_DETACH ideal-int
  2964. pkg syscall (darwin-arm64), const PT_FIRSTMACH = 32
  2965. pkg syscall (darwin-arm64), const PT_FIRSTMACH ideal-int
  2966. pkg syscall (darwin-arm64), const PT_FORCEQUOTA = 30
  2967. pkg syscall (darwin-arm64), const PT_FORCEQUOTA ideal-int
  2968. pkg syscall (darwin-arm64), const PT_KILL = 8
  2969. pkg syscall (darwin-arm64), const PT_KILL ideal-int
  2970. pkg syscall (darwin-arm64), const PT_READ_D = 2
  2971. pkg syscall (darwin-arm64), const PT_READ_D ideal-int
  2972. pkg syscall (darwin-arm64), const PT_READ_I = 1
  2973. pkg syscall (darwin-arm64), const PT_READ_I ideal-int
  2974. pkg syscall (darwin-arm64), const PT_READ_U = 3
  2975. pkg syscall (darwin-arm64), const PT_READ_U ideal-int
  2976. pkg syscall (darwin-arm64), const PT_SIGEXC = 12
  2977. pkg syscall (darwin-arm64), const PT_SIGEXC ideal-int
  2978. pkg syscall (darwin-arm64), const PT_STEP = 9
  2979. pkg syscall (darwin-arm64), const PT_STEP ideal-int
  2980. pkg syscall (darwin-arm64), const PT_THUPDATE = 13
  2981. pkg syscall (darwin-arm64), const PT_THUPDATE ideal-int
  2982. pkg syscall (darwin-arm64), const PT_TRACE_ME = 0
  2983. pkg syscall (darwin-arm64), const PT_TRACE_ME ideal-int
  2984. pkg syscall (darwin-arm64), const PT_WRITE_D = 5
  2985. pkg syscall (darwin-arm64), const PT_WRITE_D ideal-int
  2986. pkg syscall (darwin-arm64), const PT_WRITE_I = 4
  2987. pkg syscall (darwin-arm64), const PT_WRITE_I ideal-int
  2988. pkg syscall (darwin-arm64), const PT_WRITE_U = 6
  2989. pkg syscall (darwin-arm64), const PT_WRITE_U ideal-int
  2990. pkg syscall (darwin-arm64), const RLIMIT_AS = 5
  2991. pkg syscall (darwin-arm64), const RLIMIT_AS ideal-int
  2992. pkg syscall (darwin-arm64), const RLIMIT_CORE = 4
  2993. pkg syscall (darwin-arm64), const RLIMIT_CORE ideal-int
  2994. pkg syscall (darwin-arm64), const RLIMIT_CPU = 0
  2995. pkg syscall (darwin-arm64), const RLIMIT_CPU ideal-int
  2996. pkg syscall (darwin-arm64), const RLIMIT_CPU_USAGE_MONITOR = 2
  2997. pkg syscall (darwin-arm64), const RLIMIT_CPU_USAGE_MONITOR ideal-int
  2998. pkg syscall (darwin-arm64), const RLIMIT_DATA = 2
  2999. pkg syscall (darwin-arm64), const RLIMIT_DATA ideal-int
  3000. pkg syscall (darwin-arm64), const RLIMIT_FSIZE = 1
  3001. pkg syscall (darwin-arm64), const RLIMIT_FSIZE ideal-int
  3002. pkg syscall (darwin-arm64), const RLIMIT_NOFILE = 8
  3003. pkg syscall (darwin-arm64), const RLIMIT_NOFILE ideal-int
  3004. pkg syscall (darwin-arm64), const RLIMIT_STACK = 3
  3005. pkg syscall (darwin-arm64), const RLIMIT_STACK ideal-int
  3006. pkg syscall (darwin-arm64), const RLIM_INFINITY = 9223372036854775807
  3007. pkg syscall (darwin-arm64), const RLIM_INFINITY ideal-int
  3008. pkg syscall (darwin-arm64), const RTAX_AUTHOR = 6
  3009. pkg syscall (darwin-arm64), const RTAX_AUTHOR ideal-int
  3010. pkg syscall (darwin-arm64), const RTAX_BRD = 7
  3011. pkg syscall (darwin-arm64), const RTAX_BRD ideal-int
  3012. pkg syscall (darwin-arm64), const RTAX_DST = 0
  3013. pkg syscall (darwin-arm64), const RTAX_DST ideal-int
  3014. pkg syscall (darwin-arm64), const RTAX_GATEWAY = 1
  3015. pkg syscall (darwin-arm64), const RTAX_GATEWAY ideal-int
  3016. pkg syscall (darwin-arm64), const RTAX_GENMASK = 3
  3017. pkg syscall (darwin-arm64), const RTAX_GENMASK ideal-int
  3018. pkg syscall (darwin-arm64), const RTAX_IFA = 5
  3019. pkg syscall (darwin-arm64), const RTAX_IFA ideal-int
  3020. pkg syscall (darwin-arm64), const RTAX_IFP = 4
  3021. pkg syscall (darwin-arm64), const RTAX_IFP ideal-int
  3022. pkg syscall (darwin-arm64), const RTAX_MAX = 8
  3023. pkg syscall (darwin-arm64), const RTAX_MAX ideal-int
  3024. pkg syscall (darwin-arm64), const RTAX_NETMASK = 2
  3025. pkg syscall (darwin-arm64), const RTAX_NETMASK ideal-int
  3026. pkg syscall (darwin-arm64), const RTA_AUTHOR = 64
  3027. pkg syscall (darwin-arm64), const RTA_AUTHOR ideal-int
  3028. pkg syscall (darwin-arm64), const RTA_BRD = 128
  3029. pkg syscall (darwin-arm64), const RTA_BRD ideal-int
  3030. pkg syscall (darwin-arm64), const RTA_DST = 1
  3031. pkg syscall (darwin-arm64), const RTA_DST ideal-int
  3032. pkg syscall (darwin-arm64), const RTA_GATEWAY = 2
  3033. pkg syscall (darwin-arm64), const RTA_GATEWAY ideal-int
  3034. pkg syscall (darwin-arm64), const RTA_GENMASK = 8
  3035. pkg syscall (darwin-arm64), const RTA_GENMASK ideal-int
  3036. pkg syscall (darwin-arm64), const RTA_IFA = 32
  3037. pkg syscall (darwin-arm64), const RTA_IFA ideal-int
  3038. pkg syscall (darwin-arm64), const RTA_IFP = 16
  3039. pkg syscall (darwin-arm64), const RTA_IFP ideal-int
  3040. pkg syscall (darwin-arm64), const RTA_NETMASK = 4
  3041. pkg syscall (darwin-arm64), const RTA_NETMASK ideal-int
  3042. pkg syscall (darwin-arm64), const RTF_BLACKHOLE = 4096
  3043. pkg syscall (darwin-arm64), const RTF_BLACKHOLE ideal-int
  3044. pkg syscall (darwin-arm64), const RTF_BROADCAST = 4194304
  3045. pkg syscall (darwin-arm64), const RTF_BROADCAST ideal-int
  3046. pkg syscall (darwin-arm64), const RTF_CLONING = 256
  3047. pkg syscall (darwin-arm64), const RTF_CLONING ideal-int
  3048. pkg syscall (darwin-arm64), const RTF_CONDEMNED = 33554432
  3049. pkg syscall (darwin-arm64), const RTF_CONDEMNED ideal-int
  3050. pkg syscall (darwin-arm64), const RTF_DELCLONE = 128
  3051. pkg syscall (darwin-arm64), const RTF_DELCLONE ideal-int
  3052. pkg syscall (darwin-arm64), const RTF_DONE = 64
  3053. pkg syscall (darwin-arm64), const RTF_DONE ideal-int
  3054. pkg syscall (darwin-arm64), const RTF_DYNAMIC = 16
  3055. pkg syscall (darwin-arm64), const RTF_DYNAMIC ideal-int
  3056. pkg syscall (darwin-arm64), const RTF_GATEWAY = 2
  3057. pkg syscall (darwin-arm64), const RTF_GATEWAY ideal-int
  3058. pkg syscall (darwin-arm64), const RTF_HOST = 4
  3059. pkg syscall (darwin-arm64), const RTF_HOST ideal-int
  3060. pkg syscall (darwin-arm64), const RTF_IFREF = 67108864
  3061. pkg syscall (darwin-arm64), const RTF_IFREF ideal-int
  3062. pkg syscall (darwin-arm64), const RTF_IFSCOPE = 16777216
  3063. pkg syscall (darwin-arm64), const RTF_IFSCOPE ideal-int
  3064. pkg syscall (darwin-arm64), const RTF_LLINFO = 1024
  3065. pkg syscall (darwin-arm64), const RTF_LLINFO ideal-int
  3066. pkg syscall (darwin-arm64), const RTF_LOCAL = 2097152
  3067. pkg syscall (darwin-arm64), const RTF_LOCAL ideal-int
  3068. pkg syscall (darwin-arm64), const RTF_MODIFIED = 32
  3069. pkg syscall (darwin-arm64), const RTF_MODIFIED ideal-int
  3070. pkg syscall (darwin-arm64), const RTF_MULTICAST = 8388608
  3071. pkg syscall (darwin-arm64), const RTF_MULTICAST ideal-int
  3072. pkg syscall (darwin-arm64), const RTF_PINNED = 1048576
  3073. pkg syscall (darwin-arm64), const RTF_PINNED ideal-int
  3074. pkg syscall (darwin-arm64), const RTF_PRCLONING = 65536
  3075. pkg syscall (darwin-arm64), const RTF_PRCLONING ideal-int
  3076. pkg syscall (darwin-arm64), const RTF_PROTO1 = 32768
  3077. pkg syscall (darwin-arm64), const RTF_PROTO1 ideal-int
  3078. pkg syscall (darwin-arm64), const RTF_PROTO2 = 16384
  3079. pkg syscall (darwin-arm64), const RTF_PROTO2 ideal-int
  3080. pkg syscall (darwin-arm64), const RTF_PROTO3 = 262144
  3081. pkg syscall (darwin-arm64), const RTF_PROTO3 ideal-int
  3082. pkg syscall (darwin-arm64), const RTF_PROXY = 134217728
  3083. pkg syscall (darwin-arm64), const RTF_PROXY ideal-int
  3084. pkg syscall (darwin-arm64), const RTF_REJECT = 8
  3085. pkg syscall (darwin-arm64), const RTF_REJECT ideal-int
  3086. pkg syscall (darwin-arm64), const RTF_ROUTER = 268435456
  3087. pkg syscall (darwin-arm64), const RTF_ROUTER ideal-int
  3088. pkg syscall (darwin-arm64), const RTF_STATIC = 2048
  3089. pkg syscall (darwin-arm64), const RTF_STATIC ideal-int
  3090. pkg syscall (darwin-arm64), const RTF_UP = 1
  3091. pkg syscall (darwin-arm64), const RTF_UP ideal-int
  3092. pkg syscall (darwin-arm64), const RTF_WASCLONED = 131072
  3093. pkg syscall (darwin-arm64), const RTF_WASCLONED ideal-int
  3094. pkg syscall (darwin-arm64), const RTF_XRESOLVE = 512
  3095. pkg syscall (darwin-arm64), const RTF_XRESOLVE ideal-int
  3096. pkg syscall (darwin-arm64), const RTM_ADD = 1
  3097. pkg syscall (darwin-arm64), const RTM_ADD ideal-int
  3098. pkg syscall (darwin-arm64), const RTM_CHANGE = 3
  3099. pkg syscall (darwin-arm64), const RTM_CHANGE ideal-int
  3100. pkg syscall (darwin-arm64), const RTM_DELADDR = 13
  3101. pkg syscall (darwin-arm64), const RTM_DELADDR ideal-int
  3102. pkg syscall (darwin-arm64), const RTM_DELETE = 2
  3103. pkg syscall (darwin-arm64), const RTM_DELETE ideal-int
  3104. pkg syscall (darwin-arm64), const RTM_DELMADDR = 16
  3105. pkg syscall (darwin-arm64), const RTM_DELMADDR ideal-int
  3106. pkg syscall (darwin-arm64), const RTM_GET = 4
  3107. pkg syscall (darwin-arm64), const RTM_GET ideal-int
  3108. pkg syscall (darwin-arm64), const RTM_GET2 = 20
  3109. pkg syscall (darwin-arm64), const RTM_GET2 ideal-int
  3110. pkg syscall (darwin-arm64), const RTM_IFINFO = 14
  3111. pkg syscall (darwin-arm64), const RTM_IFINFO ideal-int
  3112. pkg syscall (darwin-arm64), const RTM_IFINFO2 = 18
  3113. pkg syscall (darwin-arm64), const RTM_IFINFO2 ideal-int
  3114. pkg syscall (darwin-arm64), const RTM_LOCK = 8
  3115. pkg syscall (darwin-arm64), const RTM_LOCK ideal-int
  3116. pkg syscall (darwin-arm64), const RTM_LOSING = 5
  3117. pkg syscall (darwin-arm64), const RTM_LOSING ideal-int
  3118. pkg syscall (darwin-arm64), const RTM_MISS = 7
  3119. pkg syscall (darwin-arm64), const RTM_MISS ideal-int
  3120. pkg syscall (darwin-arm64), const RTM_NEWADDR = 12
  3121. pkg syscall (darwin-arm64), const RTM_NEWADDR ideal-int
  3122. pkg syscall (darwin-arm64), const RTM_NEWMADDR = 15
  3123. pkg syscall (darwin-arm64), const RTM_NEWMADDR ideal-int
  3124. pkg syscall (darwin-arm64), const RTM_NEWMADDR2 = 19
  3125. pkg syscall (darwin-arm64), const RTM_NEWMADDR2 ideal-int
  3126. pkg syscall (darwin-arm64), const RTM_OLDADD = 9
  3127. pkg syscall (darwin-arm64), const RTM_OLDADD ideal-int
  3128. pkg syscall (darwin-arm64), const RTM_OLDDEL = 10
  3129. pkg syscall (darwin-arm64), const RTM_OLDDEL ideal-int
  3130. pkg syscall (darwin-arm64), const RTM_REDIRECT = 6
  3131. pkg syscall (darwin-arm64), const RTM_REDIRECT ideal-int
  3132. pkg syscall (darwin-arm64), const RTM_RESOLVE = 11
  3133. pkg syscall (darwin-arm64), const RTM_RESOLVE ideal-int
  3134. pkg syscall (darwin-arm64), const RTM_RTTUNIT = 1000000
  3135. pkg syscall (darwin-arm64), const RTM_RTTUNIT ideal-int
  3136. pkg syscall (darwin-arm64), const RTM_VERSION = 5
  3137. pkg syscall (darwin-arm64), const RTM_VERSION ideal-int
  3138. pkg syscall (darwin-arm64), const RTV_EXPIRE = 4
  3139. pkg syscall (darwin-arm64), const RTV_EXPIRE ideal-int
  3140. pkg syscall (darwin-arm64), const RTV_HOPCOUNT = 2
  3141. pkg syscall (darwin-arm64), const RTV_HOPCOUNT ideal-int
  3142. pkg syscall (darwin-arm64), const RTV_MTU = 1
  3143. pkg syscall (darwin-arm64), const RTV_MTU ideal-int
  3144. pkg syscall (darwin-arm64), const RTV_RPIPE = 8
  3145. pkg syscall (darwin-arm64), const RTV_RPIPE ideal-int
  3146. pkg syscall (darwin-arm64), const RTV_RTT = 64
  3147. pkg syscall (darwin-arm64), const RTV_RTT ideal-int
  3148. pkg syscall (darwin-arm64), const RTV_RTTVAR = 128
  3149. pkg syscall (darwin-arm64), const RTV_RTTVAR ideal-int
  3150. pkg syscall (darwin-arm64), const RTV_SPIPE = 16
  3151. pkg syscall (darwin-arm64), const RTV_SPIPE ideal-int
  3152. pkg syscall (darwin-arm64), const RTV_SSTHRESH = 32
  3153. pkg syscall (darwin-arm64), const RTV_SSTHRESH ideal-int
  3154. pkg syscall (darwin-arm64), const RUSAGE_CHILDREN = -1
  3155. pkg syscall (darwin-arm64), const RUSAGE_CHILDREN ideal-int
  3156. pkg syscall (darwin-arm64), const RUSAGE_SELF = 0
  3157. pkg syscall (darwin-arm64), const RUSAGE_SELF ideal-int
  3158. pkg syscall (darwin-arm64), const SCM_CREDS = 3
  3159. pkg syscall (darwin-arm64), const SCM_CREDS ideal-int
  3160. pkg syscall (darwin-arm64), const SCM_RIGHTS = 1
  3161. pkg syscall (darwin-arm64), const SCM_RIGHTS ideal-int
  3162. pkg syscall (darwin-arm64), const SCM_TIMESTAMP = 2
  3163. pkg syscall (darwin-arm64), const SCM_TIMESTAMP ideal-int
  3164. pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC = 4
  3165. pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC ideal-int
  3166. pkg syscall (darwin-arm64), const SIGBUS = 10
  3167. pkg syscall (darwin-arm64), const SIGCHLD = 20
  3168. pkg syscall (darwin-arm64), const SIGCHLD Signal
  3169. pkg syscall (darwin-arm64), const SIGCONT = 19
  3170. pkg syscall (darwin-arm64), const SIGCONT Signal
  3171. pkg syscall (darwin-arm64), const SIGEMT = 7
  3172. pkg syscall (darwin-arm64), const SIGEMT Signal
  3173. pkg syscall (darwin-arm64), const SIGINFO = 29
  3174. pkg syscall (darwin-arm64), const SIGINFO Signal
  3175. pkg syscall (darwin-arm64), const SIGIO = 23
  3176. pkg syscall (darwin-arm64), const SIGIO Signal
  3177. pkg syscall (darwin-arm64), const SIGIOT = 6
  3178. pkg syscall (darwin-arm64), const SIGIOT Signal
  3179. pkg syscall (darwin-arm64), const SIGPROF = 27
  3180. pkg syscall (darwin-arm64), const SIGPROF Signal
  3181. pkg syscall (darwin-arm64), const SIGSTOP = 17
  3182. pkg syscall (darwin-arm64), const SIGSTOP Signal
  3183. pkg syscall (darwin-arm64), const SIGSYS = 12
  3184. pkg syscall (darwin-arm64), const SIGSYS Signal
  3185. pkg syscall (darwin-arm64), const SIGTSTP = 18
  3186. pkg syscall (darwin-arm64), const SIGTSTP Signal
  3187. pkg syscall (darwin-arm64), const SIGTTIN = 21
  3188. pkg syscall (darwin-arm64), const SIGTTIN Signal
  3189. pkg syscall (darwin-arm64), const SIGTTOU = 22
  3190. pkg syscall (darwin-arm64), const SIGTTOU Signal
  3191. pkg syscall (darwin-arm64), const SIGURG = 16
  3192. pkg syscall (darwin-arm64), const SIGURG Signal
  3193. pkg syscall (darwin-arm64), const SIGUSR1 = 30
  3194. pkg syscall (darwin-arm64), const SIGUSR1 Signal
  3195. pkg syscall (darwin-arm64), const SIGUSR2 = 31
  3196. pkg syscall (darwin-arm64), const SIGUSR2 Signal
  3197. pkg syscall (darwin-arm64), const SIGVTALRM = 26
  3198. pkg syscall (darwin-arm64), const SIGVTALRM Signal
  3199. pkg syscall (darwin-arm64), const SIGWINCH = 28
  3200. pkg syscall (darwin-arm64), const SIGWINCH Signal
  3201. pkg syscall (darwin-arm64), const SIGXCPU = 24
  3202. pkg syscall (darwin-arm64), const SIGXCPU Signal
  3203. pkg syscall (darwin-arm64), const SIGXFSZ = 25
  3204. pkg syscall (darwin-arm64), const SIGXFSZ Signal
  3205. pkg syscall (darwin-arm64), const SIOCADDMULTI = 2149607729
  3206. pkg syscall (darwin-arm64), const SIOCADDMULTI ideal-int
  3207. pkg syscall (darwin-arm64), const SIOCAIFADDR = 2151704858
  3208. pkg syscall (darwin-arm64), const SIOCAIFADDR ideal-int
  3209. pkg syscall (darwin-arm64), const SIOCARPIPLL = 3223349544
  3210. pkg syscall (darwin-arm64), const SIOCARPIPLL ideal-int
  3211. pkg syscall (darwin-arm64), const SIOCATMARK = 1074033415
  3212. pkg syscall (darwin-arm64), const SIOCATMARK ideal-int
  3213. pkg syscall (darwin-arm64), const SIOCAUTOADDR = 3223349542
  3214. pkg syscall (darwin-arm64), const SIOCAUTOADDR ideal-int
  3215. pkg syscall (darwin-arm64), const SIOCAUTONETMASK = 2149607719
  3216. pkg syscall (darwin-arm64), const SIOCAUTONETMASK ideal-int
  3217. pkg syscall (darwin-arm64), const SIOCDELMULTI = 2149607730
  3218. pkg syscall (darwin-arm64), const SIOCDELMULTI ideal-int
  3219. pkg syscall (darwin-arm64), const SIOCDIFADDR = 2149607705
  3220. pkg syscall (darwin-arm64), const SIOCDIFADDR ideal-int
  3221. pkg syscall (darwin-arm64), const SIOCDIFPHYADDR = 2149607745
  3222. pkg syscall (darwin-arm64), const SIOCDIFPHYADDR ideal-int
  3223. pkg syscall (darwin-arm64), const SIOCGDRVSPEC = 3223873915
  3224. pkg syscall (darwin-arm64), const SIOCGDRVSPEC ideal-int
  3225. pkg syscall (darwin-arm64), const SIOCGETVLAN = 3223349631
  3226. pkg syscall (darwin-arm64), const SIOCGETVLAN ideal-int
  3227. pkg syscall (darwin-arm64), const SIOCGHIWAT = 1074033409
  3228. pkg syscall (darwin-arm64), const SIOCGHIWAT ideal-int
  3229. pkg syscall (darwin-arm64), const SIOCGIFADDR = 3223349537
  3230. pkg syscall (darwin-arm64), const SIOCGIFADDR ideal-int
  3231. pkg syscall (darwin-arm64), const SIOCGIFALTMTU = 3223349576
  3232. pkg syscall (darwin-arm64), const SIOCGIFALTMTU ideal-int
  3233. pkg syscall (darwin-arm64), const SIOCGIFASYNCMAP = 3223349628
  3234. pkg syscall (darwin-arm64), const SIOCGIFASYNCMAP ideal-int
  3235. pkg syscall (darwin-arm64), const SIOCGIFBOND = 3223349575
  3236. pkg syscall (darwin-arm64), const SIOCGIFBOND ideal-int
  3237. pkg syscall (darwin-arm64), const SIOCGIFBRDADDR = 3223349539
  3238. pkg syscall (darwin-arm64), const SIOCGIFBRDADDR ideal-int
  3239. pkg syscall (darwin-arm64), const SIOCGIFCAP = 3223349595
  3240. pkg syscall (darwin-arm64), const SIOCGIFCAP ideal-int
  3241. pkg syscall (darwin-arm64), const SIOCGIFCONF = 3222038820
  3242. pkg syscall (darwin-arm64), const SIOCGIFCONF ideal-int
  3243. pkg syscall (darwin-arm64), const SIOCGIFDEVMTU = 3223349572
  3244. pkg syscall (darwin-arm64), const SIOCGIFDEVMTU ideal-int
  3245. pkg syscall (darwin-arm64), const SIOCGIFDSTADDR = 3223349538
  3246. pkg syscall (darwin-arm64), const SIOCGIFDSTADDR ideal-int
  3247. pkg syscall (darwin-arm64), const SIOCGIFFLAGS = 3223349521
  3248. pkg syscall (darwin-arm64), const SIOCGIFFLAGS ideal-int
  3249. pkg syscall (darwin-arm64), const SIOCGIFGENERIC = 3223349562
  3250. pkg syscall (darwin-arm64), const SIOCGIFGENERIC ideal-int
  3251. pkg syscall (darwin-arm64), const SIOCGIFKPI = 3223349639
  3252. pkg syscall (darwin-arm64), const SIOCGIFKPI ideal-int
  3253. pkg syscall (darwin-arm64), const SIOCGIFMAC = 3223349634
  3254. pkg syscall (darwin-arm64), const SIOCGIFMAC ideal-int
  3255. pkg syscall (darwin-arm64), const SIOCGIFMEDIA = 3224135992
  3256. pkg syscall (darwin-arm64), const SIOCGIFMEDIA ideal-int
  3257. pkg syscall (darwin-arm64), const SIOCGIFMETRIC = 3223349527
  3258. pkg syscall (darwin-arm64), const SIOCGIFMETRIC ideal-int
  3259. pkg syscall (darwin-arm64), const SIOCGIFMTU = 3223349555
  3260. pkg syscall (darwin-arm64), const SIOCGIFMTU ideal-int
  3261. pkg syscall (darwin-arm64), const SIOCGIFNETMASK = 3223349541
  3262. pkg syscall (darwin-arm64), const SIOCGIFNETMASK ideal-int
  3263. pkg syscall (darwin-arm64), const SIOCGIFPDSTADDR = 3223349568
  3264. pkg syscall (darwin-arm64), const SIOCGIFPDSTADDR ideal-int
  3265. pkg syscall (darwin-arm64), const SIOCGIFPHYS = 3223349557
  3266. pkg syscall (darwin-arm64), const SIOCGIFPHYS ideal-int
  3267. pkg syscall (darwin-arm64), const SIOCGIFPSRCADDR = 3223349567
  3268. pkg syscall (darwin-arm64), const SIOCGIFPSRCADDR ideal-int
  3269. pkg syscall (darwin-arm64), const SIOCGIFSTATUS = 3274795325
  3270. pkg syscall (darwin-arm64), const SIOCGIFSTATUS ideal-int
  3271. pkg syscall (darwin-arm64), const SIOCGIFVLAN = 3223349631
  3272. pkg syscall (darwin-arm64), const SIOCGIFVLAN ideal-int
  3273. pkg syscall (darwin-arm64), const SIOCGIFWAKEFLAGS = 3223349640
  3274. pkg syscall (darwin-arm64), const SIOCGIFWAKEFLAGS ideal-int
  3275. pkg syscall (darwin-arm64), const SIOCGLOWAT = 1074033411
  3276. pkg syscall (darwin-arm64), const SIOCGLOWAT ideal-int
  3277. pkg syscall (darwin-arm64), const SIOCGPGRP = 1074033417
  3278. pkg syscall (darwin-arm64), const SIOCGPGRP ideal-int
  3279. pkg syscall (darwin-arm64), const SIOCIFCREATE = 3223349624
  3280. pkg syscall (darwin-arm64), const SIOCIFCREATE ideal-int
  3281. pkg syscall (darwin-arm64), const SIOCIFCREATE2 = 3223349626
  3282. pkg syscall (darwin-arm64), const SIOCIFCREATE2 ideal-int
  3283. pkg syscall (darwin-arm64), const SIOCIFDESTROY = 2149607801
  3284. pkg syscall (darwin-arm64), const SIOCIFDESTROY ideal-int
  3285. pkg syscall (darwin-arm64), const SIOCIFGCLONERS = 3222301057
  3286. pkg syscall (darwin-arm64), const SIOCIFGCLONERS ideal-int
  3287. pkg syscall (darwin-arm64), const SIOCRSLVMULTI = 3222300987
  3288. pkg syscall (darwin-arm64), const SIOCRSLVMULTI ideal-int
  3289. pkg syscall (darwin-arm64), const SIOCSDRVSPEC = 2150132091
  3290. pkg syscall (darwin-arm64), const SIOCSDRVSPEC ideal-int
  3291. pkg syscall (darwin-arm64), const SIOCSETVLAN = 2149607806
  3292. pkg syscall (darwin-arm64), const SIOCSETVLAN ideal-int
  3293. pkg syscall (darwin-arm64), const SIOCSHIWAT = 2147775232
  3294. pkg syscall (darwin-arm64), const SIOCSHIWAT ideal-int
  3295. pkg syscall (darwin-arm64), const SIOCSIFADDR = 2149607692
  3296. pkg syscall (darwin-arm64), const SIOCSIFADDR ideal-int
  3297. pkg syscall (darwin-arm64), const SIOCSIFALTMTU = 2149607749
  3298. pkg syscall (darwin-arm64), const SIOCSIFALTMTU ideal-int
  3299. pkg syscall (darwin-arm64), const SIOCSIFASYNCMAP = 2149607805
  3300. pkg syscall (darwin-arm64), const SIOCSIFASYNCMAP ideal-int
  3301. pkg syscall (darwin-arm64), const SIOCSIFBOND = 2149607750
  3302. pkg syscall (darwin-arm64), const SIOCSIFBOND ideal-int
  3303. pkg syscall (darwin-arm64), const SIOCSIFBRDADDR = 2149607699
  3304. pkg syscall (darwin-arm64), const SIOCSIFBRDADDR ideal-int
  3305. pkg syscall (darwin-arm64), const SIOCSIFCAP = 2149607770
  3306. pkg syscall (darwin-arm64), const SIOCSIFCAP ideal-int
  3307. pkg syscall (darwin-arm64), const SIOCSIFDSTADDR = 2149607694
  3308. pkg syscall (darwin-arm64), const SIOCSIFDSTADDR ideal-int
  3309. pkg syscall (darwin-arm64), const SIOCSIFFLAGS = 2149607696
  3310. pkg syscall (darwin-arm64), const SIOCSIFFLAGS ideal-int
  3311. pkg syscall (darwin-arm64), const SIOCSIFGENERIC = 2149607737
  3312. pkg syscall (darwin-arm64), const SIOCSIFGENERIC ideal-int
  3313. pkg syscall (darwin-arm64), const SIOCSIFKPI = 2149607814
  3314. pkg syscall (darwin-arm64), const SIOCSIFKPI ideal-int
  3315. pkg syscall (darwin-arm64), const SIOCSIFLLADDR = 2149607740
  3316. pkg syscall (darwin-arm64), const SIOCSIFLLADDR ideal-int
  3317. pkg syscall (darwin-arm64), const SIOCSIFMAC = 2149607811
  3318. pkg syscall (darwin-arm64), const SIOCSIFMAC ideal-int
  3319. pkg syscall (darwin-arm64), const SIOCSIFMEDIA = 3223349559
  3320. pkg syscall (darwin-arm64), const SIOCSIFMEDIA ideal-int
  3321. pkg syscall (darwin-arm64), const SIOCSIFMETRIC = 2149607704
  3322. pkg syscall (darwin-arm64), const SIOCSIFMETRIC ideal-int
  3323. pkg syscall (darwin-arm64), const SIOCSIFMTU = 2149607732
  3324. pkg syscall (darwin-arm64), const SIOCSIFMTU ideal-int
  3325. pkg syscall (darwin-arm64), const SIOCSIFNETMASK = 2149607702
  3326. pkg syscall (darwin-arm64), const SIOCSIFNETMASK ideal-int
  3327. pkg syscall (darwin-arm64), const SIOCSIFPHYADDR = 2151704894
  3328. pkg syscall (darwin-arm64), const SIOCSIFPHYADDR ideal-int
  3329. pkg syscall (darwin-arm64), const SIOCSIFPHYS = 2149607734
  3330. pkg syscall (darwin-arm64), const SIOCSIFPHYS ideal-int
  3331. pkg syscall (darwin-arm64), const SIOCSIFVLAN = 2149607806
  3332. pkg syscall (darwin-arm64), const SIOCSIFVLAN ideal-int
  3333. pkg syscall (darwin-arm64), const SIOCSLOWAT = 2147775234
  3334. pkg syscall (darwin-arm64), const SIOCSLOWAT ideal-int
  3335. pkg syscall (darwin-arm64), const SIOCSPGRP = 2147775240
  3336. pkg syscall (darwin-arm64), const SIOCSPGRP ideal-int
  3337. pkg syscall (darwin-arm64), const SOCK_MAXADDRLEN = 255
  3338. pkg syscall (darwin-arm64), const SOCK_MAXADDRLEN ideal-int
  3339. pkg syscall (darwin-arm64), const SOCK_RDM = 4
  3340. pkg syscall (darwin-arm64), const SOCK_RDM ideal-int
  3341. pkg syscall (darwin-arm64), const SOL_SOCKET = 65535
  3342. pkg syscall (darwin-arm64), const SOMAXCONN = 128
  3343. pkg syscall (darwin-arm64), const SO_ACCEPTCONN = 2
  3344. pkg syscall (darwin-arm64), const SO_ACCEPTCONN ideal-int
  3345. pkg syscall (darwin-arm64), const SO_BROADCAST = 32
  3346. pkg syscall (darwin-arm64), const SO_DEBUG = 1
  3347. pkg syscall (darwin-arm64), const SO_DEBUG ideal-int
  3348. pkg syscall (darwin-arm64), const SO_DONTROUTE = 16
  3349. pkg syscall (darwin-arm64), const SO_DONTTRUNC = 8192
  3350. pkg syscall (darwin-arm64), const SO_DONTTRUNC ideal-int
  3351. pkg syscall (darwin-arm64), const SO_ERROR = 4103
  3352. pkg syscall (darwin-arm64), const SO_ERROR ideal-int
  3353. pkg syscall (darwin-arm64), const SO_KEEPALIVE = 8
  3354. pkg syscall (darwin-arm64), const SO_LABEL = 4112
  3355. pkg syscall (darwin-arm64), const SO_LABEL ideal-int
  3356. pkg syscall (darwin-arm64), const SO_LINGER = 128
  3357. pkg syscall (darwin-arm64), const SO_LINGER_SEC = 4224
  3358. pkg syscall (darwin-arm64), const SO_LINGER_SEC ideal-int
  3359. pkg syscall (darwin-arm64), const SO_NKE = 4129
  3360. pkg syscall (darwin-arm64), const SO_NKE ideal-int
  3361. pkg syscall (darwin-arm64), const SO_NOADDRERR = 4131
  3362. pkg syscall (darwin-arm64), const SO_NOADDRERR ideal-int
  3363. pkg syscall (darwin-arm64), const SO_NOSIGPIPE = 4130
  3364. pkg syscall (darwin-arm64), const SO_NOSIGPIPE ideal-int
  3365. pkg syscall (darwin-arm64), const SO_NOTIFYCONFLICT = 4134
  3366. pkg syscall (darwin-arm64), const SO_NOTIFYCONFLICT ideal-int
  3367. pkg syscall (darwin-arm64), const SO_NP_EXTENSIONS = 4227
  3368. pkg syscall (darwin-arm64), const SO_NP_EXTENSIONS ideal-int
  3369. pkg syscall (darwin-arm64), const SO_NREAD = 4128
  3370. pkg syscall (darwin-arm64), const SO_NREAD ideal-int
  3371. pkg syscall (darwin-arm64), const SO_NUMRCVPKT = 4370
  3372. pkg syscall (darwin-arm64), const SO_NUMRCVPKT ideal-int
  3373. pkg syscall (darwin-arm64), const SO_NWRITE = 4132
  3374. pkg syscall (darwin-arm64), const SO_NWRITE ideal-int
  3375. pkg syscall (darwin-arm64), const SO_OOBINLINE = 256
  3376. pkg syscall (darwin-arm64), const SO_OOBINLINE ideal-int
  3377. pkg syscall (darwin-arm64), const SO_PEERLABEL = 4113
  3378. pkg syscall (darwin-arm64), const SO_PEERLABEL ideal-int
  3379. pkg syscall (darwin-arm64), const SO_RANDOMPORT = 4226
  3380. pkg syscall (darwin-arm64), const SO_RANDOMPORT ideal-int
  3381. pkg syscall (darwin-arm64), const SO_RCVBUF = 4098
  3382. pkg syscall (darwin-arm64), const SO_RCVLOWAT = 4100
  3383. pkg syscall (darwin-arm64), const SO_RCVLOWAT ideal-int
  3384. pkg syscall (darwin-arm64), const SO_RCVTIMEO = 4102
  3385. pkg syscall (darwin-arm64), const SO_RCVTIMEO ideal-int
  3386. pkg syscall (darwin-arm64), const SO_REUSEADDR = 4
  3387. pkg syscall (darwin-arm64), const SO_REUSEPORT = 512
  3388. pkg syscall (darwin-arm64), const SO_REUSEPORT ideal-int
  3389. pkg syscall (darwin-arm64), const SO_REUSESHAREUID = 4133
  3390. pkg syscall (darwin-arm64), const SO_REUSESHAREUID ideal-int
  3391. pkg syscall (darwin-arm64), const SO_SNDBUF = 4097
  3392. pkg syscall (darwin-arm64), const SO_SNDLOWAT = 4099
  3393. pkg syscall (darwin-arm64), const SO_SNDLOWAT ideal-int
  3394. pkg syscall (darwin-arm64), const SO_SNDTIMEO = 4101
  3395. pkg syscall (darwin-arm64), const SO_SNDTIMEO ideal-int
  3396. pkg syscall (darwin-arm64), const SO_TIMESTAMP = 1024
  3397. pkg syscall (darwin-arm64), const SO_TIMESTAMP ideal-int
  3398. pkg syscall (darwin-arm64), const SO_TIMESTAMP_MONOTONIC = 2048
  3399. pkg syscall (darwin-arm64), const SO_TIMESTAMP_MONOTONIC ideal-int
  3400. pkg syscall (darwin-arm64), const SO_TYPE = 4104
  3401. pkg syscall (darwin-arm64), const SO_TYPE ideal-int
  3402. pkg syscall (darwin-arm64), const SO_UPCALLCLOSEWAIT = 4135
  3403. pkg syscall (darwin-arm64), const SO_UPCALLCLOSEWAIT ideal-int
  3404. pkg syscall (darwin-arm64), const SO_USELOOPBACK = 64
  3405. pkg syscall (darwin-arm64), const SO_USELOOPBACK ideal-int
  3406. pkg syscall (darwin-arm64), const SO_WANTMORE = 16384
  3407. pkg syscall (darwin-arm64), const SO_WANTMORE ideal-int
  3408. pkg syscall (darwin-arm64), const SO_WANTOOBFLAG = 32768
  3409. pkg syscall (darwin-arm64), const SO_WANTOOBFLAG ideal-int
  3410. pkg syscall (darwin-arm64), const SYS_ACCEPT = 30
  3411. pkg syscall (darwin-arm64), const SYS_ACCEPT ideal-int
  3412. pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL = 404
  3413. pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL ideal-int
  3414. pkg syscall (darwin-arm64), const SYS_ACCESS = 33
  3415. pkg syscall (darwin-arm64), const SYS_ACCESS ideal-int
  3416. pkg syscall (darwin-arm64), const SYS_ACCESS_EXTENDED = 284
  3417. pkg syscall (darwin-arm64), const SYS_ACCESS_EXTENDED ideal-int
  3418. pkg syscall (darwin-arm64), const SYS_ACCT = 51
  3419. pkg syscall (darwin-arm64), const SYS_ACCT ideal-int
  3420. pkg syscall (darwin-arm64), const SYS_ADJTIME = 140
  3421. pkg syscall (darwin-arm64), const SYS_ADJTIME ideal-int
  3422. pkg syscall (darwin-arm64), const SYS_AIO_CANCEL = 316
  3423. pkg syscall (darwin-arm64), const SYS_AIO_CANCEL ideal-int
  3424. pkg syscall (darwin-arm64), const SYS_AIO_ERROR = 317
  3425. pkg syscall (darwin-arm64), const SYS_AIO_ERROR ideal-int
  3426. pkg syscall (darwin-arm64), const SYS_AIO_FSYNC = 313
  3427. pkg syscall (darwin-arm64), const SYS_AIO_FSYNC ideal-int
  3428. pkg syscall (darwin-arm64), const SYS_AIO_READ = 318
  3429. pkg syscall (darwin-arm64), const SYS_AIO_READ ideal-int
  3430. pkg syscall (darwin-arm64), const SYS_AIO_RETURN = 314
  3431. pkg syscall (darwin-arm64), const SYS_AIO_RETURN ideal-int
  3432. pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND = 315
  3433. pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND ideal-int
  3434. pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL = 421
  3435. pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL ideal-int
  3436. pkg syscall (darwin-arm64), const SYS_AIO_WRITE = 319
  3437. pkg syscall (darwin-arm64), const SYS_AIO_WRITE ideal-int
  3438. pkg syscall (darwin-arm64), const SYS_ATGETMSG = 207
  3439. pkg syscall (darwin-arm64), const SYS_ATGETMSG ideal-int
  3440. pkg syscall (darwin-arm64), const SYS_ATPGETREQ = 211
  3441. pkg syscall (darwin-arm64), const SYS_ATPGETREQ ideal-int
  3442. pkg syscall (darwin-arm64), const SYS_ATPGETRSP = 212
  3443. pkg syscall (darwin-arm64), const SYS_ATPGETRSP ideal-int
  3444. pkg syscall (darwin-arm64), const SYS_ATPSNDREQ = 209
  3445. pkg syscall (darwin-arm64), const SYS_ATPSNDREQ ideal-int
  3446. pkg syscall (darwin-arm64), const SYS_ATPSNDRSP = 210
  3447. pkg syscall (darwin-arm64), const SYS_ATPSNDRSP ideal-int
  3448. pkg syscall (darwin-arm64), const SYS_ATPUTMSG = 208
  3449. pkg syscall (darwin-arm64), const SYS_ATPUTMSG ideal-int
  3450. pkg syscall (darwin-arm64), const SYS_ATSOCKET = 206
  3451. pkg syscall (darwin-arm64), const SYS_ATSOCKET ideal-int
  3452. pkg syscall (darwin-arm64), const SYS_AUDIT = 350
  3453. pkg syscall (darwin-arm64), const SYS_AUDIT ideal-int
  3454. pkg syscall (darwin-arm64), const SYS_AUDITCTL = 359
  3455. pkg syscall (darwin-arm64), const SYS_AUDITCTL ideal-int
  3456. pkg syscall (darwin-arm64), const SYS_AUDITON = 351
  3457. pkg syscall (darwin-arm64), const SYS_AUDITON ideal-int
  3458. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_JOIN = 429
  3459. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_JOIN ideal-int
  3460. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_PORT = 432
  3461. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_PORT ideal-int
  3462. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_SELF = 428
  3463. pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_SELF ideal-int
  3464. pkg syscall (darwin-arm64), const SYS_BIND = 104
  3465. pkg syscall (darwin-arm64), const SYS_BIND ideal-int
  3466. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_CREATE = 360
  3467. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_CREATE ideal-int
  3468. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_REGISTER = 366
  3469. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_REGISTER ideal-int
  3470. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_TERMINATE = 361
  3471. pkg syscall (darwin-arm64), const SYS_BSDTHREAD_TERMINATE ideal-int
  3472. pkg syscall (darwin-arm64), const SYS_CHDIR = 12
  3473. pkg syscall (darwin-arm64), const SYS_CHDIR ideal-int
  3474. pkg syscall (darwin-arm64), const SYS_CHFLAGS = 34
  3475. pkg syscall (darwin-arm64), const SYS_CHFLAGS ideal-int
  3476. pkg syscall (darwin-arm64), const SYS_CHMOD = 15
  3477. pkg syscall (darwin-arm64), const SYS_CHMOD ideal-int
  3478. pkg syscall (darwin-arm64), const SYS_CHMOD_EXTENDED = 282
  3479. pkg syscall (darwin-arm64), const SYS_CHMOD_EXTENDED ideal-int
  3480. pkg syscall (darwin-arm64), const SYS_CHOWN = 16
  3481. pkg syscall (darwin-arm64), const SYS_CHOWN ideal-int
  3482. pkg syscall (darwin-arm64), const SYS_CHROOT = 61
  3483. pkg syscall (darwin-arm64), const SYS_CHROOT ideal-int
  3484. pkg syscall (darwin-arm64), const SYS_CHUD = 185
  3485. pkg syscall (darwin-arm64), const SYS_CHUD ideal-int
  3486. pkg syscall (darwin-arm64), const SYS_CLOSE = 6
  3487. pkg syscall (darwin-arm64), const SYS_CLOSE ideal-int
  3488. pkg syscall (darwin-arm64), const SYS_CLOSE_NOCANCEL = 399
  3489. pkg syscall (darwin-arm64), const SYS_CLOSE_NOCANCEL ideal-int
  3490. pkg syscall (darwin-arm64), const SYS_CONNECT = 98
  3491. pkg syscall (darwin-arm64), const SYS_CONNECT ideal-int
  3492. pkg syscall (darwin-arm64), const SYS_CONNECT_NOCANCEL = 409
  3493. pkg syscall (darwin-arm64), const SYS_CONNECT_NOCANCEL ideal-int
  3494. pkg syscall (darwin-arm64), const SYS_COPYFILE = 227
  3495. pkg syscall (darwin-arm64), const SYS_COPYFILE ideal-int
  3496. pkg syscall (darwin-arm64), const SYS_CSOPS = 169
  3497. pkg syscall (darwin-arm64), const SYS_CSOPS ideal-int
  3498. pkg syscall (darwin-arm64), const SYS_CSOPS_AUDITTOKEN = 170
  3499. pkg syscall (darwin-arm64), const SYS_CSOPS_AUDITTOKEN ideal-int
  3500. pkg syscall (darwin-arm64), const SYS_DELETE = 226
  3501. pkg syscall (darwin-arm64), const SYS_DELETE ideal-int
  3502. pkg syscall (darwin-arm64), const SYS_DUP = 41
  3503. pkg syscall (darwin-arm64), const SYS_DUP ideal-int
  3504. pkg syscall (darwin-arm64), const SYS_DUP2 = 90
  3505. pkg syscall (darwin-arm64), const SYS_DUP2 ideal-int
  3506. pkg syscall (darwin-arm64), const SYS_EXCHANGEDATA = 223
  3507. pkg syscall (darwin-arm64), const SYS_EXCHANGEDATA ideal-int
  3508. pkg syscall (darwin-arm64), const SYS_EXECVE = 59
  3509. pkg syscall (darwin-arm64), const SYS_EXECVE ideal-int
  3510. pkg syscall (darwin-arm64), const SYS_EXIT = 1
  3511. pkg syscall (darwin-arm64), const SYS_EXIT ideal-int
  3512. pkg syscall (darwin-arm64), const SYS_FCHDIR = 13
  3513. pkg syscall (darwin-arm64), const SYS_FCHDIR ideal-int
  3514. pkg syscall (darwin-arm64), const SYS_FCHFLAGS = 35
  3515. pkg syscall (darwin-arm64), const SYS_FCHFLAGS ideal-int
  3516. pkg syscall (darwin-arm64), const SYS_FCHMOD = 124
  3517. pkg syscall (darwin-arm64), const SYS_FCHMOD ideal-int
  3518. pkg syscall (darwin-arm64), const SYS_FCHMOD_EXTENDED = 283
  3519. pkg syscall (darwin-arm64), const SYS_FCHMOD_EXTENDED ideal-int
  3520. pkg syscall (darwin-arm64), const SYS_FCHOWN = 123
  3521. pkg syscall (darwin-arm64), const SYS_FCHOWN ideal-int
  3522. pkg syscall (darwin-arm64), const SYS_FCNTL = 92
  3523. pkg syscall (darwin-arm64), const SYS_FCNTL ideal-int
  3524. pkg syscall (darwin-arm64), const SYS_FCNTL_NOCANCEL = 406
  3525. pkg syscall (darwin-arm64), const SYS_FCNTL_NOCANCEL ideal-int
  3526. pkg syscall (darwin-arm64), const SYS_FDATASYNC = 187
  3527. pkg syscall (darwin-arm64), const SYS_FDATASYNC ideal-int
  3528. pkg syscall (darwin-arm64), const SYS_FFSCTL = 245
  3529. pkg syscall (darwin-arm64), const SYS_FFSCTL ideal-int
  3530. pkg syscall (darwin-arm64), const SYS_FGETATTRLIST = 228
  3531. pkg syscall (darwin-arm64), const SYS_FGETATTRLIST ideal-int
  3532. pkg syscall (darwin-arm64), const SYS_FGETXATTR = 235
  3533. pkg syscall (darwin-arm64), const SYS_FGETXATTR ideal-int
  3534. pkg syscall (darwin-arm64), const SYS_FHOPEN = 248
  3535. pkg syscall (darwin-arm64), const SYS_FHOPEN ideal-int
  3536. pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEFD = 431
  3537. pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEFD ideal-int
  3538. pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEPORT = 430
  3539. pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEPORT ideal-int
  3540. pkg syscall (darwin-arm64), const SYS_FLISTXATTR = 241
  3541. pkg syscall (darwin-arm64), const SYS_FLISTXATTR ideal-int
  3542. pkg syscall (darwin-arm64), const SYS_FLOCK = 131
  3543. pkg syscall (darwin-arm64), const SYS_FLOCK ideal-int
  3544. pkg syscall (darwin-arm64), const SYS_FORK = 2
  3545. pkg syscall (darwin-arm64), const SYS_FORK ideal-int
  3546. pkg syscall (darwin-arm64), const SYS_FPATHCONF = 192
  3547. pkg syscall (darwin-arm64), const SYS_FPATHCONF ideal-int
  3548. pkg syscall (darwin-arm64), const SYS_FREMOVEXATTR = 239
  3549. pkg syscall (darwin-arm64), const SYS_FREMOVEXATTR ideal-int
  3550. pkg syscall (darwin-arm64), const SYS_FSCTL = 242
  3551. pkg syscall (darwin-arm64), const SYS_FSCTL ideal-int
  3552. pkg syscall (darwin-arm64), const SYS_FSETATTRLIST = 229
  3553. pkg syscall (darwin-arm64), const SYS_FSETATTRLIST ideal-int
  3554. pkg syscall (darwin-arm64), const SYS_FSETXATTR = 237
  3555. pkg syscall (darwin-arm64), const SYS_FSETXATTR ideal-int
  3556. pkg syscall (darwin-arm64), const SYS_FSGETPATH = 427
  3557. pkg syscall (darwin-arm64), const SYS_FSGETPATH ideal-int
  3558. pkg syscall (darwin-arm64), const SYS_FSTAT = 189
  3559. pkg syscall (darwin-arm64), const SYS_FSTAT ideal-int
  3560. pkg syscall (darwin-arm64), const SYS_FSTAT64 = 339
  3561. pkg syscall (darwin-arm64), const SYS_FSTAT64 ideal-int
  3562. pkg syscall (darwin-arm64), const SYS_FSTAT64_EXTENDED = 343
  3563. pkg syscall (darwin-arm64), const SYS_FSTAT64_EXTENDED ideal-int
  3564. pkg syscall (darwin-arm64), const SYS_FSTATFS = 158
  3565. pkg syscall (darwin-arm64), const SYS_FSTATFS ideal-int
  3566. pkg syscall (darwin-arm64), const SYS_FSTATFS64 = 346
  3567. pkg syscall (darwin-arm64), const SYS_FSTATFS64 ideal-int
  3568. pkg syscall (darwin-arm64), const SYS_FSTAT_EXTENDED = 281
  3569. pkg syscall (darwin-arm64), const SYS_FSTAT_EXTENDED ideal-int
  3570. pkg syscall (darwin-arm64), const SYS_FSYNC = 95
  3571. pkg syscall (darwin-arm64), const SYS_FSYNC ideal-int
  3572. pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL = 408
  3573. pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL ideal-int
  3574. pkg syscall (darwin-arm64), const SYS_FTRUNCATE = 201
  3575. pkg syscall (darwin-arm64), const SYS_FTRUNCATE ideal-int
  3576. pkg syscall (darwin-arm64), const SYS_FUTIMES = 139
  3577. pkg syscall (darwin-arm64), const SYS_FUTIMES ideal-int
  3578. pkg syscall (darwin-arm64), const SYS_GETATTRLIST = 220
  3579. pkg syscall (darwin-arm64), const SYS_GETATTRLIST ideal-int
  3580. pkg syscall (darwin-arm64), const SYS_GETAUDIT_ADDR = 357
  3581. pkg syscall (darwin-arm64), const SYS_GETAUDIT_ADDR ideal-int
  3582. pkg syscall (darwin-arm64), const SYS_GETAUID = 353
  3583. pkg syscall (darwin-arm64), const SYS_GETAUID ideal-int
  3584. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES = 196
  3585. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES ideal-int
  3586. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES64 = 344
  3587. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES64 ideal-int
  3588. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIESATTR = 222
  3589. pkg syscall (darwin-arm64), const SYS_GETDIRENTRIESATTR ideal-int
  3590. pkg syscall (darwin-arm64), const SYS_GETDTABLESIZE = 89
  3591. pkg syscall (darwin-arm64), const SYS_GETDTABLESIZE ideal-int
  3592. pkg syscall (darwin-arm64), const SYS_GETEGID = 43
  3593. pkg syscall (darwin-arm64), const SYS_GETEGID ideal-int
  3594. pkg syscall (darwin-arm64), const SYS_GETEUID = 25
  3595. pkg syscall (darwin-arm64), const SYS_GETEUID ideal-int
  3596. pkg syscall (darwin-arm64), const SYS_GETFH = 161
  3597. pkg syscall (darwin-arm64), const SYS_GETFH ideal-int
  3598. pkg syscall (darwin-arm64), const SYS_GETFSSTAT = 18
  3599. pkg syscall (darwin-arm64), const SYS_GETFSSTAT ideal-int
  3600. pkg syscall (darwin-arm64), const SYS_GETFSSTAT64 = 347
  3601. pkg syscall (darwin-arm64), const SYS_GETFSSTAT64 ideal-int
  3602. pkg syscall (darwin-arm64), const SYS_GETGID = 47
  3603. pkg syscall (darwin-arm64), const SYS_GETGID ideal-int
  3604. pkg syscall (darwin-arm64), const SYS_GETGROUPS = 79
  3605. pkg syscall (darwin-arm64), const SYS_GETGROUPS ideal-int
  3606. pkg syscall (darwin-arm64), const SYS_GETHOSTUUID = 142
  3607. pkg syscall (darwin-arm64), const SYS_GETHOSTUUID ideal-int
  3608. pkg syscall (darwin-arm64), const SYS_GETITIMER = 86
  3609. pkg syscall (darwin-arm64), const SYS_GETITIMER ideal-int
  3610. pkg syscall (darwin-arm64), const SYS_GETLCID = 395
  3611. pkg syscall (darwin-arm64), const SYS_GETLCID ideal-int
  3612. pkg syscall (darwin-arm64), const SYS_GETLOGIN = 49
  3613. pkg syscall (darwin-arm64), const SYS_GETLOGIN ideal-int
  3614. pkg syscall (darwin-arm64), const SYS_GETPEERNAME = 31
  3615. pkg syscall (darwin-arm64), const SYS_GETPEERNAME ideal-int
  3616. pkg syscall (darwin-arm64), const SYS_GETPGID = 151
  3617. pkg syscall (darwin-arm64), const SYS_GETPGID ideal-int
  3618. pkg syscall (darwin-arm64), const SYS_GETPGRP = 81
  3619. pkg syscall (darwin-arm64), const SYS_GETPGRP ideal-int
  3620. pkg syscall (darwin-arm64), const SYS_GETPID = 20
  3621. pkg syscall (darwin-arm64), const SYS_GETPID ideal-int
  3622. pkg syscall (darwin-arm64), const SYS_GETPPID = 39
  3623. pkg syscall (darwin-arm64), const SYS_GETPPID ideal-int
  3624. pkg syscall (darwin-arm64), const SYS_GETPRIORITY = 100
  3625. pkg syscall (darwin-arm64), const SYS_GETPRIORITY ideal-int
  3626. pkg syscall (darwin-arm64), const SYS_GETRLIMIT = 194
  3627. pkg syscall (darwin-arm64), const SYS_GETRLIMIT ideal-int
  3628. pkg syscall (darwin-arm64), const SYS_GETRUSAGE = 117
  3629. pkg syscall (darwin-arm64), const SYS_GETRUSAGE ideal-int
  3630. pkg syscall (darwin-arm64), const SYS_GETSGROUPS = 288
  3631. pkg syscall (darwin-arm64), const SYS_GETSGROUPS ideal-int
  3632. pkg syscall (darwin-arm64), const SYS_GETSID = 310
  3633. pkg syscall (darwin-arm64), const SYS_GETSID ideal-int
  3634. pkg syscall (darwin-arm64), const SYS_GETSOCKNAME = 32
  3635. pkg syscall (darwin-arm64), const SYS_GETSOCKNAME ideal-int
  3636. pkg syscall (darwin-arm64), const SYS_GETSOCKOPT = 118
  3637. pkg syscall (darwin-arm64), const SYS_GETSOCKOPT ideal-int
  3638. pkg syscall (darwin-arm64), const SYS_GETTID = 286
  3639. pkg syscall (darwin-arm64), const SYS_GETTID ideal-int
  3640. pkg syscall (darwin-arm64), const SYS_GETTIMEOFDAY = 116
  3641. pkg syscall (darwin-arm64), const SYS_GETTIMEOFDAY ideal-int
  3642. pkg syscall (darwin-arm64), const SYS_GETUID = 24
  3643. pkg syscall (darwin-arm64), const SYS_GETUID ideal-int
  3644. pkg syscall (darwin-arm64), const SYS_GETWGROUPS = 290
  3645. pkg syscall (darwin-arm64), const SYS_GETWGROUPS ideal-int
  3646. pkg syscall (darwin-arm64), const SYS_GETXATTR = 234
  3647. pkg syscall (darwin-arm64), const SYS_GETXATTR ideal-int
  3648. pkg syscall (darwin-arm64), const SYS_IDENTITYSVC = 293
  3649. pkg syscall (darwin-arm64), const SYS_IDENTITYSVC ideal-int
  3650. pkg syscall (darwin-arm64), const SYS_INITGROUPS = 243
  3651. pkg syscall (darwin-arm64), const SYS_INITGROUPS ideal-int
  3652. pkg syscall (darwin-arm64), const SYS_IOCTL = 54
  3653. pkg syscall (darwin-arm64), const SYS_IOCTL ideal-int
  3654. pkg syscall (darwin-arm64), const SYS_IOPOLICYSYS = 322
  3655. pkg syscall (darwin-arm64), const SYS_IOPOLICYSYS ideal-int
  3656. pkg syscall (darwin-arm64), const SYS_ISSETUGID = 327
  3657. pkg syscall (darwin-arm64), const SYS_ISSETUGID ideal-int
  3658. pkg syscall (darwin-arm64), const SYS_KAS_INFO = 439
  3659. pkg syscall (darwin-arm64), const SYS_KAS_INFO ideal-int
  3660. pkg syscall (darwin-arm64), const SYS_KDEBUG_TRACE = 180
  3661. pkg syscall (darwin-arm64), const SYS_KDEBUG_TRACE ideal-int
  3662. pkg syscall (darwin-arm64), const SYS_KEVENT = 363
  3663. pkg syscall (darwin-arm64), const SYS_KEVENT ideal-int
  3664. pkg syscall (darwin-arm64), const SYS_KEVENT64 = 369
  3665. pkg syscall (darwin-arm64), const SYS_KEVENT64 ideal-int
  3666. pkg syscall (darwin-arm64), const SYS_KILL = 37
  3667. pkg syscall (darwin-arm64), const SYS_KILL ideal-int
  3668. pkg syscall (darwin-arm64), const SYS_KQUEUE = 362
  3669. pkg syscall (darwin-arm64), const SYS_KQUEUE ideal-int
  3670. pkg syscall (darwin-arm64), const SYS_LCHOWN = 364
  3671. pkg syscall (darwin-arm64), const SYS_LCHOWN ideal-int
  3672. pkg syscall (darwin-arm64), const SYS_LEDGER = 373
  3673. pkg syscall (darwin-arm64), const SYS_LEDGER ideal-int
  3674. pkg syscall (darwin-arm64), const SYS_LINK = 9
  3675. pkg syscall (darwin-arm64), const SYS_LINK ideal-int
  3676. pkg syscall (darwin-arm64), const SYS_LIO_LISTIO = 320
  3677. pkg syscall (darwin-arm64), const SYS_LIO_LISTIO ideal-int
  3678. pkg syscall (darwin-arm64), const SYS_LISTEN = 106
  3679. pkg syscall (darwin-arm64), const SYS_LISTEN ideal-int
  3680. pkg syscall (darwin-arm64), const SYS_LISTXATTR = 240
  3681. pkg syscall (darwin-arm64), const SYS_LISTXATTR ideal-int
  3682. pkg syscall (darwin-arm64), const SYS_LSEEK = 199
  3683. pkg syscall (darwin-arm64), const SYS_LSEEK ideal-int
  3684. pkg syscall (darwin-arm64), const SYS_LSTAT = 190
  3685. pkg syscall (darwin-arm64), const SYS_LSTAT ideal-int
  3686. pkg syscall (darwin-arm64), const SYS_LSTAT64 = 340
  3687. pkg syscall (darwin-arm64), const SYS_LSTAT64 ideal-int
  3688. pkg syscall (darwin-arm64), const SYS_LSTAT64_EXTENDED = 342
  3689. pkg syscall (darwin-arm64), const SYS_LSTAT64_EXTENDED ideal-int
  3690. pkg syscall (darwin-arm64), const SYS_LSTAT_EXTENDED = 280
  3691. pkg syscall (darwin-arm64), const SYS_LSTAT_EXTENDED ideal-int
  3692. pkg syscall (darwin-arm64), const SYS_MADVISE = 75
  3693. pkg syscall (darwin-arm64), const SYS_MADVISE ideal-int
  3694. pkg syscall (darwin-arm64), const SYS_MAXSYSCALL = 440
  3695. pkg syscall (darwin-arm64), const SYS_MAXSYSCALL ideal-int
  3696. pkg syscall (darwin-arm64), const SYS_MINCORE = 78
  3697. pkg syscall (darwin-arm64), const SYS_MINCORE ideal-int
  3698. pkg syscall (darwin-arm64), const SYS_MINHERIT = 250
  3699. pkg syscall (darwin-arm64), const SYS_MINHERIT ideal-int
  3700. pkg syscall (darwin-arm64), const SYS_MKDIR = 136
  3701. pkg syscall (darwin-arm64), const SYS_MKDIR ideal-int
  3702. pkg syscall (darwin-arm64), const SYS_MKDIR_EXTENDED = 292
  3703. pkg syscall (darwin-arm64), const SYS_MKDIR_EXTENDED ideal-int
  3704. pkg syscall (darwin-arm64), const SYS_MKFIFO = 132
  3705. pkg syscall (darwin-arm64), const SYS_MKFIFO ideal-int
  3706. pkg syscall (darwin-arm64), const SYS_MKFIFO_EXTENDED = 291
  3707. pkg syscall (darwin-arm64), const SYS_MKFIFO_EXTENDED ideal-int
  3708. pkg syscall (darwin-arm64), const SYS_MKNOD = 14
  3709. pkg syscall (darwin-arm64), const SYS_MKNOD ideal-int
  3710. pkg syscall (darwin-arm64), const SYS_MLOCK = 203
  3711. pkg syscall (darwin-arm64), const SYS_MLOCK ideal-int
  3712. pkg syscall (darwin-arm64), const SYS_MLOCKALL = 324
  3713. pkg syscall (darwin-arm64), const SYS_MLOCKALL ideal-int
  3714. pkg syscall (darwin-arm64), const SYS_MMAP = 197
  3715. pkg syscall (darwin-arm64), const SYS_MMAP ideal-int
  3716. pkg syscall (darwin-arm64), const SYS_MODWATCH = 233
  3717. pkg syscall (darwin-arm64), const SYS_MODWATCH ideal-int
  3718. pkg syscall (darwin-arm64), const SYS_MOUNT = 167
  3719. pkg syscall (darwin-arm64), const SYS_MOUNT ideal-int
  3720. pkg syscall (darwin-arm64), const SYS_MPROTECT = 74
  3721. pkg syscall (darwin-arm64), const SYS_MPROTECT ideal-int
  3722. pkg syscall (darwin-arm64), const SYS_MSGCTL = 258
  3723. pkg syscall (darwin-arm64), const SYS_MSGCTL ideal-int
  3724. pkg syscall (darwin-arm64), const SYS_MSGGET = 259
  3725. pkg syscall (darwin-arm64), const SYS_MSGGET ideal-int
  3726. pkg syscall (darwin-arm64), const SYS_MSGRCV = 261
  3727. pkg syscall (darwin-arm64), const SYS_MSGRCV ideal-int
  3728. pkg syscall (darwin-arm64), const SYS_MSGRCV_NOCANCEL = 419
  3729. pkg syscall (darwin-arm64), const SYS_MSGRCV_NOCANCEL ideal-int
  3730. pkg syscall (darwin-arm64), const SYS_MSGSND = 260
  3731. pkg syscall (darwin-arm64), const SYS_MSGSND ideal-int
  3732. pkg syscall (darwin-arm64), const SYS_MSGSND_NOCANCEL = 418
  3733. pkg syscall (darwin-arm64), const SYS_MSGSND_NOCANCEL ideal-int
  3734. pkg syscall (darwin-arm64), const SYS_MSGSYS = 252
  3735. pkg syscall (darwin-arm64), const SYS_MSGSYS ideal-int
  3736. pkg syscall (darwin-arm64), const SYS_MSYNC = 65
  3737. pkg syscall (darwin-arm64), const SYS_MSYNC ideal-int
  3738. pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL = 405
  3739. pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL ideal-int
  3740. pkg syscall (darwin-arm64), const SYS_MUNLOCK = 204
  3741. pkg syscall (darwin-arm64), const SYS_MUNLOCK ideal-int
  3742. pkg syscall (darwin-arm64), const SYS_MUNLOCKALL = 325
  3743. pkg syscall (darwin-arm64), const SYS_MUNLOCKALL ideal-int
  3744. pkg syscall (darwin-arm64), const SYS_MUNMAP = 73
  3745. pkg syscall (darwin-arm64), const SYS_MUNMAP ideal-int
  3746. pkg syscall (darwin-arm64), const SYS_NFSCLNT = 247
  3747. pkg syscall (darwin-arm64), const SYS_NFSCLNT ideal-int
  3748. pkg syscall (darwin-arm64), const SYS_NFSSVC = 155
  3749. pkg syscall (darwin-arm64), const SYS_NFSSVC ideal-int
  3750. pkg syscall (darwin-arm64), const SYS_OPEN = 5
  3751. pkg syscall (darwin-arm64), const SYS_OPEN ideal-int
  3752. pkg syscall (darwin-arm64), const SYS_OPEN_DPROTECTED_NP = 216
  3753. pkg syscall (darwin-arm64), const SYS_OPEN_DPROTECTED_NP ideal-int
  3754. pkg syscall (darwin-arm64), const SYS_OPEN_EXTENDED = 277
  3755. pkg syscall (darwin-arm64), const SYS_OPEN_EXTENDED ideal-int
  3756. pkg syscall (darwin-arm64), const SYS_OPEN_NOCANCEL = 398
  3757. pkg syscall (darwin-arm64), const SYS_OPEN_NOCANCEL ideal-int
  3758. pkg syscall (darwin-arm64), const SYS_PATHCONF = 191
  3759. pkg syscall (darwin-arm64), const SYS_PATHCONF ideal-int
  3760. pkg syscall (darwin-arm64), const SYS_PID_HIBERNATE = 435
  3761. pkg syscall (darwin-arm64), const SYS_PID_HIBERNATE ideal-int
  3762. pkg syscall (darwin-arm64), const SYS_PID_RESUME = 434
  3763. pkg syscall (darwin-arm64), const SYS_PID_RESUME ideal-int
  3764. pkg syscall (darwin-arm64), const SYS_PID_SHUTDOWN_SOCKETS = 436
  3765. pkg syscall (darwin-arm64), const SYS_PID_SHUTDOWN_SOCKETS ideal-int
  3766. pkg syscall (darwin-arm64), const SYS_PID_SUSPEND = 433
  3767. pkg syscall (darwin-arm64), const SYS_PID_SUSPEND ideal-int
  3768. pkg syscall (darwin-arm64), const SYS_PIPE = 42
  3769. pkg syscall (darwin-arm64), const SYS_PIPE ideal-int
  3770. pkg syscall (darwin-arm64), const SYS_POLL = 230
  3771. pkg syscall (darwin-arm64), const SYS_POLL ideal-int
  3772. pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL = 417
  3773. pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL ideal-int
  3774. pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN = 244
  3775. pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN ideal-int
  3776. pkg syscall (darwin-arm64), const SYS_PREAD = 153
  3777. pkg syscall (darwin-arm64), const SYS_PREAD ideal-int
  3778. pkg syscall (darwin-arm64), const SYS_PREAD_NOCANCEL = 414
  3779. pkg syscall (darwin-arm64), const SYS_PREAD_NOCANCEL ideal-int
  3780. pkg syscall (darwin-arm64), const SYS_PROCESS_POLICY = 323
  3781. pkg syscall (darwin-arm64), const SYS_PROCESS_POLICY ideal-int
  3782. pkg syscall (darwin-arm64), const SYS_PROC_INFO = 336
  3783. pkg syscall (darwin-arm64), const SYS_PROC_INFO ideal-int
  3784. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVBROAD = 303
  3785. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVBROAD ideal-int
  3786. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVCLRPREPOST = 312
  3787. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVCLRPREPOST ideal-int
  3788. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVSIGNAL = 304
  3789. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVSIGNAL ideal-int
  3790. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVWAIT = 305
  3791. pkg syscall (darwin-arm64), const SYS_PSYNCH_CVWAIT ideal-int
  3792. pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXDROP = 302
  3793. pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXDROP ideal-int
  3794. pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXWAIT = 301
  3795. pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXWAIT ideal-int
  3796. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_DOWNGRADE = 299
  3797. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_DOWNGRADE ideal-int
  3798. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_LONGRDLOCK = 297
  3799. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int
  3800. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_RDLOCK = 306
  3801. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_RDLOCK ideal-int
  3802. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK = 308
  3803. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK ideal-int
  3804. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK2 = 309
  3805. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK2 ideal-int
  3806. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UPGRADE = 300
  3807. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UPGRADE ideal-int
  3808. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_WRLOCK = 307
  3809. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_WRLOCK ideal-int
  3810. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_YIELDWRLOCK = 298
  3811. pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int
  3812. pkg syscall (darwin-arm64), const SYS_PTRACE = 26
  3813. pkg syscall (darwin-arm64), const SYS_PTRACE ideal-int
  3814. pkg syscall (darwin-arm64), const SYS_PWRITE = 154
  3815. pkg syscall (darwin-arm64), const SYS_PWRITE ideal-int
  3816. pkg syscall (darwin-arm64), const SYS_PWRITE_NOCANCEL = 415
  3817. pkg syscall (darwin-arm64), const SYS_PWRITE_NOCANCEL ideal-int
  3818. pkg syscall (darwin-arm64), const SYS_QUOTACTL = 165
  3819. pkg syscall (darwin-arm64), const SYS_QUOTACTL ideal-int
  3820. pkg syscall (darwin-arm64), const SYS_READ = 3
  3821. pkg syscall (darwin-arm64), const SYS_READ ideal-int
  3822. pkg syscall (darwin-arm64), const SYS_READLINK = 58
  3823. pkg syscall (darwin-arm64), const SYS_READLINK ideal-int
  3824. pkg syscall (darwin-arm64), const SYS_READV = 120
  3825. pkg syscall (darwin-arm64), const SYS_READV ideal-int
  3826. pkg syscall (darwin-arm64), const SYS_READV_NOCANCEL = 411
  3827. pkg syscall (darwin-arm64), const SYS_READV_NOCANCEL ideal-int
  3828. pkg syscall (darwin-arm64), const SYS_READ_NOCANCEL = 396
  3829. pkg syscall (darwin-arm64), const SYS_READ_NOCANCEL ideal-int
  3830. pkg syscall (darwin-arm64), const SYS_REBOOT = 55
  3831. pkg syscall (darwin-arm64), const SYS_REBOOT ideal-int
  3832. pkg syscall (darwin-arm64), const SYS_RECVFROM = 29
  3833. pkg syscall (darwin-arm64), const SYS_RECVFROM ideal-int
  3834. pkg syscall (darwin-arm64), const SYS_RECVFROM_NOCANCEL = 403
  3835. pkg syscall (darwin-arm64), const SYS_RECVFROM_NOCANCEL ideal-int
  3836. pkg syscall (darwin-arm64), const SYS_RECVMSG = 27
  3837. pkg syscall (darwin-arm64), const SYS_RECVMSG ideal-int
  3838. pkg syscall (darwin-arm64), const SYS_RECVMSG_NOCANCEL = 401
  3839. pkg syscall (darwin-arm64), const SYS_RECVMSG_NOCANCEL ideal-int
  3840. pkg syscall (darwin-arm64), const SYS_REMOVEXATTR = 238
  3841. pkg syscall (darwin-arm64), const SYS_REMOVEXATTR ideal-int
  3842. pkg syscall (darwin-arm64), const SYS_RENAME = 128
  3843. pkg syscall (darwin-arm64), const SYS_RENAME ideal-int
  3844. pkg syscall (darwin-arm64), const SYS_REVOKE = 56
  3845. pkg syscall (darwin-arm64), const SYS_REVOKE ideal-int
  3846. pkg syscall (darwin-arm64), const SYS_RMDIR = 137
  3847. pkg syscall (darwin-arm64), const SYS_RMDIR ideal-int
  3848. pkg syscall (darwin-arm64), const SYS_SEARCHFS = 225
  3849. pkg syscall (darwin-arm64), const SYS_SEARCHFS ideal-int
  3850. pkg syscall (darwin-arm64), const SYS_SELECT = 93
  3851. pkg syscall (darwin-arm64), const SYS_SELECT ideal-int
  3852. pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL = 407
  3853. pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL ideal-int
  3854. pkg syscall (darwin-arm64), const SYS_SEMCTL = 254
  3855. pkg syscall (darwin-arm64), const SYS_SEMCTL ideal-int
  3856. pkg syscall (darwin-arm64), const SYS_SEMGET = 255
  3857. pkg syscall (darwin-arm64), const SYS_SEMGET ideal-int
  3858. pkg syscall (darwin-arm64), const SYS_SEMOP = 256
  3859. pkg syscall (darwin-arm64), const SYS_SEMOP ideal-int
  3860. pkg syscall (darwin-arm64), const SYS_SEMSYS = 251
  3861. pkg syscall (darwin-arm64), const SYS_SEMSYS ideal-int
  3862. pkg syscall (darwin-arm64), const SYS_SEM_CLOSE = 269
  3863. pkg syscall (darwin-arm64), const SYS_SEM_CLOSE ideal-int
  3864. pkg syscall (darwin-arm64), const SYS_SEM_DESTROY = 276
  3865. pkg syscall (darwin-arm64), const SYS_SEM_DESTROY ideal-int
  3866. pkg syscall (darwin-arm64), const SYS_SEM_GETVALUE = 274
  3867. pkg syscall (darwin-arm64), const SYS_SEM_GETVALUE ideal-int
  3868. pkg syscall (darwin-arm64), const SYS_SEM_INIT = 275
  3869. pkg syscall (darwin-arm64), const SYS_SEM_INIT ideal-int
  3870. pkg syscall (darwin-arm64), const SYS_SEM_OPEN = 268
  3871. pkg syscall (darwin-arm64), const SYS_SEM_OPEN ideal-int
  3872. pkg syscall (darwin-arm64), const SYS_SEM_POST = 273
  3873. pkg syscall (darwin-arm64), const SYS_SEM_POST ideal-int
  3874. pkg syscall (darwin-arm64), const SYS_SEM_TRYWAIT = 272
  3875. pkg syscall (darwin-arm64), const SYS_SEM_TRYWAIT ideal-int
  3876. pkg syscall (darwin-arm64), const SYS_SEM_UNLINK = 270
  3877. pkg syscall (darwin-arm64), const SYS_SEM_UNLINK ideal-int
  3878. pkg syscall (darwin-arm64), const SYS_SEM_WAIT = 271
  3879. pkg syscall (darwin-arm64), const SYS_SEM_WAIT ideal-int
  3880. pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL = 420
  3881. pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL ideal-int
  3882. pkg syscall (darwin-arm64), const SYS_SENDFILE = 337
  3883. pkg syscall (darwin-arm64), const SYS_SENDFILE ideal-int
  3884. pkg syscall (darwin-arm64), const SYS_SENDMSG = 28
  3885. pkg syscall (darwin-arm64), const SYS_SENDMSG ideal-int
  3886. pkg syscall (darwin-arm64), const SYS_SENDMSG_NOCANCEL = 402
  3887. pkg syscall (darwin-arm64), const SYS_SENDMSG_NOCANCEL ideal-int
  3888. pkg syscall (darwin-arm64), const SYS_SENDTO = 133
  3889. pkg syscall (darwin-arm64), const SYS_SENDTO ideal-int
  3890. pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL = 413
  3891. pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL ideal-int
  3892. pkg syscall (darwin-arm64), const SYS_SETATTRLIST = 221
  3893. pkg syscall (darwin-arm64), const SYS_SETATTRLIST ideal-int
  3894. pkg syscall (darwin-arm64), const SYS_SETAUDIT_ADDR = 358
  3895. pkg syscall (darwin-arm64), const SYS_SETAUDIT_ADDR ideal-int
  3896. pkg syscall (darwin-arm64), const SYS_SETAUID = 354
  3897. pkg syscall (darwin-arm64), const SYS_SETAUID ideal-int
  3898. pkg syscall (darwin-arm64), const SYS_SETEGID = 182
  3899. pkg syscall (darwin-arm64), const SYS_SETEGID ideal-int
  3900. pkg syscall (darwin-arm64), const SYS_SETEUID = 183
  3901. pkg syscall (darwin-arm64), const SYS_SETEUID ideal-int
  3902. pkg syscall (darwin-arm64), const SYS_SETGID = 181
  3903. pkg syscall (darwin-arm64), const SYS_SETGID ideal-int
  3904. pkg syscall (darwin-arm64), const SYS_SETGROUPS = 80
  3905. pkg syscall (darwin-arm64), const SYS_SETGROUPS ideal-int
  3906. pkg syscall (darwin-arm64), const SYS_SETITIMER = 83
  3907. pkg syscall (darwin-arm64), const SYS_SETITIMER ideal-int
  3908. pkg syscall (darwin-arm64), const SYS_SETLCID = 394
  3909. pkg syscall (darwin-arm64), const SYS_SETLCID ideal-int
  3910. pkg syscall (darwin-arm64), const SYS_SETLOGIN = 50
  3911. pkg syscall (darwin-arm64), const SYS_SETLOGIN ideal-int
  3912. pkg syscall (darwin-arm64), const SYS_SETPGID = 82
  3913. pkg syscall (darwin-arm64), const SYS_SETPGID ideal-int
  3914. pkg syscall (darwin-arm64), const SYS_SETPRIORITY = 96
  3915. pkg syscall (darwin-arm64), const SYS_SETPRIORITY ideal-int
  3916. pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC = 152
  3917. pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC ideal-int
  3918. pkg syscall (darwin-arm64), const SYS_SETREGID = 127
  3919. pkg syscall (darwin-arm64), const SYS_SETREGID ideal-int
  3920. pkg syscall (darwin-arm64), const SYS_SETREUID = 126
  3921. pkg syscall (darwin-arm64), const SYS_SETREUID ideal-int
  3922. pkg syscall (darwin-arm64), const SYS_SETRLIMIT = 195
  3923. pkg syscall (darwin-arm64), const SYS_SETRLIMIT ideal-int
  3924. pkg syscall (darwin-arm64), const SYS_SETSGROUPS = 287
  3925. pkg syscall (darwin-arm64), const SYS_SETSGROUPS ideal-int
  3926. pkg syscall (darwin-arm64), const SYS_SETSID = 147
  3927. pkg syscall (darwin-arm64), const SYS_SETSID ideal-int
  3928. pkg syscall (darwin-arm64), const SYS_SETSOCKOPT = 105
  3929. pkg syscall (darwin-arm64), const SYS_SETSOCKOPT ideal-int
  3930. pkg syscall (darwin-arm64), const SYS_SETTID = 285
  3931. pkg syscall (darwin-arm64), const SYS_SETTID ideal-int
  3932. pkg syscall (darwin-arm64), const SYS_SETTID_WITH_PID = 311
  3933. pkg syscall (darwin-arm64), const SYS_SETTID_WITH_PID ideal-int
  3934. pkg syscall (darwin-arm64), const SYS_SETTIMEOFDAY = 122
  3935. pkg syscall (darwin-arm64), const SYS_SETTIMEOFDAY ideal-int
  3936. pkg syscall (darwin-arm64), const SYS_SETUID = 23
  3937. pkg syscall (darwin-arm64), const SYS_SETUID ideal-int
  3938. pkg syscall (darwin-arm64), const SYS_SETWGROUPS = 289
  3939. pkg syscall (darwin-arm64), const SYS_SETWGROUPS ideal-int
  3940. pkg syscall (darwin-arm64), const SYS_SETXATTR = 236
  3941. pkg syscall (darwin-arm64), const SYS_SETXATTR ideal-int
  3942. pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP = 294
  3943. pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP ideal-int
  3944. pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
  3945. pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
  3946. pkg syscall (darwin-arm64), const SYS_SHMAT = 262
  3947. pkg syscall (darwin-arm64), const SYS_SHMAT ideal-int
  3948. pkg syscall (darwin-arm64), const SYS_SHMCTL = 263
  3949. pkg syscall (darwin-arm64), const SYS_SHMCTL ideal-int
  3950. pkg syscall (darwin-arm64), const SYS_SHMDT = 264
  3951. pkg syscall (darwin-arm64), const SYS_SHMDT ideal-int
  3952. pkg syscall (darwin-arm64), const SYS_SHMGET = 265
  3953. pkg syscall (darwin-arm64), const SYS_SHMGET ideal-int
  3954. pkg syscall (darwin-arm64), const SYS_SHMSYS = 253
  3955. pkg syscall (darwin-arm64), const SYS_SHMSYS ideal-int
  3956. pkg syscall (darwin-arm64), const SYS_SHM_OPEN = 266
  3957. pkg syscall (darwin-arm64), const SYS_SHM_OPEN ideal-int
  3958. pkg syscall (darwin-arm64), const SYS_SHM_UNLINK = 267
  3959. pkg syscall (darwin-arm64), const SYS_SHM_UNLINK ideal-int
  3960. pkg syscall (darwin-arm64), const SYS_SHUTDOWN = 134
  3961. pkg syscall (darwin-arm64), const SYS_SHUTDOWN ideal-int
  3962. pkg syscall (darwin-arm64), const SYS_SIGACTION = 46
  3963. pkg syscall (darwin-arm64), const SYS_SIGACTION ideal-int
  3964. pkg syscall (darwin-arm64), const SYS_SIGALTSTACK = 53
  3965. pkg syscall (darwin-arm64), const SYS_SIGALTSTACK ideal-int
  3966. pkg syscall (darwin-arm64), const SYS_SIGPENDING = 52
  3967. pkg syscall (darwin-arm64), const SYS_SIGPENDING ideal-int
  3968. pkg syscall (darwin-arm64), const SYS_SIGPROCMASK = 48
  3969. pkg syscall (darwin-arm64), const SYS_SIGPROCMASK ideal-int
  3970. pkg syscall (darwin-arm64), const SYS_SIGRETURN = 184
  3971. pkg syscall (darwin-arm64), const SYS_SIGRETURN ideal-int
  3972. pkg syscall (darwin-arm64), const SYS_SIGSUSPEND = 111
  3973. pkg syscall (darwin-arm64), const SYS_SIGSUSPEND ideal-int
  3974. pkg syscall (darwin-arm64), const SYS_SIGSUSPEND_NOCANCEL = 410
  3975. pkg syscall (darwin-arm64), const SYS_SIGSUSPEND_NOCANCEL ideal-int
  3976. pkg syscall (darwin-arm64), const SYS_SOCKET = 97
  3977. pkg syscall (darwin-arm64), const SYS_SOCKET ideal-int
  3978. pkg syscall (darwin-arm64), const SYS_SOCKETPAIR = 135
  3979. pkg syscall (darwin-arm64), const SYS_SOCKETPAIR ideal-int
  3980. pkg syscall (darwin-arm64), const SYS_STACK_SNAPSHOT = 365
  3981. pkg syscall (darwin-arm64), const SYS_STACK_SNAPSHOT ideal-int
  3982. pkg syscall (darwin-arm64), const SYS_STAT = 188
  3983. pkg syscall (darwin-arm64), const SYS_STAT ideal-int
  3984. pkg syscall (darwin-arm64), const SYS_STAT64 = 338
  3985. pkg syscall (darwin-arm64), const SYS_STAT64 ideal-int
  3986. pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED = 341
  3987. pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED ideal-int
  3988. pkg syscall (darwin-arm64), const SYS_STATFS = 157
  3989. pkg syscall (darwin-arm64), const SYS_STATFS ideal-int
  3990. pkg syscall (darwin-arm64), const SYS_STATFS64 = 345
  3991. pkg syscall (darwin-arm64), const SYS_STATFS64 ideal-int
  3992. pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED = 279
  3993. pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED ideal-int
  3994. pkg syscall (darwin-arm64), const SYS_SWAPON = 85
  3995. pkg syscall (darwin-arm64), const SYS_SWAPON ideal-int
  3996. pkg syscall (darwin-arm64), const SYS_SYMLINK = 57
  3997. pkg syscall (darwin-arm64), const SYS_SYMLINK ideal-int
  3998. pkg syscall (darwin-arm64), const SYS_SYNC = 36
  3999. pkg syscall (darwin-arm64), const SYS_SYNC ideal-int
  4000. pkg syscall (darwin-arm64), const SYS_SYSCALL = 0
  4001. pkg syscall (darwin-arm64), const SYS_SYSCALL ideal-int
  4002. pkg syscall (darwin-arm64), const SYS_THREAD_SELFID = 372
  4003. pkg syscall (darwin-arm64), const SYS_THREAD_SELFID ideal-int
  4004. pkg syscall (darwin-arm64), const SYS_TRUNCATE = 200
  4005. pkg syscall (darwin-arm64), const SYS_TRUNCATE ideal-int
  4006. pkg syscall (darwin-arm64), const SYS_UMASK = 60
  4007. pkg syscall (darwin-arm64), const SYS_UMASK ideal-int
  4008. pkg syscall (darwin-arm64), const SYS_UMASK_EXTENDED = 278
  4009. pkg syscall (darwin-arm64), const SYS_UMASK_EXTENDED ideal-int
  4010. pkg syscall (darwin-arm64), const SYS_UNDELETE = 205
  4011. pkg syscall (darwin-arm64), const SYS_UNDELETE ideal-int
  4012. pkg syscall (darwin-arm64), const SYS_UNLINK = 10
  4013. pkg syscall (darwin-arm64), const SYS_UNLINK ideal-int
  4014. pkg syscall (darwin-arm64), const SYS_UNMOUNT = 159
  4015. pkg syscall (darwin-arm64), const SYS_UNMOUNT ideal-int
  4016. pkg syscall (darwin-arm64), const SYS_UTIMES = 138
  4017. pkg syscall (darwin-arm64), const SYS_UTIMES ideal-int
  4018. pkg syscall (darwin-arm64), const SYS_VFORK = 66
  4019. pkg syscall (darwin-arm64), const SYS_VFORK ideal-int
  4020. pkg syscall (darwin-arm64), const SYS_VM_PRESSURE_MONITOR = 296
  4021. pkg syscall (darwin-arm64), const SYS_VM_PRESSURE_MONITOR ideal-int
  4022. pkg syscall (darwin-arm64), const SYS_WAIT4 = 7
  4023. pkg syscall (darwin-arm64), const SYS_WAIT4 ideal-int
  4024. pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL = 400
  4025. pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL ideal-int
  4026. pkg syscall (darwin-arm64), const SYS_WAITEVENT = 232
  4027. pkg syscall (darwin-arm64), const SYS_WAITEVENT ideal-int
  4028. pkg syscall (darwin-arm64), const SYS_WAITID = 173
  4029. pkg syscall (darwin-arm64), const SYS_WAITID ideal-int
  4030. pkg syscall (darwin-arm64), const SYS_WAITID_NOCANCEL = 416
  4031. pkg syscall (darwin-arm64), const SYS_WAITID_NOCANCEL ideal-int
  4032. pkg syscall (darwin-arm64), const SYS_WATCHEVENT = 231
  4033. pkg syscall (darwin-arm64), const SYS_WATCHEVENT ideal-int
  4034. pkg syscall (darwin-arm64), const SYS_WORKQ_KERNRETURN = 368
  4035. pkg syscall (darwin-arm64), const SYS_WORKQ_KERNRETURN ideal-int
  4036. pkg syscall (darwin-arm64), const SYS_WORKQ_OPEN = 367
  4037. pkg syscall (darwin-arm64), const SYS_WORKQ_OPEN ideal-int
  4038. pkg syscall (darwin-arm64), const SYS_WRITE = 4
  4039. pkg syscall (darwin-arm64), const SYS_WRITE ideal-int
  4040. pkg syscall (darwin-arm64), const SYS_WRITEV = 121
  4041. pkg syscall (darwin-arm64), const SYS_WRITEV ideal-int
  4042. pkg syscall (darwin-arm64), const SYS_WRITEV_NOCANCEL = 412
  4043. pkg syscall (darwin-arm64), const SYS_WRITEV_NOCANCEL ideal-int
  4044. pkg syscall (darwin-arm64), const SYS_WRITE_NOCANCEL = 397
  4045. pkg syscall (darwin-arm64), const SYS_WRITE_NOCANCEL ideal-int
  4046. pkg syscall (darwin-arm64), const SYS___DISABLE_THREADSIGNAL = 331
  4047. pkg syscall (darwin-arm64), const SYS___DISABLE_THREADSIGNAL ideal-int
  4048. pkg syscall (darwin-arm64), const SYS___MAC_EXECVE = 380
  4049. pkg syscall (darwin-arm64), const SYS___MAC_EXECVE ideal-int
  4050. pkg syscall (darwin-arm64), const SYS___MAC_GETFSSTAT = 426
  4051. pkg syscall (darwin-arm64), const SYS___MAC_GETFSSTAT ideal-int
  4052. pkg syscall (darwin-arm64), const SYS___MAC_GET_FD = 388
  4053. pkg syscall (darwin-arm64), const SYS___MAC_GET_FD ideal-int
  4054. pkg syscall (darwin-arm64), const SYS___MAC_GET_FILE = 382
  4055. pkg syscall (darwin-arm64), const SYS___MAC_GET_FILE ideal-int
  4056. pkg syscall (darwin-arm64), const SYS___MAC_GET_LCID = 391
  4057. pkg syscall (darwin-arm64), const SYS___MAC_GET_LCID ideal-int
  4058. pkg syscall (darwin-arm64), const SYS___MAC_GET_LCTX = 392
  4059. pkg syscall (darwin-arm64), const SYS___MAC_GET_LCTX ideal-int
  4060. pkg syscall (darwin-arm64), const SYS___MAC_GET_LINK = 384
  4061. pkg syscall (darwin-arm64), const SYS___MAC_GET_LINK ideal-int
  4062. pkg syscall (darwin-arm64), const SYS___MAC_GET_MOUNT = 425
  4063. pkg syscall (darwin-arm64), const SYS___MAC_GET_MOUNT ideal-int
  4064. pkg syscall (darwin-arm64), const SYS___MAC_GET_PID = 390
  4065. pkg syscall (darwin-arm64), const SYS___MAC_GET_PID ideal-int
  4066. pkg syscall (darwin-arm64), const SYS___MAC_GET_PROC = 386
  4067. pkg syscall (darwin-arm64), const SYS___MAC_GET_PROC ideal-int
  4068. pkg syscall (darwin-arm64), const SYS___MAC_MOUNT = 424
  4069. pkg syscall (darwin-arm64), const SYS___MAC_MOUNT ideal-int
  4070. pkg syscall (darwin-arm64), const SYS___MAC_SET_FD = 389
  4071. pkg syscall (darwin-arm64), const SYS___MAC_SET_FD ideal-int
  4072. pkg syscall (darwin-arm64), const SYS___MAC_SET_FILE = 383
  4073. pkg syscall (darwin-arm64), const SYS___MAC_SET_FILE ideal-int
  4074. pkg syscall (darwin-arm64), const SYS___MAC_SET_LCTX = 393
  4075. pkg syscall (darwin-arm64), const SYS___MAC_SET_LCTX ideal-int
  4076. pkg syscall (darwin-arm64), const SYS___MAC_SET_LINK = 385
  4077. pkg syscall (darwin-arm64), const SYS___MAC_SET_LINK ideal-int
  4078. pkg syscall (darwin-arm64), const SYS___MAC_SET_PROC = 387
  4079. pkg syscall (darwin-arm64), const SYS___MAC_SET_PROC ideal-int
  4080. pkg syscall (darwin-arm64), const SYS___MAC_SYSCALL = 381
  4081. pkg syscall (darwin-arm64), const SYS___MAC_SYSCALL ideal-int
  4082. pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL = 370
  4083. pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL ideal-int
  4084. pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
  4085. pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int
  4086. pkg syscall (darwin-arm64), const SYS___PTHREAD_CANCELED = 333
  4087. pkg syscall (darwin-arm64), const SYS___PTHREAD_CANCELED ideal-int
  4088. pkg syscall (darwin-arm64), const SYS___PTHREAD_CHDIR = 348
  4089. pkg syscall (darwin-arm64), const SYS___PTHREAD_CHDIR ideal-int
  4090. pkg syscall (darwin-arm64), const SYS___PTHREAD_FCHDIR = 349
  4091. pkg syscall (darwin-arm64), const SYS___PTHREAD_FCHDIR ideal-int
  4092. pkg syscall (darwin-arm64), const SYS___PTHREAD_KILL = 328
  4093. pkg syscall (darwin-arm64), const SYS___PTHREAD_KILL ideal-int
  4094. pkg syscall (darwin-arm64), const SYS___PTHREAD_MARKCANCEL = 332
  4095. pkg syscall (darwin-arm64), const SYS___PTHREAD_MARKCANCEL ideal-int
  4096. pkg syscall (darwin-arm64), const SYS___PTHREAD_SIGMASK = 329
  4097. pkg syscall (darwin-arm64), const SYS___PTHREAD_SIGMASK ideal-int
  4098. pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL = 334
  4099. pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL ideal-int
  4100. pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423
  4101. pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int
  4102. pkg syscall (darwin-arm64), const SYS___SIGWAIT = 330
  4103. pkg syscall (darwin-arm64), const SYS___SIGWAIT ideal-int
  4104. pkg syscall (darwin-arm64), const SYS___SIGWAIT_NOCANCEL = 422
  4105. pkg syscall (darwin-arm64), const SYS___SIGWAIT_NOCANCEL ideal-int
  4106. pkg syscall (darwin-arm64), const SYS___SYSCTL = 202
  4107. pkg syscall (darwin-arm64), const SYS___SYSCTL ideal-int
  4108. pkg syscall (darwin-arm64), const S_IEXEC = 64
  4109. pkg syscall (darwin-arm64), const S_IEXEC ideal-int
  4110. pkg syscall (darwin-arm64), const S_IFMT = 61440
  4111. pkg syscall (darwin-arm64), const S_IFWHT = 57344
  4112. pkg syscall (darwin-arm64), const S_IFWHT ideal-int
  4113. pkg syscall (darwin-arm64), const S_IREAD = 256
  4114. pkg syscall (darwin-arm64), const S_IREAD ideal-int
  4115. pkg syscall (darwin-arm64), const S_IRGRP = 32
  4116. pkg syscall (darwin-arm64), const S_IRGRP ideal-int
  4117. pkg syscall (darwin-arm64), const S_IROTH = 4
  4118. pkg syscall (darwin-arm64), const S_IROTH ideal-int
  4119. pkg syscall (darwin-arm64), const S_IRWXG = 56
  4120. pkg syscall (darwin-arm64), const S_IRWXG ideal-int
  4121. pkg syscall (darwin-arm64), const S_IRWXO = 7
  4122. pkg syscall (darwin-arm64), const S_IRWXO ideal-int
  4123. pkg syscall (darwin-arm64), const S_IRWXU = 448
  4124. pkg syscall (darwin-arm64), const S_IRWXU ideal-int
  4125. pkg syscall (darwin-arm64), const S_ISTXT = 512
  4126. pkg syscall (darwin-arm64), const S_ISTXT ideal-int
  4127. pkg syscall (darwin-arm64), const S_IWGRP = 16
  4128. pkg syscall (darwin-arm64), const S_IWGRP ideal-int
  4129. pkg syscall (darwin-arm64), const S_IWOTH = 2
  4130. pkg syscall (darwin-arm64), const S_IWOTH ideal-int
  4131. pkg syscall (darwin-arm64), const S_IWRITE = 128
  4132. pkg syscall (darwin-arm64), const S_IWRITE ideal-int
  4133. pkg syscall (darwin-arm64), const S_IXGRP = 8
  4134. pkg syscall (darwin-arm64), const S_IXGRP ideal-int
  4135. pkg syscall (darwin-arm64), const S_IXOTH = 1
  4136. pkg syscall (darwin-arm64), const S_IXOTH ideal-int
  4137. pkg syscall (darwin-arm64), const SizeofBpfHdr = 20
  4138. pkg syscall (darwin-arm64), const SizeofBpfHdr ideal-int
  4139. pkg syscall (darwin-arm64), const SizeofBpfInsn = 8
  4140. pkg syscall (darwin-arm64), const SizeofBpfInsn ideal-int
  4141. pkg syscall (darwin-arm64), const SizeofBpfProgram = 16
  4142. pkg syscall (darwin-arm64), const SizeofBpfProgram ideal-int
  4143. pkg syscall (darwin-arm64), const SizeofBpfStat = 8
  4144. pkg syscall (darwin-arm64), const SizeofBpfStat ideal-int
  4145. pkg syscall (darwin-arm64), const SizeofBpfVersion = 4
  4146. pkg syscall (darwin-arm64), const SizeofBpfVersion ideal-int
  4147. pkg syscall (darwin-arm64), const SizeofCmsghdr = 12
  4148. pkg syscall (darwin-arm64), const SizeofCmsghdr ideal-int
  4149. pkg syscall (darwin-arm64), const SizeofICMPv6Filter = 32
  4150. pkg syscall (darwin-arm64), const SizeofICMPv6Filter ideal-int
  4151. pkg syscall (darwin-arm64), const SizeofIPMreq = 8
  4152. pkg syscall (darwin-arm64), const SizeofIPMreq ideal-int
  4153. pkg syscall (darwin-arm64), const SizeofIPv6MTUInfo = 32
  4154. pkg syscall (darwin-arm64), const SizeofIPv6MTUInfo ideal-int
  4155. pkg syscall (darwin-arm64), const SizeofIPv6Mreq = 20
  4156. pkg syscall (darwin-arm64), const SizeofIPv6Mreq ideal-int
  4157. pkg syscall (darwin-arm64), const SizeofIfData = 96
  4158. pkg syscall (darwin-arm64), const SizeofIfData ideal-int
  4159. pkg syscall (darwin-arm64), const SizeofIfMsghdr = 112
  4160. pkg syscall (darwin-arm64), const SizeofIfMsghdr ideal-int
  4161. pkg syscall (darwin-arm64), const SizeofIfaMsghdr = 20
  4162. pkg syscall (darwin-arm64), const SizeofIfaMsghdr ideal-int
  4163. pkg syscall (darwin-arm64), const SizeofIfmaMsghdr = 16
  4164. pkg syscall (darwin-arm64), const SizeofIfmaMsghdr ideal-int
  4165. pkg syscall (darwin-arm64), const SizeofIfmaMsghdr2 = 20
  4166. pkg syscall (darwin-arm64), const SizeofIfmaMsghdr2 ideal-int
  4167. pkg syscall (darwin-arm64), const SizeofInet4Pktinfo = 12
  4168. pkg syscall (darwin-arm64), const SizeofInet4Pktinfo ideal-int
  4169. pkg syscall (darwin-arm64), const SizeofInet6Pktinfo = 20
  4170. pkg syscall (darwin-arm64), const SizeofInet6Pktinfo ideal-int
  4171. pkg syscall (darwin-arm64), const SizeofLinger = 8
  4172. pkg syscall (darwin-arm64), const SizeofLinger ideal-int
  4173. pkg syscall (darwin-arm64), const SizeofMsghdr = 48
  4174. pkg syscall (darwin-arm64), const SizeofMsghdr ideal-int
  4175. pkg syscall (darwin-arm64), const SizeofRtMetrics = 56
  4176. pkg syscall (darwin-arm64), const SizeofRtMetrics ideal-int
  4177. pkg syscall (darwin-arm64), const SizeofRtMsghdr = 92
  4178. pkg syscall (darwin-arm64), const SizeofRtMsghdr ideal-int
  4179. pkg syscall (darwin-arm64), const SizeofSockaddrAny = 108
  4180. pkg syscall (darwin-arm64), const SizeofSockaddrAny ideal-int
  4181. pkg syscall (darwin-arm64), const SizeofSockaddrDatalink = 20
  4182. pkg syscall (darwin-arm64), const SizeofSockaddrDatalink ideal-int
  4183. pkg syscall (darwin-arm64), const SizeofSockaddrInet4 = 16
  4184. pkg syscall (darwin-arm64), const SizeofSockaddrInet4 ideal-int
  4185. pkg syscall (darwin-arm64), const SizeofSockaddrInet6 = 28
  4186. pkg syscall (darwin-arm64), const SizeofSockaddrInet6 ideal-int
  4187. pkg syscall (darwin-arm64), const SizeofSockaddrUnix = 106
  4188. pkg syscall (darwin-arm64), const SizeofSockaddrUnix ideal-int
  4189. pkg syscall (darwin-arm64), const TCIFLUSH = 1
  4190. pkg syscall (darwin-arm64), const TCIFLUSH ideal-int
  4191. pkg syscall (darwin-arm64), const TCIOFLUSH = 3
  4192. pkg syscall (darwin-arm64), const TCIOFLUSH ideal-int
  4193. pkg syscall (darwin-arm64), const TCOFLUSH = 2
  4194. pkg syscall (darwin-arm64), const TCOFLUSH ideal-int
  4195. pkg syscall (darwin-arm64), const TCP_CONNECTIONTIMEOUT = 32
  4196. pkg syscall (darwin-arm64), const TCP_CONNECTIONTIMEOUT ideal-int
  4197. pkg syscall (darwin-arm64), const TCP_ENABLE_ECN = 260
  4198. pkg syscall (darwin-arm64), const TCP_ENABLE_ECN ideal-int
  4199. pkg syscall (darwin-arm64), const TCP_KEEPALIVE = 16
  4200. pkg syscall (darwin-arm64), const TCP_KEEPALIVE ideal-int
  4201. pkg syscall (darwin-arm64), const TCP_KEEPCNT = 258
  4202. pkg syscall (darwin-arm64), const TCP_KEEPCNT ideal-int
  4203. pkg syscall (darwin-arm64), const TCP_KEEPINTVL = 257
  4204. pkg syscall (darwin-arm64), const TCP_KEEPINTVL ideal-int
  4205. pkg syscall (darwin-arm64), const TCP_MAXHLEN = 60
  4206. pkg syscall (darwin-arm64), const TCP_MAXHLEN ideal-int
  4207. pkg syscall (darwin-arm64), const TCP_MAXOLEN = 40
  4208. pkg syscall (darwin-arm64), const TCP_MAXOLEN ideal-int
  4209. pkg syscall (darwin-arm64), const TCP_MAXSEG = 2
  4210. pkg syscall (darwin-arm64), const TCP_MAXSEG ideal-int
  4211. pkg syscall (darwin-arm64), const TCP_MAXWIN = 65535
  4212. pkg syscall (darwin-arm64), const TCP_MAXWIN ideal-int
  4213. pkg syscall (darwin-arm64), const TCP_MAX_SACK = 4
  4214. pkg syscall (darwin-arm64), const TCP_MAX_SACK ideal-int
  4215. pkg syscall (darwin-arm64), const TCP_MAX_WINSHIFT = 14
  4216. pkg syscall (darwin-arm64), const TCP_MAX_WINSHIFT ideal-int
  4217. pkg syscall (darwin-arm64), const TCP_MINMSS = 216
  4218. pkg syscall (darwin-arm64), const TCP_MINMSS ideal-int
  4219. pkg syscall (darwin-arm64), const TCP_MSS = 512
  4220. pkg syscall (darwin-arm64), const TCP_MSS ideal-int
  4221. pkg syscall (darwin-arm64), const TCP_NOOPT = 8
  4222. pkg syscall (darwin-arm64), const TCP_NOOPT ideal-int
  4223. pkg syscall (darwin-arm64), const TCP_NOPUSH = 4
  4224. pkg syscall (darwin-arm64), const TCP_NOPUSH ideal-int
  4225. pkg syscall (darwin-arm64), const TCP_NOTSENT_LOWAT = 513
  4226. pkg syscall (darwin-arm64), const TCP_NOTSENT_LOWAT ideal-int
  4227. pkg syscall (darwin-arm64), const TCP_RXT_CONNDROPTIME = 128
  4228. pkg syscall (darwin-arm64), const TCP_RXT_CONNDROPTIME ideal-int
  4229. pkg syscall (darwin-arm64), const TCP_RXT_FINDROP = 256
  4230. pkg syscall (darwin-arm64), const TCP_RXT_FINDROP ideal-int
  4231. pkg syscall (darwin-arm64), const TCP_SENDMOREACKS = 259
  4232. pkg syscall (darwin-arm64), const TCP_SENDMOREACKS ideal-int
  4233. pkg syscall (darwin-arm64), const TCSAFLUSH = 2
  4234. pkg syscall (darwin-arm64), const TCSAFLUSH ideal-int
  4235. pkg syscall (darwin-arm64), const TIOCCBRK = 536900730
  4236. pkg syscall (darwin-arm64), const TIOCCBRK ideal-int
  4237. pkg syscall (darwin-arm64), const TIOCCDTR = 536900728
  4238. pkg syscall (darwin-arm64), const TIOCCDTR ideal-int
  4239. pkg syscall (darwin-arm64), const TIOCCONS = 2147775586
  4240. pkg syscall (darwin-arm64), const TIOCCONS ideal-int
  4241. pkg syscall (darwin-arm64), const TIOCDCDTIMESTAMP = 1074820184
  4242. pkg syscall (darwin-arm64), const TIOCDCDTIMESTAMP ideal-int
  4243. pkg syscall (darwin-arm64), const TIOCDRAIN = 536900702
  4244. pkg syscall (darwin-arm64), const TIOCDRAIN ideal-int
  4245. pkg syscall (darwin-arm64), const TIOCDSIMICROCODE = 536900693
  4246. pkg syscall (darwin-arm64), const TIOCDSIMICROCODE ideal-int
  4247. pkg syscall (darwin-arm64), const TIOCEXCL = 536900621
  4248. pkg syscall (darwin-arm64), const TIOCEXCL ideal-int
  4249. pkg syscall (darwin-arm64), const TIOCEXT = 2147775584
  4250. pkg syscall (darwin-arm64), const TIOCEXT ideal-int
  4251. pkg syscall (darwin-arm64), const TIOCFLUSH = 2147775504
  4252. pkg syscall (darwin-arm64), const TIOCFLUSH ideal-int
  4253. pkg syscall (darwin-arm64), const TIOCGDRAINWAIT = 1074033750
  4254. pkg syscall (darwin-arm64), const TIOCGDRAINWAIT ideal-int
  4255. pkg syscall (darwin-arm64), const TIOCGETA = 1078490131
  4256. pkg syscall (darwin-arm64), const TIOCGETA ideal-int
  4257. pkg syscall (darwin-arm64), const TIOCGETD = 1074033690
  4258. pkg syscall (darwin-arm64), const TIOCGETD ideal-int
  4259. pkg syscall (darwin-arm64), const TIOCGPGRP = 1074033783
  4260. pkg syscall (darwin-arm64), const TIOCGPGRP ideal-int
  4261. pkg syscall (darwin-arm64), const TIOCGWINSZ = 1074295912
  4262. pkg syscall (darwin-arm64), const TIOCGWINSZ ideal-int
  4263. pkg syscall (darwin-arm64), const TIOCIXOFF = 536900736
  4264. pkg syscall (darwin-arm64), const TIOCIXOFF ideal-int
  4265. pkg syscall (darwin-arm64), const TIOCIXON = 536900737
  4266. pkg syscall (darwin-arm64), const TIOCIXON ideal-int
  4267. pkg syscall (darwin-arm64), const TIOCMBIC = 2147775595
  4268. pkg syscall (darwin-arm64), const TIOCMBIC ideal-int
  4269. pkg syscall (darwin-arm64), const TIOCMBIS = 2147775596
  4270. pkg syscall (darwin-arm64), const TIOCMBIS ideal-int
  4271. pkg syscall (darwin-arm64), const TIOCMGDTRWAIT = 1074033754
  4272. pkg syscall (darwin-arm64), const TIOCMGDTRWAIT ideal-int
  4273. pkg syscall (darwin-arm64), const TIOCMGET = 1074033770
  4274. pkg syscall (darwin-arm64), const TIOCMGET ideal-int
  4275. pkg syscall (darwin-arm64), const TIOCMODG = 1074033667
  4276. pkg syscall (darwin-arm64), const TIOCMODG ideal-int
  4277. pkg syscall (darwin-arm64), const TIOCMODS = 2147775492
  4278. pkg syscall (darwin-arm64), const TIOCMODS ideal-int
  4279. pkg syscall (darwin-arm64), const TIOCMSDTRWAIT = 2147775579
  4280. pkg syscall (darwin-arm64), const TIOCMSDTRWAIT ideal-int
  4281. pkg syscall (darwin-arm64), const TIOCMSET = 2147775597
  4282. pkg syscall (darwin-arm64), const TIOCMSET ideal-int
  4283. pkg syscall (darwin-arm64), const TIOCM_CAR = 64
  4284. pkg syscall (darwin-arm64), const TIOCM_CAR ideal-int
  4285. pkg syscall (darwin-arm64), const TIOCM_CD = 64
  4286. pkg syscall (darwin-arm64), const TIOCM_CD ideal-int
  4287. pkg syscall (darwin-arm64), const TIOCM_CTS = 32
  4288. pkg syscall (darwin-arm64), const TIOCM_CTS ideal-int
  4289. pkg syscall (darwin-arm64), const TIOCM_DSR = 256
  4290. pkg syscall (darwin-arm64), const TIOCM_DSR ideal-int
  4291. pkg syscall (darwin-arm64), const TIOCM_DTR = 2
  4292. pkg syscall (darwin-arm64), const TIOCM_DTR ideal-int
  4293. pkg syscall (darwin-arm64), const TIOCM_LE = 1
  4294. pkg syscall (darwin-arm64), const TIOCM_LE ideal-int
  4295. pkg syscall (darwin-arm64), const TIOCM_RI = 128
  4296. pkg syscall (darwin-arm64), const TIOCM_RI ideal-int
  4297. pkg syscall (darwin-arm64), const TIOCM_RNG = 128
  4298. pkg syscall (darwin-arm64), const TIOCM_RNG ideal-int
  4299. pkg syscall (darwin-arm64), const TIOCM_RTS = 4
  4300. pkg syscall (darwin-arm64), const TIOCM_RTS ideal-int
  4301. pkg syscall (darwin-arm64), const TIOCM_SR = 16
  4302. pkg syscall (darwin-arm64), const TIOCM_SR ideal-int
  4303. pkg syscall (darwin-arm64), const TIOCM_ST = 8
  4304. pkg syscall (darwin-arm64), const TIOCM_ST ideal-int
  4305. pkg syscall (darwin-arm64), const TIOCNOTTY = 536900721
  4306. pkg syscall (darwin-arm64), const TIOCNOTTY ideal-int
  4307. pkg syscall (darwin-arm64), const TIOCNXCL = 536900622
  4308. pkg syscall (darwin-arm64), const TIOCNXCL ideal-int
  4309. pkg syscall (darwin-arm64), const TIOCOUTQ = 1074033779
  4310. pkg syscall (darwin-arm64), const TIOCOUTQ ideal-int
  4311. pkg syscall (darwin-arm64), const TIOCPKT = 2147775600
  4312. pkg syscall (darwin-arm64), const TIOCPKT ideal-int
  4313. pkg syscall (darwin-arm64), const TIOCPKT_DATA = 0
  4314. pkg syscall (darwin-arm64), const TIOCPKT_DATA ideal-int
  4315. pkg syscall (darwin-arm64), const TIOCPKT_DOSTOP = 32
  4316. pkg syscall (darwin-arm64), const TIOCPKT_DOSTOP ideal-int
  4317. pkg syscall (darwin-arm64), const TIOCPKT_FLUSHREAD = 1
  4318. pkg syscall (darwin-arm64), const TIOCPKT_FLUSHREAD ideal-int
  4319. pkg syscall (darwin-arm64), const TIOCPKT_FLUSHWRITE = 2
  4320. pkg syscall (darwin-arm64), const TIOCPKT_FLUSHWRITE ideal-int
  4321. pkg syscall (darwin-arm64), const TIOCPKT_IOCTL = 64
  4322. pkg syscall (darwin-arm64), const TIOCPKT_IOCTL ideal-int
  4323. pkg syscall (darwin-arm64), const TIOCPKT_NOSTOP = 16
  4324. pkg syscall (darwin-arm64), const TIOCPKT_NOSTOP ideal-int
  4325. pkg syscall (darwin-arm64), const TIOCPKT_START = 8
  4326. pkg syscall (darwin-arm64), const TIOCPKT_START ideal-int
  4327. pkg syscall (darwin-arm64), const TIOCPKT_STOP = 4
  4328. pkg syscall (darwin-arm64), const TIOCPKT_STOP ideal-int
  4329. pkg syscall (darwin-arm64), const TIOCPTYGNAME = 1082160211
  4330. pkg syscall (darwin-arm64), const TIOCPTYGNAME ideal-int
  4331. pkg syscall (darwin-arm64), const TIOCPTYGRANT = 536900692
  4332. pkg syscall (darwin-arm64), const TIOCPTYGRANT ideal-int
  4333. pkg syscall (darwin-arm64), const TIOCPTYUNLK = 536900690
  4334. pkg syscall (darwin-arm64), const TIOCPTYUNLK ideal-int
  4335. pkg syscall (darwin-arm64), const TIOCREMOTE = 2147775593
  4336. pkg syscall (darwin-arm64), const TIOCREMOTE ideal-int
  4337. pkg syscall (darwin-arm64), const TIOCSBRK = 536900731
  4338. pkg syscall (darwin-arm64), const TIOCSBRK ideal-int
  4339. pkg syscall (darwin-arm64), const TIOCSCONS = 536900707
  4340. pkg syscall (darwin-arm64), const TIOCSCONS ideal-int
  4341. pkg syscall (darwin-arm64), const TIOCSCTTY = 536900705
  4342. pkg syscall (darwin-arm64), const TIOCSCTTY ideal-int
  4343. pkg syscall (darwin-arm64), const TIOCSDRAINWAIT = 2147775575
  4344. pkg syscall (darwin-arm64), const TIOCSDRAINWAIT ideal-int
  4345. pkg syscall (darwin-arm64), const TIOCSDTR = 536900729
  4346. pkg syscall (darwin-arm64), const TIOCSDTR ideal-int
  4347. pkg syscall (darwin-arm64), const TIOCSETA = 2152231956
  4348. pkg syscall (darwin-arm64), const TIOCSETA ideal-int
  4349. pkg syscall (darwin-arm64), const TIOCSETAF = 2152231958
  4350. pkg syscall (darwin-arm64), const TIOCSETAF ideal-int
  4351. pkg syscall (darwin-arm64), const TIOCSETAW = 2152231957
  4352. pkg syscall (darwin-arm64), const TIOCSETAW ideal-int
  4353. pkg syscall (darwin-arm64), const TIOCSETD = 2147775515
  4354. pkg syscall (darwin-arm64), const TIOCSETD ideal-int
  4355. pkg syscall (darwin-arm64), const TIOCSIG = 536900703
  4356. pkg syscall (darwin-arm64), const TIOCSIG ideal-int
  4357. pkg syscall (darwin-arm64), const TIOCSPGRP = 2147775606
  4358. pkg syscall (darwin-arm64), const TIOCSPGRP ideal-int
  4359. pkg syscall (darwin-arm64), const TIOCSTART = 536900718
  4360. pkg syscall (darwin-arm64), const TIOCSTART ideal-int
  4361. pkg syscall (darwin-arm64), const TIOCSTAT = 536900709
  4362. pkg syscall (darwin-arm64), const TIOCSTAT ideal-int
  4363. pkg syscall (darwin-arm64), const TIOCSTI = 2147578994
  4364. pkg syscall (darwin-arm64), const TIOCSTI ideal-int
  4365. pkg syscall (darwin-arm64), const TIOCSTOP = 536900719
  4366. pkg syscall (darwin-arm64), const TIOCSTOP ideal-int
  4367. pkg syscall (darwin-arm64), const TIOCSWINSZ = 2148037735
  4368. pkg syscall (darwin-arm64), const TIOCSWINSZ ideal-int
  4369. pkg syscall (darwin-arm64), const TIOCTIMESTAMP = 1074820185
  4370. pkg syscall (darwin-arm64), const TIOCTIMESTAMP ideal-int
  4371. pkg syscall (darwin-arm64), const TIOCUCNTL = 2147775590
  4372. pkg syscall (darwin-arm64), const TIOCUCNTL ideal-int
  4373. pkg syscall (darwin-arm64), const TOSTOP = 4194304
  4374. pkg syscall (darwin-arm64), const TOSTOP ideal-int
  4375. pkg syscall (darwin-arm64), const VDISCARD = 15
  4376. pkg syscall (darwin-arm64), const VDISCARD ideal-int
  4377. pkg syscall (darwin-arm64), const VDSUSP = 11
  4378. pkg syscall (darwin-arm64), const VDSUSP ideal-int
  4379. pkg syscall (darwin-arm64), const VEOF = 0
  4380. pkg syscall (darwin-arm64), const VEOF ideal-int
  4381. pkg syscall (darwin-arm64), const VEOL = 1
  4382. pkg syscall (darwin-arm64), const VEOL ideal-int
  4383. pkg syscall (darwin-arm64), const VEOL2 = 2
  4384. pkg syscall (darwin-arm64), const VEOL2 ideal-int
  4385. pkg syscall (darwin-arm64), const VERASE = 3
  4386. pkg syscall (darwin-arm64), const VERASE ideal-int
  4387. pkg syscall (darwin-arm64), const VINTR = 8
  4388. pkg syscall (darwin-arm64), const VINTR ideal-int
  4389. pkg syscall (darwin-arm64), const VKILL = 5
  4390. pkg syscall (darwin-arm64), const VKILL ideal-int
  4391. pkg syscall (darwin-arm64), const VLNEXT = 14
  4392. pkg syscall (darwin-arm64), const VLNEXT ideal-int
  4393. pkg syscall (darwin-arm64), const VMIN = 16
  4394. pkg syscall (darwin-arm64), const VMIN ideal-int
  4395. pkg syscall (darwin-arm64), const VQUIT = 9
  4396. pkg syscall (darwin-arm64), const VQUIT ideal-int
  4397. pkg syscall (darwin-arm64), const VREPRINT = 6
  4398. pkg syscall (darwin-arm64), const VREPRINT ideal-int
  4399. pkg syscall (darwin-arm64), const VSTART = 12
  4400. pkg syscall (darwin-arm64), const VSTART ideal-int
  4401. pkg syscall (darwin-arm64), const VSTATUS = 18
  4402. pkg syscall (darwin-arm64), const VSTATUS ideal-int
  4403. pkg syscall (darwin-arm64), const VSTOP = 13
  4404. pkg syscall (darwin-arm64), const VSTOP ideal-int
  4405. pkg syscall (darwin-arm64), const VSUSP = 10
  4406. pkg syscall (darwin-arm64), const VSUSP ideal-int
  4407. pkg syscall (darwin-arm64), const VT0 = 0
  4408. pkg syscall (darwin-arm64), const VT0 ideal-int
  4409. pkg syscall (darwin-arm64), const VT1 = 65536
  4410. pkg syscall (darwin-arm64), const VT1 ideal-int
  4411. pkg syscall (darwin-arm64), const VTDLY = 65536
  4412. pkg syscall (darwin-arm64), const VTDLY ideal-int
  4413. pkg syscall (darwin-arm64), const VTIME = 17
  4414. pkg syscall (darwin-arm64), const VTIME ideal-int
  4415. pkg syscall (darwin-arm64), const VWERASE = 4
  4416. pkg syscall (darwin-arm64), const VWERASE ideal-int
  4417. pkg syscall (darwin-arm64), const WCONTINUED = 16
  4418. pkg syscall (darwin-arm64), const WCONTINUED ideal-int
  4419. pkg syscall (darwin-arm64), const WCOREFLAG = 128
  4420. pkg syscall (darwin-arm64), const WCOREFLAG ideal-int
  4421. pkg syscall (darwin-arm64), const WEXITED = 4
  4422. pkg syscall (darwin-arm64), const WEXITED ideal-int
  4423. pkg syscall (darwin-arm64), const WNOHANG = 1
  4424. pkg syscall (darwin-arm64), const WNOHANG ideal-int
  4425. pkg syscall (darwin-arm64), const WNOWAIT = 32
  4426. pkg syscall (darwin-arm64), const WNOWAIT ideal-int
  4427. pkg syscall (darwin-arm64), const WORDSIZE = 64
  4428. pkg syscall (darwin-arm64), const WORDSIZE ideal-int
  4429. pkg syscall (darwin-arm64), const WSTOPPED = 8
  4430. pkg syscall (darwin-arm64), const WSTOPPED ideal-int
  4431. pkg syscall (darwin-arm64), const WUNTRACED = 2
  4432. pkg syscall (darwin-arm64), const WUNTRACED ideal-int
  4433. pkg syscall (darwin-arm64), func Accept(int) (int, Sockaddr, error)
  4434. pkg syscall (darwin-arm64), func Access(string, uint32) error
  4435. pkg syscall (darwin-arm64), func Adjtime(*Timeval, *Timeval) error
  4436. pkg syscall (darwin-arm64), func Bind(int, Sockaddr) error
  4437. pkg syscall (darwin-arm64), func BpfBuflen //deprecated
  4438. pkg syscall (darwin-arm64), func BpfBuflen(int) (int, error)
  4439. pkg syscall (darwin-arm64), func BpfDatalink //deprecated
  4440. pkg syscall (darwin-arm64), func BpfDatalink(int) (int, error)
  4441. pkg syscall (darwin-arm64), func BpfHeadercmpl //deprecated
  4442. pkg syscall (darwin-arm64), func BpfHeadercmpl(int) (int, error)
  4443. pkg syscall (darwin-arm64), func BpfInterface //deprecated
  4444. pkg syscall (darwin-arm64), func BpfInterface(int, string) (string, error)
  4445. pkg syscall (darwin-arm64), func BpfJump //deprecated
  4446. pkg syscall (darwin-arm64), func BpfJump(int, int, int, int) *BpfInsn
  4447. pkg syscall (darwin-arm64), func BpfStats //deprecated
  4448. pkg syscall (darwin-arm64), func BpfStats(int) (*BpfStat, error)
  4449. pkg syscall (darwin-arm64), func BpfStmt //deprecated
  4450. pkg syscall (darwin-arm64), func BpfStmt(int, int) *BpfInsn
  4451. pkg syscall (darwin-arm64), func BpfTimeout //deprecated
  4452. pkg syscall (darwin-arm64), func BpfTimeout(int) (*Timeval, error)
  4453. pkg syscall (darwin-arm64), func CheckBpfVersion //deprecated
  4454. pkg syscall (darwin-arm64), func CheckBpfVersion(int) error
  4455. pkg syscall (darwin-arm64), func Chflags(string, int) error
  4456. pkg syscall (darwin-arm64), func Chroot(string) error
  4457. pkg syscall (darwin-arm64), func Close(int) error
  4458. pkg syscall (darwin-arm64), func CloseOnExec(int)
  4459. pkg syscall (darwin-arm64), func CmsgLen(int) int
  4460. pkg syscall (darwin-arm64), func CmsgSpace(int) int
  4461. pkg syscall (darwin-arm64), func Connect(int, Sockaddr) error
  4462. pkg syscall (darwin-arm64), func Dup(int) (int, error)
  4463. pkg syscall (darwin-arm64), func Dup2(int, int) error
  4464. pkg syscall (darwin-arm64), func Exchangedata(string, string, int) error
  4465. pkg syscall (darwin-arm64), func Fchdir(int) error
  4466. pkg syscall (darwin-arm64), func Fchflags(int, int) error
  4467. pkg syscall (darwin-arm64), func Fchmod(int, uint32) error
  4468. pkg syscall (darwin-arm64), func Fchown(int, int, int) error
  4469. pkg syscall (darwin-arm64), func FcntlFlock(uintptr, int, *Flock_t) error
  4470. pkg syscall (darwin-arm64), func Flock(int, int) error
  4471. pkg syscall (darwin-arm64), func FlushBpf //deprecated
  4472. pkg syscall (darwin-arm64), func FlushBpf(int) error
  4473. pkg syscall (darwin-arm64), func ForkExec(string, []string, *ProcAttr) (int, error)
  4474. pkg syscall (darwin-arm64), func Fpathconf(int, int) (int, error)
  4475. pkg syscall (darwin-arm64), func Fstat(int, *Stat_t) error
  4476. pkg syscall (darwin-arm64), func Fstatfs(int, *Statfs_t) error
  4477. pkg syscall (darwin-arm64), func Fsync(int) error
  4478. pkg syscall (darwin-arm64), func Ftruncate(int, int64) error
  4479. pkg syscall (darwin-arm64), func Futimes(int, []Timeval) error
  4480. pkg syscall (darwin-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error)
  4481. pkg syscall (darwin-arm64), func Getdtablesize() int
  4482. pkg syscall (darwin-arm64), func Getfsstat([]Statfs_t, int) (int, error)
  4483. pkg syscall (darwin-arm64), func Getpeername(int) (Sockaddr, error)
  4484. pkg syscall (darwin-arm64), func Getpgid(int) (int, error)
  4485. pkg syscall (darwin-arm64), func Getpgrp() int
  4486. pkg syscall (darwin-arm64), func Getpriority(int, int) (int, error)
  4487. pkg syscall (darwin-arm64), func Getrlimit(int, *Rlimit) error
  4488. pkg syscall (darwin-arm64), func Getrusage(int, *Rusage) error
  4489. pkg syscall (darwin-arm64), func Getsid(int) (int, error)
  4490. pkg syscall (darwin-arm64), func Getsockname(int) (Sockaddr, error)
  4491. pkg syscall (darwin-arm64), func GetsockoptByte(int, int, int) (uint8, error)
  4492. pkg syscall (darwin-arm64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
  4493. pkg syscall (darwin-arm64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  4494. pkg syscall (darwin-arm64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
  4495. pkg syscall (darwin-arm64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  4496. pkg syscall (darwin-arm64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  4497. pkg syscall (darwin-arm64), func GetsockoptInt(int, int, int) (int, error)
  4498. pkg syscall (darwin-arm64), func Issetugid() bool
  4499. pkg syscall (darwin-arm64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  4500. pkg syscall (darwin-arm64), func Kill(int, Signal) error
  4501. pkg syscall (darwin-arm64), func Kqueue() (int, error)
  4502. pkg syscall (darwin-arm64), func Listen(int, int) error
  4503. pkg syscall (darwin-arm64), func Lstat(string, *Stat_t) error
  4504. pkg syscall (darwin-arm64), func Mkfifo(string, uint32) error
  4505. pkg syscall (darwin-arm64), func Mknod(string, uint32, int) error
  4506. pkg syscall (darwin-arm64), func Mlock([]uint8) error
  4507. pkg syscall (darwin-arm64), func Mlockall(int) error
  4508. pkg syscall (darwin-arm64), func Mmap(int, int64, int, int, int) ([]uint8, error)
  4509. pkg syscall (darwin-arm64), func Mprotect([]uint8, int) error
  4510. pkg syscall (darwin-arm64), func Munlock([]uint8) error
  4511. pkg syscall (darwin-arm64), func Munlockall() error
  4512. pkg syscall (darwin-arm64), func Munmap([]uint8) error
  4513. pkg syscall (darwin-arm64), func Open(string, int, uint32) (int, error)
  4514. pkg syscall (darwin-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string)
  4515. pkg syscall (darwin-arm64), func ParseRoutingMessage //deprecated
  4516. pkg syscall (darwin-arm64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  4517. pkg syscall (darwin-arm64), func ParseRoutingSockaddr //deprecated
  4518. pkg syscall (darwin-arm64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  4519. pkg syscall (darwin-arm64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  4520. pkg syscall (darwin-arm64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  4521. pkg syscall (darwin-arm64), func Pathconf(string, int) (int, error)
  4522. pkg syscall (darwin-arm64), func Pipe([]int) error
  4523. pkg syscall (darwin-arm64), func Pread(int, []uint8, int64) (int, error)
  4524. pkg syscall (darwin-arm64), func PtraceAttach(int) error
  4525. pkg syscall (darwin-arm64), func PtraceDetach(int) error
  4526. pkg syscall (darwin-arm64), func Pwrite(int, []uint8, int64) (int, error)
  4527. pkg syscall (darwin-arm64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  4528. pkg syscall (darwin-arm64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  4529. pkg syscall (darwin-arm64), func Read(int, []uint8) (int, error)
  4530. pkg syscall (darwin-arm64), func ReadDirent(int, []uint8) (int, error)
  4531. pkg syscall (darwin-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  4532. pkg syscall (darwin-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  4533. pkg syscall (darwin-arm64), func Revoke(string) error
  4534. pkg syscall (darwin-arm64), func RouteRIB //deprecated
  4535. pkg syscall (darwin-arm64), func RouteRIB(int, int) ([]uint8, error)
  4536. pkg syscall (darwin-arm64), func Seek(int, int64, int) (int64, error)
  4537. pkg syscall (darwin-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  4538. pkg syscall (darwin-arm64), func Sendfile(int, int, *int64, int) (int, error)
  4539. pkg syscall (darwin-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  4540. pkg syscall (darwin-arm64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
  4541. pkg syscall (darwin-arm64), func Sendto(int, []uint8, int, Sockaddr) error
  4542. pkg syscall (darwin-arm64), func SetBpf //deprecated
  4543. pkg syscall (darwin-arm64), func SetBpf(int, []BpfInsn) error
  4544. pkg syscall (darwin-arm64), func SetBpfBuflen //deprecated
  4545. pkg syscall (darwin-arm64), func SetBpfBuflen(int, int) (int, error)
  4546. pkg syscall (darwin-arm64), func SetBpfDatalink //deprecated
  4547. pkg syscall (darwin-arm64), func SetBpfDatalink(int, int) (int, error)
  4548. pkg syscall (darwin-arm64), func SetBpfHeadercmpl //deprecated
  4549. pkg syscall (darwin-arm64), func SetBpfHeadercmpl(int, int) error
  4550. pkg syscall (darwin-arm64), func SetBpfImmediate //deprecated
  4551. pkg syscall (darwin-arm64), func SetBpfImmediate(int, int) error
  4552. pkg syscall (darwin-arm64), func SetBpfInterface //deprecated
  4553. pkg syscall (darwin-arm64), func SetBpfInterface(int, string) error
  4554. pkg syscall (darwin-arm64), func SetBpfPromisc //deprecated
  4555. pkg syscall (darwin-arm64), func SetBpfPromisc(int, int) error
  4556. pkg syscall (darwin-arm64), func SetBpfTimeout //deprecated
  4557. pkg syscall (darwin-arm64), func SetBpfTimeout(int, *Timeval) error
  4558. pkg syscall (darwin-arm64), func SetKevent(*Kevent_t, int, int, int)
  4559. pkg syscall (darwin-arm64), func SetNonblock(int, bool) error
  4560. pkg syscall (darwin-arm64), func Setegid(int) error
  4561. pkg syscall (darwin-arm64), func Seteuid(int) error
  4562. pkg syscall (darwin-arm64), func Setgid(int) error
  4563. pkg syscall (darwin-arm64), func Setgroups([]int) error
  4564. pkg syscall (darwin-arm64), func Setlogin(string) error
  4565. pkg syscall (darwin-arm64), func Setpgid(int, int) error
  4566. pkg syscall (darwin-arm64), func Setpriority(int, int, int) error
  4567. pkg syscall (darwin-arm64), func Setprivexec(int) error
  4568. pkg syscall (darwin-arm64), func Setregid(int, int) error
  4569. pkg syscall (darwin-arm64), func Setreuid(int, int) error
  4570. pkg syscall (darwin-arm64), func Setrlimit(int, *Rlimit) error
  4571. pkg syscall (darwin-arm64), func Setsid() (int, error)
  4572. pkg syscall (darwin-arm64), func SetsockoptByte(int, int, int, uint8) error
  4573. pkg syscall (darwin-arm64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
  4574. pkg syscall (darwin-arm64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  4575. pkg syscall (darwin-arm64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  4576. pkg syscall (darwin-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  4577. pkg syscall (darwin-arm64), func SetsockoptInt(int, int, int, int) error
  4578. pkg syscall (darwin-arm64), func SetsockoptLinger(int, int, int, *Linger) error
  4579. pkg syscall (darwin-arm64), func SetsockoptString(int, int, int, string) error
  4580. pkg syscall (darwin-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error
  4581. pkg syscall (darwin-arm64), func Settimeofday(*Timeval) error
  4582. pkg syscall (darwin-arm64), func Setuid(int) error
  4583. pkg syscall (darwin-arm64), func Shutdown(int, int) error
  4584. pkg syscall (darwin-arm64), func SlicePtrFromStrings([]string) ([]*uint8, error)
  4585. pkg syscall (darwin-arm64), func Socket(int, int, int) (int, error)
  4586. pkg syscall (darwin-arm64), func Socketpair(int, int, int) ([2]int, error)
  4587. pkg syscall (darwin-arm64), func Stat(string, *Stat_t) error
  4588. pkg syscall (darwin-arm64), func Statfs(string, *Statfs_t) error
  4589. pkg syscall (darwin-arm64), func StringSlicePtr //deprecated
  4590. pkg syscall (darwin-arm64), func StringSlicePtr([]string) []*uint8
  4591. pkg syscall (darwin-arm64), func Sync() error
  4592. pkg syscall (darwin-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  4593. pkg syscall (darwin-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  4594. pkg syscall (darwin-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  4595. pkg syscall (darwin-arm64), func Sysctl(string) (string, error)
  4596. pkg syscall (darwin-arm64), func SysctlUint32(string) (uint32, error)
  4597. pkg syscall (darwin-arm64), func TimevalToNsec(Timeval) int64
  4598. pkg syscall (darwin-arm64), func Truncate(string, int64) error
  4599. pkg syscall (darwin-arm64), func Umask(int) int
  4600. pkg syscall (darwin-arm64), func Undelete(string) error
  4601. pkg syscall (darwin-arm64), func UnixRights(...int) []uint8
  4602. pkg syscall (darwin-arm64), func Unmount(string, int) error
  4603. pkg syscall (darwin-arm64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  4604. pkg syscall (darwin-arm64), func Write(int, []uint8) (int, error)
  4605. pkg syscall (darwin-arm64), method (*Cmsghdr) SetLen(int)
  4606. pkg syscall (darwin-arm64), method (*Iovec) SetLen(int)
  4607. pkg syscall (darwin-arm64), method (*Msghdr) SetControllen(int)
  4608. pkg syscall (darwin-arm64), type BpfHdr struct
  4609. pkg syscall (darwin-arm64), type BpfHdr struct, Caplen uint32
  4610. pkg syscall (darwin-arm64), type BpfHdr struct, Datalen uint32
  4611. pkg syscall (darwin-arm64), type BpfHdr struct, Hdrlen uint16
  4612. pkg syscall (darwin-arm64), type BpfHdr struct, Pad_cgo_0 [2]uint8
  4613. pkg syscall (darwin-arm64), type BpfHdr struct, Tstamp Timeval32
  4614. pkg syscall (darwin-arm64), type BpfInsn struct
  4615. pkg syscall (darwin-arm64), type BpfInsn struct, Code uint16
  4616. pkg syscall (darwin-arm64), type BpfInsn struct, Jf uint8
  4617. pkg syscall (darwin-arm64), type BpfInsn struct, Jt uint8
  4618. pkg syscall (darwin-arm64), type BpfInsn struct, K uint32
  4619. pkg syscall (darwin-arm64), type BpfProgram struct
  4620. pkg syscall (darwin-arm64), type BpfProgram struct, Insns *BpfInsn
  4621. pkg syscall (darwin-arm64), type BpfProgram struct, Len uint32
  4622. pkg syscall (darwin-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8
  4623. pkg syscall (darwin-arm64), type BpfStat struct
  4624. pkg syscall (darwin-arm64), type BpfStat struct, Drop uint32
  4625. pkg syscall (darwin-arm64), type BpfStat struct, Recv uint32
  4626. pkg syscall (darwin-arm64), type BpfVersion struct
  4627. pkg syscall (darwin-arm64), type BpfVersion struct, Major uint16
  4628. pkg syscall (darwin-arm64), type BpfVersion struct, Minor uint16
  4629. pkg syscall (darwin-arm64), type Cmsghdr struct
  4630. pkg syscall (darwin-arm64), type Cmsghdr struct, Len uint32
  4631. pkg syscall (darwin-arm64), type Cmsghdr struct, Level int32
  4632. pkg syscall (darwin-arm64), type Cmsghdr struct, Type int32
  4633. pkg syscall (darwin-arm64), type Credential struct
  4634. pkg syscall (darwin-arm64), type Credential struct, Gid uint32
  4635. pkg syscall (darwin-arm64), type Credential struct, Groups []uint32
  4636. pkg syscall (darwin-arm64), type Credential struct, NoSetGroups bool
  4637. pkg syscall (darwin-arm64), type Credential struct, Uid uint32
  4638. pkg syscall (darwin-arm64), type Dirent struct
  4639. pkg syscall (darwin-arm64), type Dirent struct, Ino uint64
  4640. pkg syscall (darwin-arm64), type Dirent struct, Name [1024]int8
  4641. pkg syscall (darwin-arm64), type Dirent struct, Namlen uint16
  4642. pkg syscall (darwin-arm64), type Dirent struct, Pad_cgo_0 [3]uint8
  4643. pkg syscall (darwin-arm64), type Dirent struct, Reclen uint16
  4644. pkg syscall (darwin-arm64), type Dirent struct, Seekoff uint64
  4645. pkg syscall (darwin-arm64), type Dirent struct, Type uint8
  4646. pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct
  4647. pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Buffer *uint8
  4648. pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Length uint64
  4649. pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Offset int64
  4650. pkg syscall (darwin-arm64), type FdSet struct
  4651. pkg syscall (darwin-arm64), type FdSet struct, Bits [32]int32
  4652. pkg syscall (darwin-arm64), type Flock_t struct
  4653. pkg syscall (darwin-arm64), type Flock_t struct, Len int64
  4654. pkg syscall (darwin-arm64), type Flock_t struct, Pid int32
  4655. pkg syscall (darwin-arm64), type Flock_t struct, Start int64
  4656. pkg syscall (darwin-arm64), type Flock_t struct, Type int16
  4657. pkg syscall (darwin-arm64), type Flock_t struct, Whence int16
  4658. pkg syscall (darwin-arm64), type Fsid struct
  4659. pkg syscall (darwin-arm64), type Fsid struct, Val [2]int32
  4660. pkg syscall (darwin-arm64), type Fstore_t struct
  4661. pkg syscall (darwin-arm64), type Fstore_t struct, Bytesalloc int64
  4662. pkg syscall (darwin-arm64), type Fstore_t struct, Flags uint32
  4663. pkg syscall (darwin-arm64), type Fstore_t struct, Length int64
  4664. pkg syscall (darwin-arm64), type Fstore_t struct, Offset int64
  4665. pkg syscall (darwin-arm64), type Fstore_t struct, Posmode int32
  4666. pkg syscall (darwin-arm64), type ICMPv6Filter struct
  4667. pkg syscall (darwin-arm64), type ICMPv6Filter struct, Filt [8]uint32
  4668. pkg syscall (darwin-arm64), type IPv6MTUInfo struct
  4669. pkg syscall (darwin-arm64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
  4670. pkg syscall (darwin-arm64), type IPv6MTUInfo struct, Mtu uint32
  4671. pkg syscall (darwin-arm64), type IfData struct
  4672. pkg syscall (darwin-arm64), type IfData struct, Addrlen uint8
  4673. pkg syscall (darwin-arm64), type IfData struct, Baudrate uint32
  4674. pkg syscall (darwin-arm64), type IfData struct, Collisions uint32
  4675. pkg syscall (darwin-arm64), type IfData struct, Hdrlen uint8
  4676. pkg syscall (darwin-arm64), type IfData struct, Hwassist uint32
  4677. pkg syscall (darwin-arm64), type IfData struct, Ibytes uint32
  4678. pkg syscall (darwin-arm64), type IfData struct, Ierrors uint32
  4679. pkg syscall (darwin-arm64), type IfData struct, Imcasts uint32
  4680. pkg syscall (darwin-arm64), type IfData struct, Ipackets uint32
  4681. pkg syscall (darwin-arm64), type IfData struct, Iqdrops uint32
  4682. pkg syscall (darwin-arm64), type IfData struct, Lastchange Timeval32
  4683. pkg syscall (darwin-arm64), type IfData struct, Metric uint32
  4684. pkg syscall (darwin-arm64), type IfData struct, Mtu uint32
  4685. pkg syscall (darwin-arm64), type IfData struct, Noproto uint32
  4686. pkg syscall (darwin-arm64), type IfData struct, Obytes uint32
  4687. pkg syscall (darwin-arm64), type IfData struct, Oerrors uint32
  4688. pkg syscall (darwin-arm64), type IfData struct, Omcasts uint32
  4689. pkg syscall (darwin-arm64), type IfData struct, Opackets uint32
  4690. pkg syscall (darwin-arm64), type IfData struct, Physical uint8
  4691. pkg syscall (darwin-arm64), type IfData struct, Recvquota uint8
  4692. pkg syscall (darwin-arm64), type IfData struct, Recvtiming uint32
  4693. pkg syscall (darwin-arm64), type IfData struct, Reserved1 uint32
  4694. pkg syscall (darwin-arm64), type IfData struct, Reserved2 uint32
  4695. pkg syscall (darwin-arm64), type IfData struct, Type uint8
  4696. pkg syscall (darwin-arm64), type IfData struct, Typelen uint8
  4697. pkg syscall (darwin-arm64), type IfData struct, Unused1 uint8
  4698. pkg syscall (darwin-arm64), type IfData struct, Unused2 uint32
  4699. pkg syscall (darwin-arm64), type IfData struct, Xmitquota uint8
  4700. pkg syscall (darwin-arm64), type IfData struct, Xmittiming uint32
  4701. pkg syscall (darwin-arm64), type IfMsghdr struct
  4702. pkg syscall (darwin-arm64), type IfMsghdr struct, Addrs int32
  4703. pkg syscall (darwin-arm64), type IfMsghdr struct, Data IfData
  4704. pkg syscall (darwin-arm64), type IfMsghdr struct, Flags int32
  4705. pkg syscall (darwin-arm64), type IfMsghdr struct, Index uint16
  4706. pkg syscall (darwin-arm64), type IfMsghdr struct, Msglen uint16
  4707. pkg syscall (darwin-arm64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  4708. pkg syscall (darwin-arm64), type IfMsghdr struct, Type uint8
  4709. pkg syscall (darwin-arm64), type IfMsghdr struct, Version uint8
  4710. pkg syscall (darwin-arm64), type IfaMsghdr struct
  4711. pkg syscall (darwin-arm64), type IfaMsghdr struct, Addrs int32
  4712. pkg syscall (darwin-arm64), type IfaMsghdr struct, Flags int32
  4713. pkg syscall (darwin-arm64), type IfaMsghdr struct, Index uint16
  4714. pkg syscall (darwin-arm64), type IfaMsghdr struct, Metric int32
  4715. pkg syscall (darwin-arm64), type IfaMsghdr struct, Msglen uint16
  4716. pkg syscall (darwin-arm64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
  4717. pkg syscall (darwin-arm64), type IfaMsghdr struct, Type uint8
  4718. pkg syscall (darwin-arm64), type IfaMsghdr struct, Version uint8
  4719. pkg syscall (darwin-arm64), type IfmaMsghdr struct
  4720. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Addrs int32
  4721. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Flags int32
  4722. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Index uint16
  4723. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Msglen uint16
  4724. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
  4725. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Type uint8
  4726. pkg syscall (darwin-arm64), type IfmaMsghdr struct, Version uint8
  4727. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct
  4728. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Addrs int32
  4729. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Flags int32
  4730. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Index uint16
  4731. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Msglen uint16
  4732. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
  4733. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Refcount int32
  4734. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Type uint8
  4735. pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Version uint8
  4736. pkg syscall (darwin-arm64), type Inet4Pktinfo struct
  4737. pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Addr [4]uint8
  4738. pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Ifindex uint32
  4739. pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Spec_dst [4]uint8
  4740. pkg syscall (darwin-arm64), type Inet6Pktinfo struct
  4741. pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Addr [16]uint8
  4742. pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Ifindex uint32
  4743. pkg syscall (darwin-arm64), type InterfaceAddrMessage //deprecated
  4744. pkg syscall (darwin-arm64), type InterfaceAddrMessage struct
  4745. pkg syscall (darwin-arm64), type InterfaceAddrMessage struct, Data []uint8
  4746. pkg syscall (darwin-arm64), type InterfaceAddrMessage struct, Header IfaMsghdr
  4747. pkg syscall (darwin-arm64), type InterfaceMessage //deprecated
  4748. pkg syscall (darwin-arm64), type InterfaceMessage struct
  4749. pkg syscall (darwin-arm64), type InterfaceMessage struct, Data []uint8
  4750. pkg syscall (darwin-arm64), type InterfaceMessage struct, Header IfMsghdr
  4751. pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage //deprecated
  4752. pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct
  4753. pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct, Data []uint8
  4754. pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
  4755. pkg syscall (darwin-arm64), type Iovec struct
  4756. pkg syscall (darwin-arm64), type Iovec struct, Base *uint8
  4757. pkg syscall (darwin-arm64), type Iovec struct, Len uint64
  4758. pkg syscall (darwin-arm64), type Kevent_t struct
  4759. pkg syscall (darwin-arm64), type Kevent_t struct, Data int64
  4760. pkg syscall (darwin-arm64), type Kevent_t struct, Fflags uint32
  4761. pkg syscall (darwin-arm64), type Kevent_t struct, Filter int16
  4762. pkg syscall (darwin-arm64), type Kevent_t struct, Flags uint16
  4763. pkg syscall (darwin-arm64), type Kevent_t struct, Ident uint64
  4764. pkg syscall (darwin-arm64), type Kevent_t struct, Udata *uint8
  4765. pkg syscall (darwin-arm64), type Log2phys_t struct
  4766. pkg syscall (darwin-arm64), type Log2phys_t struct, Contigbytes int64
  4767. pkg syscall (darwin-arm64), type Log2phys_t struct, Devoffset int64
  4768. pkg syscall (darwin-arm64), type Log2phys_t struct, Flags uint32
  4769. pkg syscall (darwin-arm64), type Msghdr struct
  4770. pkg syscall (darwin-arm64), type Msghdr struct, Control *uint8
  4771. pkg syscall (darwin-arm64), type Msghdr struct, Controllen uint32
  4772. pkg syscall (darwin-arm64), type Msghdr struct, Flags int32
  4773. pkg syscall (darwin-arm64), type Msghdr struct, Iov *Iovec
  4774. pkg syscall (darwin-arm64), type Msghdr struct, Iovlen int32
  4775. pkg syscall (darwin-arm64), type Msghdr struct, Name *uint8
  4776. pkg syscall (darwin-arm64), type Msghdr struct, Namelen uint32
  4777. pkg syscall (darwin-arm64), type Msghdr struct, Pad_cgo_0 [4]uint8
  4778. pkg syscall (darwin-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8
  4779. pkg syscall (darwin-arm64), type Radvisory_t struct
  4780. pkg syscall (darwin-arm64), type Radvisory_t struct, Count int32
  4781. pkg syscall (darwin-arm64), type Radvisory_t struct, Offset int64
  4782. pkg syscall (darwin-arm64), type Radvisory_t struct, Pad_cgo_0 [4]uint8
  4783. pkg syscall (darwin-arm64), type RawSockaddr struct, Data [14]int8
  4784. pkg syscall (darwin-arm64), type RawSockaddr struct, Family uint8
  4785. pkg syscall (darwin-arm64), type RawSockaddr struct, Len uint8
  4786. pkg syscall (darwin-arm64), type RawSockaddrAny struct, Pad [92]int8
  4787. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct
  4788. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Alen uint8
  4789. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Data [12]int8
  4790. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Family uint8
  4791. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Index uint16
  4792. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Len uint8
  4793. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Nlen uint8
  4794. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Slen uint8
  4795. pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Type uint8
  4796. pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Family uint8
  4797. pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Len uint8
  4798. pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Zero [8]int8
  4799. pkg syscall (darwin-arm64), type RawSockaddrInet6 struct, Family uint8
  4800. pkg syscall (darwin-arm64), type RawSockaddrInet6 struct, Len uint8
  4801. pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Family uint8
  4802. pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Len uint8
  4803. pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Path [104]int8
  4804. pkg syscall (darwin-arm64), type Rlimit struct
  4805. pkg syscall (darwin-arm64), type Rlimit struct, Cur uint64
  4806. pkg syscall (darwin-arm64), type Rlimit struct, Max uint64
  4807. pkg syscall (darwin-arm64), type RouteMessage //deprecated
  4808. pkg syscall (darwin-arm64), type RouteMessage struct
  4809. pkg syscall (darwin-arm64), type RouteMessage struct, Data []uint8
  4810. pkg syscall (darwin-arm64), type RouteMessage struct, Header RtMsghdr
  4811. pkg syscall (darwin-arm64), type RoutingMessage //deprecated
  4812. pkg syscall (darwin-arm64), type RoutingMessage interface, unexported methods
  4813. pkg syscall (darwin-arm64), type RtMetrics struct
  4814. pkg syscall (darwin-arm64), type RtMetrics struct, Expire int32
  4815. pkg syscall (darwin-arm64), type RtMetrics struct, Filler [4]uint32
  4816. pkg syscall (darwin-arm64), type RtMetrics struct, Hopcount uint32
  4817. pkg syscall (darwin-arm64), type RtMetrics struct, Locks uint32
  4818. pkg syscall (darwin-arm64), type RtMetrics struct, Mtu uint32
  4819. pkg syscall (darwin-arm64), type RtMetrics struct, Pksent uint32
  4820. pkg syscall (darwin-arm64), type RtMetrics struct, Recvpipe uint32
  4821. pkg syscall (darwin-arm64), type RtMetrics struct, Rtt uint32
  4822. pkg syscall (darwin-arm64), type RtMetrics struct, Rttvar uint32
  4823. pkg syscall (darwin-arm64), type RtMetrics struct, Sendpipe uint32
  4824. pkg syscall (darwin-arm64), type RtMetrics struct, Ssthresh uint32
  4825. pkg syscall (darwin-arm64), type RtMsghdr struct
  4826. pkg syscall (darwin-arm64), type RtMsghdr struct, Addrs int32
  4827. pkg syscall (darwin-arm64), type RtMsghdr struct, Errno int32
  4828. pkg syscall (darwin-arm64), type RtMsghdr struct, Flags int32
  4829. pkg syscall (darwin-arm64), type RtMsghdr struct, Index uint16
  4830. pkg syscall (darwin-arm64), type RtMsghdr struct, Inits uint32
  4831. pkg syscall (darwin-arm64), type RtMsghdr struct, Msglen uint16
  4832. pkg syscall (darwin-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  4833. pkg syscall (darwin-arm64), type RtMsghdr struct, Pid int32
  4834. pkg syscall (darwin-arm64), type RtMsghdr struct, Rmx RtMetrics
  4835. pkg syscall (darwin-arm64), type RtMsghdr struct, Seq int32
  4836. pkg syscall (darwin-arm64), type RtMsghdr struct, Type uint8
  4837. pkg syscall (darwin-arm64), type RtMsghdr struct, Use int32
  4838. pkg syscall (darwin-arm64), type RtMsghdr struct, Version uint8
  4839. pkg syscall (darwin-arm64), type Rusage struct, Idrss int64
  4840. pkg syscall (darwin-arm64), type Rusage struct, Inblock int64
  4841. pkg syscall (darwin-arm64), type Rusage struct, Isrss int64
  4842. pkg syscall (darwin-arm64), type Rusage struct, Ixrss int64
  4843. pkg syscall (darwin-arm64), type Rusage struct, Majflt int64
  4844. pkg syscall (darwin-arm64), type Rusage struct, Maxrss int64
  4845. pkg syscall (darwin-arm64), type Rusage struct, Minflt int64
  4846. pkg syscall (darwin-arm64), type Rusage struct, Msgrcv int64
  4847. pkg syscall (darwin-arm64), type Rusage struct, Msgsnd int64
  4848. pkg syscall (darwin-arm64), type Rusage struct, Nivcsw int64
  4849. pkg syscall (darwin-arm64), type Rusage struct, Nsignals int64
  4850. pkg syscall (darwin-arm64), type Rusage struct, Nswap int64
  4851. pkg syscall (darwin-arm64), type Rusage struct, Nvcsw int64
  4852. pkg syscall (darwin-arm64), type Rusage struct, Oublock int64
  4853. pkg syscall (darwin-arm64), type Rusage struct, Stime Timeval
  4854. pkg syscall (darwin-arm64), type Rusage struct, Utime Timeval
  4855. pkg syscall (darwin-arm64), type SockaddrDatalink struct
  4856. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Alen uint8
  4857. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Data [12]int8
  4858. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Family uint8
  4859. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Index uint16
  4860. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Len uint8
  4861. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Nlen uint8
  4862. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Slen uint8
  4863. pkg syscall (darwin-arm64), type SockaddrDatalink struct, Type uint8
  4864. pkg syscall (darwin-arm64), type SocketControlMessage struct
  4865. pkg syscall (darwin-arm64), type SocketControlMessage struct, Data []uint8
  4866. pkg syscall (darwin-arm64), type SocketControlMessage struct, Header Cmsghdr
  4867. pkg syscall (darwin-arm64), type Stat_t struct
  4868. pkg syscall (darwin-arm64), type Stat_t struct, Atimespec Timespec
  4869. pkg syscall (darwin-arm64), type Stat_t struct, Birthtimespec Timespec
  4870. pkg syscall (darwin-arm64), type Stat_t struct, Blksize int32
  4871. pkg syscall (darwin-arm64), type Stat_t struct, Blocks int64
  4872. pkg syscall (darwin-arm64), type Stat_t struct, Ctimespec Timespec
  4873. pkg syscall (darwin-arm64), type Stat_t struct, Dev int32
  4874. pkg syscall (darwin-arm64), type Stat_t struct, Flags uint32
  4875. pkg syscall (darwin-arm64), type Stat_t struct, Gen uint32
  4876. pkg syscall (darwin-arm64), type Stat_t struct, Gid uint32
  4877. pkg syscall (darwin-arm64), type Stat_t struct, Ino uint64
  4878. pkg syscall (darwin-arm64), type Stat_t struct, Lspare int32
  4879. pkg syscall (darwin-arm64), type Stat_t struct, Mode uint16
  4880. pkg syscall (darwin-arm64), type Stat_t struct, Mtimespec Timespec
  4881. pkg syscall (darwin-arm64), type Stat_t struct, Nlink uint16
  4882. pkg syscall (darwin-arm64), type Stat_t struct, Pad_cgo_0 [4]uint8
  4883. pkg syscall (darwin-arm64), type Stat_t struct, Qspare [2]int64
  4884. pkg syscall (darwin-arm64), type Stat_t struct, Rdev int32
  4885. pkg syscall (darwin-arm64), type Stat_t struct, Size int64
  4886. pkg syscall (darwin-arm64), type Stat_t struct, Uid uint32
  4887. pkg syscall (darwin-arm64), type Statfs_t struct
  4888. pkg syscall (darwin-arm64), type Statfs_t struct, Bavail uint64
  4889. pkg syscall (darwin-arm64), type Statfs_t struct, Bfree uint64
  4890. pkg syscall (darwin-arm64), type Statfs_t struct, Blocks uint64
  4891. pkg syscall (darwin-arm64), type Statfs_t struct, Bsize uint32
  4892. pkg syscall (darwin-arm64), type Statfs_t struct, Ffree uint64
  4893. pkg syscall (darwin-arm64), type Statfs_t struct, Files uint64
  4894. pkg syscall (darwin-arm64), type Statfs_t struct, Flags uint32
  4895. pkg syscall (darwin-arm64), type Statfs_t struct, Fsid Fsid
  4896. pkg syscall (darwin-arm64), type Statfs_t struct, Fssubtype uint32
  4897. pkg syscall (darwin-arm64), type Statfs_t struct, Fstypename [16]int8
  4898. pkg syscall (darwin-arm64), type Statfs_t struct, Iosize int32
  4899. pkg syscall (darwin-arm64), type Statfs_t struct, Mntfromname [1024]int8
  4900. pkg syscall (darwin-arm64), type Statfs_t struct, Mntonname [1024]int8
  4901. pkg syscall (darwin-arm64), type Statfs_t struct, Owner uint32
  4902. pkg syscall (darwin-arm64), type Statfs_t struct, Reserved [8]uint32
  4903. pkg syscall (darwin-arm64), type Statfs_t struct, Type uint32
  4904. pkg syscall (darwin-arm64), type SysProcAttr struct, Chroot string
  4905. pkg syscall (darwin-arm64), type SysProcAttr struct, Credential *Credential
  4906. pkg syscall (darwin-arm64), type SysProcAttr struct, Ctty int
  4907. pkg syscall (darwin-arm64), type SysProcAttr struct, Foreground bool
  4908. pkg syscall (darwin-arm64), type SysProcAttr struct, Noctty bool
  4909. pkg syscall (darwin-arm64), type SysProcAttr struct, Pgid int
  4910. pkg syscall (darwin-arm64), type SysProcAttr struct, Ptrace bool
  4911. pkg syscall (darwin-arm64), type SysProcAttr struct, Setctty bool
  4912. pkg syscall (darwin-arm64), type SysProcAttr struct, Setpgid bool
  4913. pkg syscall (darwin-arm64), type SysProcAttr struct, Setsid bool
  4914. pkg syscall (darwin-arm64), type Termios struct
  4915. pkg syscall (darwin-arm64), type Termios struct, Cc [20]uint8
  4916. pkg syscall (darwin-arm64), type Termios struct, Cflag uint64
  4917. pkg syscall (darwin-arm64), type Termios struct, Iflag uint64
  4918. pkg syscall (darwin-arm64), type Termios struct, Ispeed uint64
  4919. pkg syscall (darwin-arm64), type Termios struct, Lflag uint64
  4920. pkg syscall (darwin-arm64), type Termios struct, Oflag uint64
  4921. pkg syscall (darwin-arm64), type Termios struct, Ospeed uint64
  4922. pkg syscall (darwin-arm64), type Termios struct, Pad_cgo_0 [4]uint8
  4923. pkg syscall (darwin-arm64), type Timespec struct, Nsec int64
  4924. pkg syscall (darwin-arm64), type Timespec struct, Sec int64
  4925. pkg syscall (darwin-arm64), type Timeval struct, Pad_cgo_0 [4]uint8
  4926. pkg syscall (darwin-arm64), type Timeval struct, Sec int64
  4927. pkg syscall (darwin-arm64), type Timeval struct, Usec int32
  4928. pkg syscall (darwin-arm64), type Timeval32 struct
  4929. pkg syscall (darwin-arm64), type Timeval32 struct, Sec int32
  4930. pkg syscall (darwin-arm64), type Timeval32 struct, Usec int32
  4931. pkg syscall (darwin-arm64), type WaitStatus uint32
  4932. pkg syscall (darwin-arm64), var Stderr int
  4933. pkg syscall (darwin-arm64), var Stdin int
  4934. pkg syscall (darwin-arm64), var Stdout int
  4935. pkg syscall (darwin-arm64-cgo), const AF_APPLETALK = 16
  4936. pkg syscall (darwin-arm64-cgo), const AF_APPLETALK ideal-int
  4937. pkg syscall (darwin-arm64-cgo), const AF_CCITT = 10
  4938. pkg syscall (darwin-arm64-cgo), const AF_CCITT ideal-int
  4939. pkg syscall (darwin-arm64-cgo), const AF_CHAOS = 5
  4940. pkg syscall (darwin-arm64-cgo), const AF_CHAOS ideal-int
  4941. pkg syscall (darwin-arm64-cgo), const AF_CNT = 21
  4942. pkg syscall (darwin-arm64-cgo), const AF_CNT ideal-int
  4943. pkg syscall (darwin-arm64-cgo), const AF_COIP = 20
  4944. pkg syscall (darwin-arm64-cgo), const AF_COIP ideal-int
  4945. pkg syscall (darwin-arm64-cgo), const AF_DATAKIT = 9
  4946. pkg syscall (darwin-arm64-cgo), const AF_DATAKIT ideal-int
  4947. pkg syscall (darwin-arm64-cgo), const AF_DECnet = 12
  4948. pkg syscall (darwin-arm64-cgo), const AF_DECnet ideal-int
  4949. pkg syscall (darwin-arm64-cgo), const AF_DLI = 13
  4950. pkg syscall (darwin-arm64-cgo), const AF_DLI ideal-int
  4951. pkg syscall (darwin-arm64-cgo), const AF_E164 = 28
  4952. pkg syscall (darwin-arm64-cgo), const AF_E164 ideal-int
  4953. pkg syscall (darwin-arm64-cgo), const AF_ECMA = 8
  4954. pkg syscall (darwin-arm64-cgo), const AF_ECMA ideal-int
  4955. pkg syscall (darwin-arm64-cgo), const AF_HYLINK = 15
  4956. pkg syscall (darwin-arm64-cgo), const AF_HYLINK ideal-int
  4957. pkg syscall (darwin-arm64-cgo), const AF_IEEE80211 = 37
  4958. pkg syscall (darwin-arm64-cgo), const AF_IEEE80211 ideal-int
  4959. pkg syscall (darwin-arm64-cgo), const AF_IMPLINK = 3
  4960. pkg syscall (darwin-arm64-cgo), const AF_IMPLINK ideal-int
  4961. pkg syscall (darwin-arm64-cgo), const AF_INET6 = 30
  4962. pkg syscall (darwin-arm64-cgo), const AF_IPX = 23
  4963. pkg syscall (darwin-arm64-cgo), const AF_IPX ideal-int
  4964. pkg syscall (darwin-arm64-cgo), const AF_ISDN = 28
  4965. pkg syscall (darwin-arm64-cgo), const AF_ISDN ideal-int
  4966. pkg syscall (darwin-arm64-cgo), const AF_ISO = 7
  4967. pkg syscall (darwin-arm64-cgo), const AF_ISO ideal-int
  4968. pkg syscall (darwin-arm64-cgo), const AF_LAT = 14
  4969. pkg syscall (darwin-arm64-cgo), const AF_LAT ideal-int
  4970. pkg syscall (darwin-arm64-cgo), const AF_LINK = 18
  4971. pkg syscall (darwin-arm64-cgo), const AF_LINK ideal-int
  4972. pkg syscall (darwin-arm64-cgo), const AF_LOCAL = 1
  4973. pkg syscall (darwin-arm64-cgo), const AF_LOCAL ideal-int
  4974. pkg syscall (darwin-arm64-cgo), const AF_MAX = 40
  4975. pkg syscall (darwin-arm64-cgo), const AF_MAX ideal-int
  4976. pkg syscall (darwin-arm64-cgo), const AF_NATM = 31
  4977. pkg syscall (darwin-arm64-cgo), const AF_NATM ideal-int
  4978. pkg syscall (darwin-arm64-cgo), const AF_NDRV = 27
  4979. pkg syscall (darwin-arm64-cgo), const AF_NDRV ideal-int
  4980. pkg syscall (darwin-arm64-cgo), const AF_NETBIOS = 33
  4981. pkg syscall (darwin-arm64-cgo), const AF_NETBIOS ideal-int
  4982. pkg syscall (darwin-arm64-cgo), const AF_NS = 6
  4983. pkg syscall (darwin-arm64-cgo), const AF_NS ideal-int
  4984. pkg syscall (darwin-arm64-cgo), const AF_OSI = 7
  4985. pkg syscall (darwin-arm64-cgo), const AF_OSI ideal-int
  4986. pkg syscall (darwin-arm64-cgo), const AF_PPP = 34
  4987. pkg syscall (darwin-arm64-cgo), const AF_PPP ideal-int
  4988. pkg syscall (darwin-arm64-cgo), const AF_PUP = 4
  4989. pkg syscall (darwin-arm64-cgo), const AF_PUP ideal-int
  4990. pkg syscall (darwin-arm64-cgo), const AF_RESERVED_36 = 36
  4991. pkg syscall (darwin-arm64-cgo), const AF_RESERVED_36 ideal-int
  4992. pkg syscall (darwin-arm64-cgo), const AF_ROUTE = 17
  4993. pkg syscall (darwin-arm64-cgo), const AF_ROUTE ideal-int
  4994. pkg syscall (darwin-arm64-cgo), const AF_SIP = 24
  4995. pkg syscall (darwin-arm64-cgo), const AF_SIP ideal-int
  4996. pkg syscall (darwin-arm64-cgo), const AF_SNA = 11
  4997. pkg syscall (darwin-arm64-cgo), const AF_SNA ideal-int
  4998. pkg syscall (darwin-arm64-cgo), const AF_SYSTEM = 32
  4999. pkg syscall (darwin-arm64-cgo), const AF_SYSTEM ideal-int
  5000. pkg syscall (darwin-arm64-cgo), const AF_UTUN = 38
  5001. pkg syscall (darwin-arm64-cgo), const AF_UTUN ideal-int
  5002. pkg syscall (darwin-arm64-cgo), const B0 = 0
  5003. pkg syscall (darwin-arm64-cgo), const B0 ideal-int
  5004. pkg syscall (darwin-arm64-cgo), const B110 = 110
  5005. pkg syscall (darwin-arm64-cgo), const B110 ideal-int
  5006. pkg syscall (darwin-arm64-cgo), const B115200 = 115200
  5007. pkg syscall (darwin-arm64-cgo), const B115200 ideal-int
  5008. pkg syscall (darwin-arm64-cgo), const B1200 = 1200
  5009. pkg syscall (darwin-arm64-cgo), const B1200 ideal-int
  5010. pkg syscall (darwin-arm64-cgo), const B134 = 134
  5011. pkg syscall (darwin-arm64-cgo), const B134 ideal-int
  5012. pkg syscall (darwin-arm64-cgo), const B14400 = 14400
  5013. pkg syscall (darwin-arm64-cgo), const B14400 ideal-int
  5014. pkg syscall (darwin-arm64-cgo), const B150 = 150
  5015. pkg syscall (darwin-arm64-cgo), const B150 ideal-int
  5016. pkg syscall (darwin-arm64-cgo), const B1800 = 1800
  5017. pkg syscall (darwin-arm64-cgo), const B1800 ideal-int
  5018. pkg syscall (darwin-arm64-cgo), const B19200 = 19200
  5019. pkg syscall (darwin-arm64-cgo), const B19200 ideal-int
  5020. pkg syscall (darwin-arm64-cgo), const B200 = 200
  5021. pkg syscall (darwin-arm64-cgo), const B200 ideal-int
  5022. pkg syscall (darwin-arm64-cgo), const B230400 = 230400
  5023. pkg syscall (darwin-arm64-cgo), const B230400 ideal-int
  5024. pkg syscall (darwin-arm64-cgo), const B2400 = 2400
  5025. pkg syscall (darwin-arm64-cgo), const B2400 ideal-int
  5026. pkg syscall (darwin-arm64-cgo), const B28800 = 28800
  5027. pkg syscall (darwin-arm64-cgo), const B28800 ideal-int
  5028. pkg syscall (darwin-arm64-cgo), const B300 = 300
  5029. pkg syscall (darwin-arm64-cgo), const B300 ideal-int
  5030. pkg syscall (darwin-arm64-cgo), const B38400 = 38400
  5031. pkg syscall (darwin-arm64-cgo), const B38400 ideal-int
  5032. pkg syscall (darwin-arm64-cgo), const B4800 = 4800
  5033. pkg syscall (darwin-arm64-cgo), const B4800 ideal-int
  5034. pkg syscall (darwin-arm64-cgo), const B50 = 50
  5035. pkg syscall (darwin-arm64-cgo), const B50 ideal-int
  5036. pkg syscall (darwin-arm64-cgo), const B57600 = 57600
  5037. pkg syscall (darwin-arm64-cgo), const B57600 ideal-int
  5038. pkg syscall (darwin-arm64-cgo), const B600 = 600
  5039. pkg syscall (darwin-arm64-cgo), const B600 ideal-int
  5040. pkg syscall (darwin-arm64-cgo), const B7200 = 7200
  5041. pkg syscall (darwin-arm64-cgo), const B7200 ideal-int
  5042. pkg syscall (darwin-arm64-cgo), const B75 = 75
  5043. pkg syscall (darwin-arm64-cgo), const B75 ideal-int
  5044. pkg syscall (darwin-arm64-cgo), const B76800 = 76800
  5045. pkg syscall (darwin-arm64-cgo), const B76800 ideal-int
  5046. pkg syscall (darwin-arm64-cgo), const B9600 = 9600
  5047. pkg syscall (darwin-arm64-cgo), const B9600 ideal-int
  5048. pkg syscall (darwin-arm64-cgo), const BIOCFLUSH = 536887912
  5049. pkg syscall (darwin-arm64-cgo), const BIOCFLUSH ideal-int
  5050. pkg syscall (darwin-arm64-cgo), const BIOCGBLEN = 1074020966
  5051. pkg syscall (darwin-arm64-cgo), const BIOCGBLEN ideal-int
  5052. pkg syscall (darwin-arm64-cgo), const BIOCGDLT = 1074020970
  5053. pkg syscall (darwin-arm64-cgo), const BIOCGDLT ideal-int
  5054. pkg syscall (darwin-arm64-cgo), const BIOCGDLTLIST = 3222028921
  5055. pkg syscall (darwin-arm64-cgo), const BIOCGDLTLIST ideal-int
  5056. pkg syscall (darwin-arm64-cgo), const BIOCGETIF = 1075855979
  5057. pkg syscall (darwin-arm64-cgo), const BIOCGETIF ideal-int
  5058. pkg syscall (darwin-arm64-cgo), const BIOCGHDRCMPLT = 1074020980
  5059. pkg syscall (darwin-arm64-cgo), const BIOCGHDRCMPLT ideal-int
  5060. pkg syscall (darwin-arm64-cgo), const BIOCGRSIG = 1074020978
  5061. pkg syscall (darwin-arm64-cgo), const BIOCGRSIG ideal-int
  5062. pkg syscall (darwin-arm64-cgo), const BIOCGRTIMEOUT = 1074807406
  5063. pkg syscall (darwin-arm64-cgo), const BIOCGRTIMEOUT ideal-int
  5064. pkg syscall (darwin-arm64-cgo), const BIOCGSEESENT = 1074020982
  5065. pkg syscall (darwin-arm64-cgo), const BIOCGSEESENT ideal-int
  5066. pkg syscall (darwin-arm64-cgo), const BIOCGSTATS = 1074283119
  5067. pkg syscall (darwin-arm64-cgo), const BIOCGSTATS ideal-int
  5068. pkg syscall (darwin-arm64-cgo), const BIOCIMMEDIATE = 2147762800
  5069. pkg syscall (darwin-arm64-cgo), const BIOCIMMEDIATE ideal-int
  5070. pkg syscall (darwin-arm64-cgo), const BIOCPROMISC = 536887913
  5071. pkg syscall (darwin-arm64-cgo), const BIOCPROMISC ideal-int
  5072. pkg syscall (darwin-arm64-cgo), const BIOCSBLEN = 3221504614
  5073. pkg syscall (darwin-arm64-cgo), const BIOCSBLEN ideal-int
  5074. pkg syscall (darwin-arm64-cgo), const BIOCSDLT = 2147762808
  5075. pkg syscall (darwin-arm64-cgo), const BIOCSDLT ideal-int
  5076. pkg syscall (darwin-arm64-cgo), const BIOCSETF = 2148549223
  5077. pkg syscall (darwin-arm64-cgo), const BIOCSETF ideal-int
  5078. pkg syscall (darwin-arm64-cgo), const BIOCSETIF = 2149597804
  5079. pkg syscall (darwin-arm64-cgo), const BIOCSETIF ideal-int
  5080. pkg syscall (darwin-arm64-cgo), const BIOCSHDRCMPLT = 2147762805
  5081. pkg syscall (darwin-arm64-cgo), const BIOCSHDRCMPLT ideal-int
  5082. pkg syscall (darwin-arm64-cgo), const BIOCSRSIG = 2147762803
  5083. pkg syscall (darwin-arm64-cgo), const BIOCSRSIG ideal-int
  5084. pkg syscall (darwin-arm64-cgo), const BIOCSRTIMEOUT = 2148549229
  5085. pkg syscall (darwin-arm64-cgo), const BIOCSRTIMEOUT ideal-int
  5086. pkg syscall (darwin-arm64-cgo), const BIOCSSEESENT = 2147762807
  5087. pkg syscall (darwin-arm64-cgo), const BIOCSSEESENT ideal-int
  5088. pkg syscall (darwin-arm64-cgo), const BIOCVERSION = 1074020977
  5089. pkg syscall (darwin-arm64-cgo), const BIOCVERSION ideal-int
  5090. pkg syscall (darwin-arm64-cgo), const BPF_A = 16
  5091. pkg syscall (darwin-arm64-cgo), const BPF_A ideal-int
  5092. pkg syscall (darwin-arm64-cgo), const BPF_ABS = 32
  5093. pkg syscall (darwin-arm64-cgo), const BPF_ABS ideal-int
  5094. pkg syscall (darwin-arm64-cgo), const BPF_ADD = 0
  5095. pkg syscall (darwin-arm64-cgo), const BPF_ADD ideal-int
  5096. pkg syscall (darwin-arm64-cgo), const BPF_ALIGNMENT = 4
  5097. pkg syscall (darwin-arm64-cgo), const BPF_ALIGNMENT ideal-int
  5098. pkg syscall (darwin-arm64-cgo), const BPF_ALU = 4
  5099. pkg syscall (darwin-arm64-cgo), const BPF_ALU ideal-int
  5100. pkg syscall (darwin-arm64-cgo), const BPF_AND = 80
  5101. pkg syscall (darwin-arm64-cgo), const BPF_AND ideal-int
  5102. pkg syscall (darwin-arm64-cgo), const BPF_B = 16
  5103. pkg syscall (darwin-arm64-cgo), const BPF_B ideal-int
  5104. pkg syscall (darwin-arm64-cgo), const BPF_DIV = 48
  5105. pkg syscall (darwin-arm64-cgo), const BPF_DIV ideal-int
  5106. pkg syscall (darwin-arm64-cgo), const BPF_H = 8
  5107. pkg syscall (darwin-arm64-cgo), const BPF_H ideal-int
  5108. pkg syscall (darwin-arm64-cgo), const BPF_IMM = 0
  5109. pkg syscall (darwin-arm64-cgo), const BPF_IMM ideal-int
  5110. pkg syscall (darwin-arm64-cgo), const BPF_IND = 64
  5111. pkg syscall (darwin-arm64-cgo), const BPF_IND ideal-int
  5112. pkg syscall (darwin-arm64-cgo), const BPF_JA = 0
  5113. pkg syscall (darwin-arm64-cgo), const BPF_JA ideal-int
  5114. pkg syscall (darwin-arm64-cgo), const BPF_JEQ = 16
  5115. pkg syscall (darwin-arm64-cgo), const BPF_JEQ ideal-int
  5116. pkg syscall (darwin-arm64-cgo), const BPF_JGE = 48
  5117. pkg syscall (darwin-arm64-cgo), const BPF_JGE ideal-int
  5118. pkg syscall (darwin-arm64-cgo), const BPF_JGT = 32
  5119. pkg syscall (darwin-arm64-cgo), const BPF_JGT ideal-int
  5120. pkg syscall (darwin-arm64-cgo), const BPF_JMP = 5
  5121. pkg syscall (darwin-arm64-cgo), const BPF_JMP ideal-int
  5122. pkg syscall (darwin-arm64-cgo), const BPF_JSET = 64
  5123. pkg syscall (darwin-arm64-cgo), const BPF_JSET ideal-int
  5124. pkg syscall (darwin-arm64-cgo), const BPF_K = 0
  5125. pkg syscall (darwin-arm64-cgo), const BPF_K ideal-int
  5126. pkg syscall (darwin-arm64-cgo), const BPF_LD = 0
  5127. pkg syscall (darwin-arm64-cgo), const BPF_LD ideal-int
  5128. pkg syscall (darwin-arm64-cgo), const BPF_LDX = 1
  5129. pkg syscall (darwin-arm64-cgo), const BPF_LDX ideal-int
  5130. pkg syscall (darwin-arm64-cgo), const BPF_LEN = 128
  5131. pkg syscall (darwin-arm64-cgo), const BPF_LEN ideal-int
  5132. pkg syscall (darwin-arm64-cgo), const BPF_LSH = 96
  5133. pkg syscall (darwin-arm64-cgo), const BPF_LSH ideal-int
  5134. pkg syscall (darwin-arm64-cgo), const BPF_MAJOR_VERSION = 1
  5135. pkg syscall (darwin-arm64-cgo), const BPF_MAJOR_VERSION ideal-int
  5136. pkg syscall (darwin-arm64-cgo), const BPF_MAXBUFSIZE = 524288
  5137. pkg syscall (darwin-arm64-cgo), const BPF_MAXBUFSIZE ideal-int
  5138. pkg syscall (darwin-arm64-cgo), const BPF_MAXINSNS = 512
  5139. pkg syscall (darwin-arm64-cgo), const BPF_MAXINSNS ideal-int
  5140. pkg syscall (darwin-arm64-cgo), const BPF_MEM = 96
  5141. pkg syscall (darwin-arm64-cgo), const BPF_MEM ideal-int
  5142. pkg syscall (darwin-arm64-cgo), const BPF_MEMWORDS = 16
  5143. pkg syscall (darwin-arm64-cgo), const BPF_MEMWORDS ideal-int
  5144. pkg syscall (darwin-arm64-cgo), const BPF_MINBUFSIZE = 32
  5145. pkg syscall (darwin-arm64-cgo), const BPF_MINBUFSIZE ideal-int
  5146. pkg syscall (darwin-arm64-cgo), const BPF_MINOR_VERSION = 1
  5147. pkg syscall (darwin-arm64-cgo), const BPF_MINOR_VERSION ideal-int
  5148. pkg syscall (darwin-arm64-cgo), const BPF_MISC = 7
  5149. pkg syscall (darwin-arm64-cgo), const BPF_MISC ideal-int
  5150. pkg syscall (darwin-arm64-cgo), const BPF_MSH = 160
  5151. pkg syscall (darwin-arm64-cgo), const BPF_MSH ideal-int
  5152. pkg syscall (darwin-arm64-cgo), const BPF_MUL = 32
  5153. pkg syscall (darwin-arm64-cgo), const BPF_MUL ideal-int
  5154. pkg syscall (darwin-arm64-cgo), const BPF_NEG = 128
  5155. pkg syscall (darwin-arm64-cgo), const BPF_NEG ideal-int
  5156. pkg syscall (darwin-arm64-cgo), const BPF_OR = 64
  5157. pkg syscall (darwin-arm64-cgo), const BPF_OR ideal-int
  5158. pkg syscall (darwin-arm64-cgo), const BPF_RELEASE = 199606
  5159. pkg syscall (darwin-arm64-cgo), const BPF_RELEASE ideal-int
  5160. pkg syscall (darwin-arm64-cgo), const BPF_RET = 6
  5161. pkg syscall (darwin-arm64-cgo), const BPF_RET ideal-int
  5162. pkg syscall (darwin-arm64-cgo), const BPF_RSH = 112
  5163. pkg syscall (darwin-arm64-cgo), const BPF_RSH ideal-int
  5164. pkg syscall (darwin-arm64-cgo), const BPF_ST = 2
  5165. pkg syscall (darwin-arm64-cgo), const BPF_ST ideal-int
  5166. pkg syscall (darwin-arm64-cgo), const BPF_STX = 3
  5167. pkg syscall (darwin-arm64-cgo), const BPF_STX ideal-int
  5168. pkg syscall (darwin-arm64-cgo), const BPF_SUB = 16
  5169. pkg syscall (darwin-arm64-cgo), const BPF_SUB ideal-int
  5170. pkg syscall (darwin-arm64-cgo), const BPF_TAX = 0
  5171. pkg syscall (darwin-arm64-cgo), const BPF_TAX ideal-int
  5172. pkg syscall (darwin-arm64-cgo), const BPF_TXA = 128
  5173. pkg syscall (darwin-arm64-cgo), const BPF_TXA ideal-int
  5174. pkg syscall (darwin-arm64-cgo), const BPF_W = 0
  5175. pkg syscall (darwin-arm64-cgo), const BPF_W ideal-int
  5176. pkg syscall (darwin-arm64-cgo), const BPF_X = 8
  5177. pkg syscall (darwin-arm64-cgo), const BPF_X ideal-int
  5178. pkg syscall (darwin-arm64-cgo), const BRKINT = 2
  5179. pkg syscall (darwin-arm64-cgo), const BRKINT ideal-int
  5180. pkg syscall (darwin-arm64-cgo), const CFLUSH = 15
  5181. pkg syscall (darwin-arm64-cgo), const CFLUSH ideal-int
  5182. pkg syscall (darwin-arm64-cgo), const CLOCAL = 32768
  5183. pkg syscall (darwin-arm64-cgo), const CLOCAL ideal-int
  5184. pkg syscall (darwin-arm64-cgo), const CREAD = 2048
  5185. pkg syscall (darwin-arm64-cgo), const CREAD ideal-int
  5186. pkg syscall (darwin-arm64-cgo), const CS5 = 0
  5187. pkg syscall (darwin-arm64-cgo), const CS5 ideal-int
  5188. pkg syscall (darwin-arm64-cgo), const CS6 = 256
  5189. pkg syscall (darwin-arm64-cgo), const CS6 ideal-int
  5190. pkg syscall (darwin-arm64-cgo), const CS7 = 512
  5191. pkg syscall (darwin-arm64-cgo), const CS7 ideal-int
  5192. pkg syscall (darwin-arm64-cgo), const CS8 = 768
  5193. pkg syscall (darwin-arm64-cgo), const CS8 ideal-int
  5194. pkg syscall (darwin-arm64-cgo), const CSIZE = 768
  5195. pkg syscall (darwin-arm64-cgo), const CSIZE ideal-int
  5196. pkg syscall (darwin-arm64-cgo), const CSTART = 17
  5197. pkg syscall (darwin-arm64-cgo), const CSTART ideal-int
  5198. pkg syscall (darwin-arm64-cgo), const CSTATUS = 20
  5199. pkg syscall (darwin-arm64-cgo), const CSTATUS ideal-int
  5200. pkg syscall (darwin-arm64-cgo), const CSTOP = 19
  5201. pkg syscall (darwin-arm64-cgo), const CSTOP ideal-int
  5202. pkg syscall (darwin-arm64-cgo), const CSTOPB = 1024
  5203. pkg syscall (darwin-arm64-cgo), const CSTOPB ideal-int
  5204. pkg syscall (darwin-arm64-cgo), const CSUSP = 26
  5205. pkg syscall (darwin-arm64-cgo), const CSUSP ideal-int
  5206. pkg syscall (darwin-arm64-cgo), const CTL_MAXNAME = 12
  5207. pkg syscall (darwin-arm64-cgo), const CTL_MAXNAME ideal-int
  5208. pkg syscall (darwin-arm64-cgo), const CTL_NET = 4
  5209. pkg syscall (darwin-arm64-cgo), const CTL_NET ideal-int
  5210. pkg syscall (darwin-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138
  5211. pkg syscall (darwin-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  5212. pkg syscall (darwin-arm64-cgo), const DLT_ARCNET = 7
  5213. pkg syscall (darwin-arm64-cgo), const DLT_ARCNET ideal-int
  5214. pkg syscall (darwin-arm64-cgo), const DLT_ATM_CLIP = 19
  5215. pkg syscall (darwin-arm64-cgo), const DLT_ATM_CLIP ideal-int
  5216. pkg syscall (darwin-arm64-cgo), const DLT_ATM_RFC1483 = 11
  5217. pkg syscall (darwin-arm64-cgo), const DLT_ATM_RFC1483 ideal-int
  5218. pkg syscall (darwin-arm64-cgo), const DLT_AX25 = 3
  5219. pkg syscall (darwin-arm64-cgo), const DLT_AX25 ideal-int
  5220. pkg syscall (darwin-arm64-cgo), const DLT_CHAOS = 5
  5221. pkg syscall (darwin-arm64-cgo), const DLT_CHAOS ideal-int
  5222. pkg syscall (darwin-arm64-cgo), const DLT_CHDLC = 104
  5223. pkg syscall (darwin-arm64-cgo), const DLT_CHDLC ideal-int
  5224. pkg syscall (darwin-arm64-cgo), const DLT_C_HDLC = 104
  5225. pkg syscall (darwin-arm64-cgo), const DLT_C_HDLC ideal-int
  5226. pkg syscall (darwin-arm64-cgo), const DLT_EN10MB = 1
  5227. pkg syscall (darwin-arm64-cgo), const DLT_EN10MB ideal-int
  5228. pkg syscall (darwin-arm64-cgo), const DLT_EN3MB = 2
  5229. pkg syscall (darwin-arm64-cgo), const DLT_EN3MB ideal-int
  5230. pkg syscall (darwin-arm64-cgo), const DLT_FDDI = 10
  5231. pkg syscall (darwin-arm64-cgo), const DLT_FDDI ideal-int
  5232. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802 = 6
  5233. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802 ideal-int
  5234. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11 = 105
  5235. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11 ideal-int
  5236. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO = 127
  5237. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO ideal-int
  5238. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163
  5239. pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
  5240. pkg syscall (darwin-arm64-cgo), const DLT_LINUX_SLL = 113
  5241. pkg syscall (darwin-arm64-cgo), const DLT_LINUX_SLL ideal-int
  5242. pkg syscall (darwin-arm64-cgo), const DLT_LOOP = 108
  5243. pkg syscall (darwin-arm64-cgo), const DLT_LOOP ideal-int
  5244. pkg syscall (darwin-arm64-cgo), const DLT_NULL = 0
  5245. pkg syscall (darwin-arm64-cgo), const DLT_NULL ideal-int
  5246. pkg syscall (darwin-arm64-cgo), const DLT_PFLOG = 117
  5247. pkg syscall (darwin-arm64-cgo), const DLT_PFLOG ideal-int
  5248. pkg syscall (darwin-arm64-cgo), const DLT_PFSYNC = 18
  5249. pkg syscall (darwin-arm64-cgo), const DLT_PFSYNC ideal-int
  5250. pkg syscall (darwin-arm64-cgo), const DLT_PPP = 9
  5251. pkg syscall (darwin-arm64-cgo), const DLT_PPP ideal-int
  5252. pkg syscall (darwin-arm64-cgo), const DLT_PPP_BSDOS = 16
  5253. pkg syscall (darwin-arm64-cgo), const DLT_PPP_BSDOS ideal-int
  5254. pkg syscall (darwin-arm64-cgo), const DLT_PPP_SERIAL = 50
  5255. pkg syscall (darwin-arm64-cgo), const DLT_PPP_SERIAL ideal-int
  5256. pkg syscall (darwin-arm64-cgo), const DLT_PRONET = 4
  5257. pkg syscall (darwin-arm64-cgo), const DLT_PRONET ideal-int
  5258. pkg syscall (darwin-arm64-cgo), const DLT_RAW = 12
  5259. pkg syscall (darwin-arm64-cgo), const DLT_RAW ideal-int
  5260. pkg syscall (darwin-arm64-cgo), const DLT_SLIP = 8
  5261. pkg syscall (darwin-arm64-cgo), const DLT_SLIP ideal-int
  5262. pkg syscall (darwin-arm64-cgo), const DLT_SLIP_BSDOS = 15
  5263. pkg syscall (darwin-arm64-cgo), const DLT_SLIP_BSDOS ideal-int
  5264. pkg syscall (darwin-arm64-cgo), const DT_BLK = 6
  5265. pkg syscall (darwin-arm64-cgo), const DT_BLK ideal-int
  5266. pkg syscall (darwin-arm64-cgo), const DT_CHR = 2
  5267. pkg syscall (darwin-arm64-cgo), const DT_CHR ideal-int
  5268. pkg syscall (darwin-arm64-cgo), const DT_DIR = 4
  5269. pkg syscall (darwin-arm64-cgo), const DT_DIR ideal-int
  5270. pkg syscall (darwin-arm64-cgo), const DT_FIFO = 1
  5271. pkg syscall (darwin-arm64-cgo), const DT_FIFO ideal-int
  5272. pkg syscall (darwin-arm64-cgo), const DT_LNK = 10
  5273. pkg syscall (darwin-arm64-cgo), const DT_LNK ideal-int
  5274. pkg syscall (darwin-arm64-cgo), const DT_REG = 8
  5275. pkg syscall (darwin-arm64-cgo), const DT_REG ideal-int
  5276. pkg syscall (darwin-arm64-cgo), const DT_SOCK = 12
  5277. pkg syscall (darwin-arm64-cgo), const DT_SOCK ideal-int
  5278. pkg syscall (darwin-arm64-cgo), const DT_UNKNOWN = 0
  5279. pkg syscall (darwin-arm64-cgo), const DT_UNKNOWN ideal-int
  5280. pkg syscall (darwin-arm64-cgo), const DT_WHT = 14
  5281. pkg syscall (darwin-arm64-cgo), const DT_WHT ideal-int
  5282. pkg syscall (darwin-arm64-cgo), const E2BIG = 7
  5283. pkg syscall (darwin-arm64-cgo), const EACCES = 13
  5284. pkg syscall (darwin-arm64-cgo), const EADDRINUSE = 48
  5285. pkg syscall (darwin-arm64-cgo), const EADDRNOTAVAIL = 49
  5286. pkg syscall (darwin-arm64-cgo), const EAFNOSUPPORT = 47
  5287. pkg syscall (darwin-arm64-cgo), const EAGAIN = 35
  5288. pkg syscall (darwin-arm64-cgo), const EALREADY = 37
  5289. pkg syscall (darwin-arm64-cgo), const EAUTH = 80
  5290. pkg syscall (darwin-arm64-cgo), const EAUTH Errno
  5291. pkg syscall (darwin-arm64-cgo), const EBADARCH = 86
  5292. pkg syscall (darwin-arm64-cgo), const EBADARCH Errno
  5293. pkg syscall (darwin-arm64-cgo), const EBADEXEC = 85
  5294. pkg syscall (darwin-arm64-cgo), const EBADEXEC Errno
  5295. pkg syscall (darwin-arm64-cgo), const EBADF = 9
  5296. pkg syscall (darwin-arm64-cgo), const EBADMACHO = 88
  5297. pkg syscall (darwin-arm64-cgo), const EBADMACHO Errno
  5298. pkg syscall (darwin-arm64-cgo), const EBADMSG = 94
  5299. pkg syscall (darwin-arm64-cgo), const EBADMSG Errno
  5300. pkg syscall (darwin-arm64-cgo), const EBADRPC = 72
  5301. pkg syscall (darwin-arm64-cgo), const EBADRPC Errno
  5302. pkg syscall (darwin-arm64-cgo), const EBUSY = 16
  5303. pkg syscall (darwin-arm64-cgo), const ECANCELED = 89
  5304. pkg syscall (darwin-arm64-cgo), const ECHILD = 10
  5305. pkg syscall (darwin-arm64-cgo), const ECHO = 8
  5306. pkg syscall (darwin-arm64-cgo), const ECHO ideal-int
  5307. pkg syscall (darwin-arm64-cgo), const ECHOCTL = 64
  5308. pkg syscall (darwin-arm64-cgo), const ECHOCTL ideal-int
  5309. pkg syscall (darwin-arm64-cgo), const ECHOE = 2
  5310. pkg syscall (darwin-arm64-cgo), const ECHOE ideal-int
  5311. pkg syscall (darwin-arm64-cgo), const ECHOK = 4
  5312. pkg syscall (darwin-arm64-cgo), const ECHOK ideal-int
  5313. pkg syscall (darwin-arm64-cgo), const ECHOKE = 1
  5314. pkg syscall (darwin-arm64-cgo), const ECHOKE ideal-int
  5315. pkg syscall (darwin-arm64-cgo), const ECHONL = 16
  5316. pkg syscall (darwin-arm64-cgo), const ECHONL ideal-int
  5317. pkg syscall (darwin-arm64-cgo), const ECHOPRT = 32
  5318. pkg syscall (darwin-arm64-cgo), const ECHOPRT ideal-int
  5319. pkg syscall (darwin-arm64-cgo), const ECONNABORTED = 53
  5320. pkg syscall (darwin-arm64-cgo), const ECONNREFUSED = 61
  5321. pkg syscall (darwin-arm64-cgo), const ECONNRESET = 54
  5322. pkg syscall (darwin-arm64-cgo), const EDEADLK = 11
  5323. pkg syscall (darwin-arm64-cgo), const EDESTADDRREQ = 39
  5324. pkg syscall (darwin-arm64-cgo), const EDEVERR = 83
  5325. pkg syscall (darwin-arm64-cgo), const EDEVERR Errno
  5326. pkg syscall (darwin-arm64-cgo), const EDOM = 33
  5327. pkg syscall (darwin-arm64-cgo), const EDQUOT = 69
  5328. pkg syscall (darwin-arm64-cgo), const EEXIST = 17
  5329. pkg syscall (darwin-arm64-cgo), const EFAULT = 14
  5330. pkg syscall (darwin-arm64-cgo), const EFBIG = 27
  5331. pkg syscall (darwin-arm64-cgo), const EFTYPE = 79
  5332. pkg syscall (darwin-arm64-cgo), const EFTYPE Errno
  5333. pkg syscall (darwin-arm64-cgo), const EHOSTDOWN = 64
  5334. pkg syscall (darwin-arm64-cgo), const EHOSTUNREACH = 65
  5335. pkg syscall (darwin-arm64-cgo), const EIDRM = 90
  5336. pkg syscall (darwin-arm64-cgo), const EILSEQ = 92
  5337. pkg syscall (darwin-arm64-cgo), const EINPROGRESS = 36
  5338. pkg syscall (darwin-arm64-cgo), const EINTR = 4
  5339. pkg syscall (darwin-arm64-cgo), const EINVAL = 22
  5340. pkg syscall (darwin-arm64-cgo), const EIO = 5
  5341. pkg syscall (darwin-arm64-cgo), const EISCONN = 56
  5342. pkg syscall (darwin-arm64-cgo), const EISDIR = 21
  5343. pkg syscall (darwin-arm64-cgo), const ELAST = 106
  5344. pkg syscall (darwin-arm64-cgo), const ELAST Errno
  5345. pkg syscall (darwin-arm64-cgo), const ELOOP = 62
  5346. pkg syscall (darwin-arm64-cgo), const EMFILE = 24
  5347. pkg syscall (darwin-arm64-cgo), const EMLINK = 31
  5348. pkg syscall (darwin-arm64-cgo), const EMSGSIZE = 40
  5349. pkg syscall (darwin-arm64-cgo), const EMULTIHOP = 95
  5350. pkg syscall (darwin-arm64-cgo), const EMULTIHOP Errno
  5351. pkg syscall (darwin-arm64-cgo), const ENAMETOOLONG = 63
  5352. pkg syscall (darwin-arm64-cgo), const ENEEDAUTH = 81
  5353. pkg syscall (darwin-arm64-cgo), const ENEEDAUTH Errno
  5354. pkg syscall (darwin-arm64-cgo), const ENETDOWN = 50
  5355. pkg syscall (darwin-arm64-cgo), const ENETRESET = 52
  5356. pkg syscall (darwin-arm64-cgo), const ENETUNREACH = 51
  5357. pkg syscall (darwin-arm64-cgo), const ENFILE = 23
  5358. pkg syscall (darwin-arm64-cgo), const ENOATTR = 93
  5359. pkg syscall (darwin-arm64-cgo), const ENOATTR Errno
  5360. pkg syscall (darwin-arm64-cgo), const ENOBUFS = 55
  5361. pkg syscall (darwin-arm64-cgo), const ENODATA = 96
  5362. pkg syscall (darwin-arm64-cgo), const ENODATA Errno
  5363. pkg syscall (darwin-arm64-cgo), const ENODEV = 19
  5364. pkg syscall (darwin-arm64-cgo), const ENOEXEC = 8
  5365. pkg syscall (darwin-arm64-cgo), const ENOLCK = 77
  5366. pkg syscall (darwin-arm64-cgo), const ENOLINK = 97
  5367. pkg syscall (darwin-arm64-cgo), const ENOLINK Errno
  5368. pkg syscall (darwin-arm64-cgo), const ENOMEM = 12
  5369. pkg syscall (darwin-arm64-cgo), const ENOMSG = 91
  5370. pkg syscall (darwin-arm64-cgo), const ENOPOLICY = 103
  5371. pkg syscall (darwin-arm64-cgo), const ENOPOLICY Errno
  5372. pkg syscall (darwin-arm64-cgo), const ENOPROTOOPT = 42
  5373. pkg syscall (darwin-arm64-cgo), const ENOSPC = 28
  5374. pkg syscall (darwin-arm64-cgo), const ENOSR = 98
  5375. pkg syscall (darwin-arm64-cgo), const ENOSR Errno
  5376. pkg syscall (darwin-arm64-cgo), const ENOSTR = 99
  5377. pkg syscall (darwin-arm64-cgo), const ENOSTR Errno
  5378. pkg syscall (darwin-arm64-cgo), const ENOSYS = 78
  5379. pkg syscall (darwin-arm64-cgo), const ENOTBLK = 15
  5380. pkg syscall (darwin-arm64-cgo), const ENOTCONN = 57
  5381. pkg syscall (darwin-arm64-cgo), const ENOTDIR = 20
  5382. pkg syscall (darwin-arm64-cgo), const ENOTEMPTY = 66
  5383. pkg syscall (darwin-arm64-cgo), const ENOTRECOVERABLE = 104
  5384. pkg syscall (darwin-arm64-cgo), const ENOTRECOVERABLE Errno
  5385. pkg syscall (darwin-arm64-cgo), const ENOTSOCK = 38
  5386. pkg syscall (darwin-arm64-cgo), const ENOTSUP = 45
  5387. pkg syscall (darwin-arm64-cgo), const ENOTTY = 25
  5388. pkg syscall (darwin-arm64-cgo), const ENXIO = 6
  5389. pkg syscall (darwin-arm64-cgo), const EOPNOTSUPP = 102
  5390. pkg syscall (darwin-arm64-cgo), const EOVERFLOW = 84
  5391. pkg syscall (darwin-arm64-cgo), const EOWNERDEAD = 105
  5392. pkg syscall (darwin-arm64-cgo), const EOWNERDEAD Errno
  5393. pkg syscall (darwin-arm64-cgo), const EPERM = 1
  5394. pkg syscall (darwin-arm64-cgo), const EPFNOSUPPORT = 46
  5395. pkg syscall (darwin-arm64-cgo), const EPIPE = 32
  5396. pkg syscall (darwin-arm64-cgo), const EPROCLIM = 67
  5397. pkg syscall (darwin-arm64-cgo), const EPROCLIM Errno
  5398. pkg syscall (darwin-arm64-cgo), const EPROCUNAVAIL = 76
  5399. pkg syscall (darwin-arm64-cgo), const EPROCUNAVAIL Errno
  5400. pkg syscall (darwin-arm64-cgo), const EPROGMISMATCH = 75
  5401. pkg syscall (darwin-arm64-cgo), const EPROGMISMATCH Errno
  5402. pkg syscall (darwin-arm64-cgo), const EPROGUNAVAIL = 74
  5403. pkg syscall (darwin-arm64-cgo), const EPROGUNAVAIL Errno
  5404. pkg syscall (darwin-arm64-cgo), const EPROTO = 100
  5405. pkg syscall (darwin-arm64-cgo), const EPROTO Errno
  5406. pkg syscall (darwin-arm64-cgo), const EPROTONOSUPPORT = 43
  5407. pkg syscall (darwin-arm64-cgo), const EPROTOTYPE = 41
  5408. pkg syscall (darwin-arm64-cgo), const EPWROFF = 82
  5409. pkg syscall (darwin-arm64-cgo), const EPWROFF Errno
  5410. pkg syscall (darwin-arm64-cgo), const EQFULL = 106
  5411. pkg syscall (darwin-arm64-cgo), const EQFULL Errno
  5412. pkg syscall (darwin-arm64-cgo), const ERANGE = 34
  5413. pkg syscall (darwin-arm64-cgo), const EREMOTE = 71
  5414. pkg syscall (darwin-arm64-cgo), const EROFS = 30
  5415. pkg syscall (darwin-arm64-cgo), const ERPCMISMATCH = 73
  5416. pkg syscall (darwin-arm64-cgo), const ERPCMISMATCH Errno
  5417. pkg syscall (darwin-arm64-cgo), const ESHLIBVERS = 87
  5418. pkg syscall (darwin-arm64-cgo), const ESHLIBVERS Errno
  5419. pkg syscall (darwin-arm64-cgo), const ESHUTDOWN = 58
  5420. pkg syscall (darwin-arm64-cgo), const ESOCKTNOSUPPORT = 44
  5421. pkg syscall (darwin-arm64-cgo), const ESPIPE = 29
  5422. pkg syscall (darwin-arm64-cgo), const ESRCH = 3
  5423. pkg syscall (darwin-arm64-cgo), const ESTALE = 70
  5424. pkg syscall (darwin-arm64-cgo), const ETIME = 101
  5425. pkg syscall (darwin-arm64-cgo), const ETIME Errno
  5426. pkg syscall (darwin-arm64-cgo), const ETIMEDOUT = 60
  5427. pkg syscall (darwin-arm64-cgo), const ETOOMANYREFS = 59
  5428. pkg syscall (darwin-arm64-cgo), const ETXTBSY = 26
  5429. pkg syscall (darwin-arm64-cgo), const EUSERS = 68
  5430. pkg syscall (darwin-arm64-cgo), const EVFILT_AIO = -3
  5431. pkg syscall (darwin-arm64-cgo), const EVFILT_AIO ideal-int
  5432. pkg syscall (darwin-arm64-cgo), const EVFILT_FS = -9
  5433. pkg syscall (darwin-arm64-cgo), const EVFILT_FS ideal-int
  5434. pkg syscall (darwin-arm64-cgo), const EVFILT_MACHPORT = -8
  5435. pkg syscall (darwin-arm64-cgo), const EVFILT_MACHPORT ideal-int
  5436. pkg syscall (darwin-arm64-cgo), const EVFILT_PROC = -5
  5437. pkg syscall (darwin-arm64-cgo), const EVFILT_PROC ideal-int
  5438. pkg syscall (darwin-arm64-cgo), const EVFILT_READ = -1
  5439. pkg syscall (darwin-arm64-cgo), const EVFILT_READ ideal-int
  5440. pkg syscall (darwin-arm64-cgo), const EVFILT_SIGNAL = -6
  5441. pkg syscall (darwin-arm64-cgo), const EVFILT_SIGNAL ideal-int
  5442. pkg syscall (darwin-arm64-cgo), const EVFILT_SYSCOUNT = 14
  5443. pkg syscall (darwin-arm64-cgo), const EVFILT_SYSCOUNT ideal-int
  5444. pkg syscall (darwin-arm64-cgo), const EVFILT_THREADMARKER = 14
  5445. pkg syscall (darwin-arm64-cgo), const EVFILT_THREADMARKER ideal-int
  5446. pkg syscall (darwin-arm64-cgo), const EVFILT_TIMER = -7
  5447. pkg syscall (darwin-arm64-cgo), const EVFILT_TIMER ideal-int
  5448. pkg syscall (darwin-arm64-cgo), const EVFILT_USER = -10
  5449. pkg syscall (darwin-arm64-cgo), const EVFILT_USER ideal-int
  5450. pkg syscall (darwin-arm64-cgo), const EVFILT_VM = -12
  5451. pkg syscall (darwin-arm64-cgo), const EVFILT_VM ideal-int
  5452. pkg syscall (darwin-arm64-cgo), const EVFILT_VNODE = -4
  5453. pkg syscall (darwin-arm64-cgo), const EVFILT_VNODE ideal-int
  5454. pkg syscall (darwin-arm64-cgo), const EVFILT_WRITE = -2
  5455. pkg syscall (darwin-arm64-cgo), const EVFILT_WRITE ideal-int
  5456. pkg syscall (darwin-arm64-cgo), const EV_ADD = 1
  5457. pkg syscall (darwin-arm64-cgo), const EV_ADD ideal-int
  5458. pkg syscall (darwin-arm64-cgo), const EV_CLEAR = 32
  5459. pkg syscall (darwin-arm64-cgo), const EV_CLEAR ideal-int
  5460. pkg syscall (darwin-arm64-cgo), const EV_DELETE = 2
  5461. pkg syscall (darwin-arm64-cgo), const EV_DELETE ideal-int
  5462. pkg syscall (darwin-arm64-cgo), const EV_DISABLE = 8
  5463. pkg syscall (darwin-arm64-cgo), const EV_DISABLE ideal-int
  5464. pkg syscall (darwin-arm64-cgo), const EV_DISPATCH = 128
  5465. pkg syscall (darwin-arm64-cgo), const EV_DISPATCH ideal-int
  5466. pkg syscall (darwin-arm64-cgo), const EV_ENABLE = 4
  5467. pkg syscall (darwin-arm64-cgo), const EV_ENABLE ideal-int
  5468. pkg syscall (darwin-arm64-cgo), const EV_EOF = 32768
  5469. pkg syscall (darwin-arm64-cgo), const EV_EOF ideal-int
  5470. pkg syscall (darwin-arm64-cgo), const EV_ERROR = 16384
  5471. pkg syscall (darwin-arm64-cgo), const EV_ERROR ideal-int
  5472. pkg syscall (darwin-arm64-cgo), const EV_FLAG0 = 4096
  5473. pkg syscall (darwin-arm64-cgo), const EV_FLAG0 ideal-int
  5474. pkg syscall (darwin-arm64-cgo), const EV_FLAG1 = 8192
  5475. pkg syscall (darwin-arm64-cgo), const EV_FLAG1 ideal-int
  5476. pkg syscall (darwin-arm64-cgo), const EV_ONESHOT = 16
  5477. pkg syscall (darwin-arm64-cgo), const EV_ONESHOT ideal-int
  5478. pkg syscall (darwin-arm64-cgo), const EV_OOBAND = 8192
  5479. pkg syscall (darwin-arm64-cgo), const EV_OOBAND ideal-int
  5480. pkg syscall (darwin-arm64-cgo), const EV_POLL = 4096
  5481. pkg syscall (darwin-arm64-cgo), const EV_POLL ideal-int
  5482. pkg syscall (darwin-arm64-cgo), const EV_RECEIPT = 64
  5483. pkg syscall (darwin-arm64-cgo), const EV_RECEIPT ideal-int
  5484. pkg syscall (darwin-arm64-cgo), const EV_SYSFLAGS = 61440
  5485. pkg syscall (darwin-arm64-cgo), const EV_SYSFLAGS ideal-int
  5486. pkg syscall (darwin-arm64-cgo), const EWOULDBLOCK = 35
  5487. pkg syscall (darwin-arm64-cgo), const EXDEV = 18
  5488. pkg syscall (darwin-arm64-cgo), const EXTA = 19200
  5489. pkg syscall (darwin-arm64-cgo), const EXTA ideal-int
  5490. pkg syscall (darwin-arm64-cgo), const EXTB = 38400
  5491. pkg syscall (darwin-arm64-cgo), const EXTB ideal-int
  5492. pkg syscall (darwin-arm64-cgo), const EXTPROC = 2048
  5493. pkg syscall (darwin-arm64-cgo), const EXTPROC ideal-int
  5494. pkg syscall (darwin-arm64-cgo), const FD_CLOEXEC = 1
  5495. pkg syscall (darwin-arm64-cgo), const FD_CLOEXEC ideal-int
  5496. pkg syscall (darwin-arm64-cgo), const FD_SETSIZE = 1024
  5497. pkg syscall (darwin-arm64-cgo), const FD_SETSIZE ideal-int
  5498. pkg syscall (darwin-arm64-cgo), const FLUSHO = 8388608
  5499. pkg syscall (darwin-arm64-cgo), const FLUSHO ideal-int
  5500. pkg syscall (darwin-arm64-cgo), const F_ADDFILESIGS = 61
  5501. pkg syscall (darwin-arm64-cgo), const F_ADDFILESIGS ideal-int
  5502. pkg syscall (darwin-arm64-cgo), const F_ADDSIGS = 59
  5503. pkg syscall (darwin-arm64-cgo), const F_ADDSIGS ideal-int
  5504. pkg syscall (darwin-arm64-cgo), const F_ALLOCATEALL = 4
  5505. pkg syscall (darwin-arm64-cgo), const F_ALLOCATEALL ideal-int
  5506. pkg syscall (darwin-arm64-cgo), const F_ALLOCATECONTIG = 2
  5507. pkg syscall (darwin-arm64-cgo), const F_ALLOCATECONTIG ideal-int
  5508. pkg syscall (darwin-arm64-cgo), const F_CHKCLEAN = 41
  5509. pkg syscall (darwin-arm64-cgo), const F_CHKCLEAN ideal-int
  5510. pkg syscall (darwin-arm64-cgo), const F_DUPFD = 0
  5511. pkg syscall (darwin-arm64-cgo), const F_DUPFD ideal-int
  5512. pkg syscall (darwin-arm64-cgo), const F_DUPFD_CLOEXEC = 67
  5513. pkg syscall (darwin-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int
  5514. pkg syscall (darwin-arm64-cgo), const F_FINDSIGS = 78
  5515. pkg syscall (darwin-arm64-cgo), const F_FINDSIGS ideal-int
  5516. pkg syscall (darwin-arm64-cgo), const F_FLUSH_DATA = 40
  5517. pkg syscall (darwin-arm64-cgo), const F_FLUSH_DATA ideal-int
  5518. pkg syscall (darwin-arm64-cgo), const F_FREEZE_FS = 53
  5519. pkg syscall (darwin-arm64-cgo), const F_FREEZE_FS ideal-int
  5520. pkg syscall (darwin-arm64-cgo), const F_FULLFSYNC = 51
  5521. pkg syscall (darwin-arm64-cgo), const F_FULLFSYNC ideal-int
  5522. pkg syscall (darwin-arm64-cgo), const F_GETCODEDIR = 72
  5523. pkg syscall (darwin-arm64-cgo), const F_GETCODEDIR ideal-int
  5524. pkg syscall (darwin-arm64-cgo), const F_GETFD = 1
  5525. pkg syscall (darwin-arm64-cgo), const F_GETFD ideal-int
  5526. pkg syscall (darwin-arm64-cgo), const F_GETFL = 3
  5527. pkg syscall (darwin-arm64-cgo), const F_GETFL ideal-int
  5528. pkg syscall (darwin-arm64-cgo), const F_GETLK = 7
  5529. pkg syscall (darwin-arm64-cgo), const F_GETLK ideal-int
  5530. pkg syscall (darwin-arm64-cgo), const F_GETLKPID = 66
  5531. pkg syscall (darwin-arm64-cgo), const F_GETLKPID ideal-int
  5532. pkg syscall (darwin-arm64-cgo), const F_GETNOSIGPIPE = 74
  5533. pkg syscall (darwin-arm64-cgo), const F_GETNOSIGPIPE ideal-int
  5534. pkg syscall (darwin-arm64-cgo), const F_GETOWN = 5
  5535. pkg syscall (darwin-arm64-cgo), const F_GETOWN ideal-int
  5536. pkg syscall (darwin-arm64-cgo), const F_GETPATH = 50
  5537. pkg syscall (darwin-arm64-cgo), const F_GETPATH ideal-int
  5538. pkg syscall (darwin-arm64-cgo), const F_GETPATH_MTMINFO = 71
  5539. pkg syscall (darwin-arm64-cgo), const F_GETPATH_MTMINFO ideal-int
  5540. pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONCLASS = 63
  5541. pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONCLASS ideal-int
  5542. pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONLEVEL = 77
  5543. pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONLEVEL ideal-int
  5544. pkg syscall (darwin-arm64-cgo), const F_GLOBAL_NOCACHE = 55
  5545. pkg syscall (darwin-arm64-cgo), const F_GLOBAL_NOCACHE ideal-int
  5546. pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS = 49
  5547. pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS ideal-int
  5548. pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS_EXT = 65
  5549. pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS_EXT ideal-int
  5550. pkg syscall (darwin-arm64-cgo), const F_NOCACHE = 48
  5551. pkg syscall (darwin-arm64-cgo), const F_NOCACHE ideal-int
  5552. pkg syscall (darwin-arm64-cgo), const F_NODIRECT = 62
  5553. pkg syscall (darwin-arm64-cgo), const F_NODIRECT ideal-int
  5554. pkg syscall (darwin-arm64-cgo), const F_OK = 0
  5555. pkg syscall (darwin-arm64-cgo), const F_OK ideal-int
  5556. pkg syscall (darwin-arm64-cgo), const F_PATHPKG_CHECK = 52
  5557. pkg syscall (darwin-arm64-cgo), const F_PATHPKG_CHECK ideal-int
  5558. pkg syscall (darwin-arm64-cgo), const F_PEOFPOSMODE = 3
  5559. pkg syscall (darwin-arm64-cgo), const F_PEOFPOSMODE ideal-int
  5560. pkg syscall (darwin-arm64-cgo), const F_PREALLOCATE = 42
  5561. pkg syscall (darwin-arm64-cgo), const F_PREALLOCATE ideal-int
  5562. pkg syscall (darwin-arm64-cgo), const F_RDADVISE = 44
  5563. pkg syscall (darwin-arm64-cgo), const F_RDADVISE ideal-int
  5564. pkg syscall (darwin-arm64-cgo), const F_RDAHEAD = 45
  5565. pkg syscall (darwin-arm64-cgo), const F_RDAHEAD ideal-int
  5566. pkg syscall (darwin-arm64-cgo), const F_RDLCK = 1
  5567. pkg syscall (darwin-arm64-cgo), const F_RDLCK ideal-int
  5568. pkg syscall (darwin-arm64-cgo), const F_SETBACKINGSTORE = 70
  5569. pkg syscall (darwin-arm64-cgo), const F_SETBACKINGSTORE ideal-int
  5570. pkg syscall (darwin-arm64-cgo), const F_SETFD = 2
  5571. pkg syscall (darwin-arm64-cgo), const F_SETFD ideal-int
  5572. pkg syscall (darwin-arm64-cgo), const F_SETFL = 4
  5573. pkg syscall (darwin-arm64-cgo), const F_SETFL ideal-int
  5574. pkg syscall (darwin-arm64-cgo), const F_SETLK = 8
  5575. pkg syscall (darwin-arm64-cgo), const F_SETLK ideal-int
  5576. pkg syscall (darwin-arm64-cgo), const F_SETLKW = 9
  5577. pkg syscall (darwin-arm64-cgo), const F_SETLKW ideal-int
  5578. pkg syscall (darwin-arm64-cgo), const F_SETLKWTIMEOUT = 10
  5579. pkg syscall (darwin-arm64-cgo), const F_SETLKWTIMEOUT ideal-int
  5580. pkg syscall (darwin-arm64-cgo), const F_SETNOSIGPIPE = 73
  5581. pkg syscall (darwin-arm64-cgo), const F_SETNOSIGPIPE ideal-int
  5582. pkg syscall (darwin-arm64-cgo), const F_SETOWN = 6
  5583. pkg syscall (darwin-arm64-cgo), const F_SETOWN ideal-int
  5584. pkg syscall (darwin-arm64-cgo), const F_SETPROTECTIONCLASS = 64
  5585. pkg syscall (darwin-arm64-cgo), const F_SETPROTECTIONCLASS ideal-int
  5586. pkg syscall (darwin-arm64-cgo), const F_SETSIZE = 43
  5587. pkg syscall (darwin-arm64-cgo), const F_SETSIZE ideal-int
  5588. pkg syscall (darwin-arm64-cgo), const F_SINGLE_WRITER = 76
  5589. pkg syscall (darwin-arm64-cgo), const F_SINGLE_WRITER ideal-int
  5590. pkg syscall (darwin-arm64-cgo), const F_THAW_FS = 54
  5591. pkg syscall (darwin-arm64-cgo), const F_THAW_FS ideal-int
  5592. pkg syscall (darwin-arm64-cgo), const F_TRANSCODEKEY = 75
  5593. pkg syscall (darwin-arm64-cgo), const F_TRANSCODEKEY ideal-int
  5594. pkg syscall (darwin-arm64-cgo), const F_UNLCK = 2
  5595. pkg syscall (darwin-arm64-cgo), const F_UNLCK ideal-int
  5596. pkg syscall (darwin-arm64-cgo), const F_VOLPOSMODE = 4
  5597. pkg syscall (darwin-arm64-cgo), const F_VOLPOSMODE ideal-int
  5598. pkg syscall (darwin-arm64-cgo), const F_WRLCK = 3
  5599. pkg syscall (darwin-arm64-cgo), const F_WRLCK ideal-int
  5600. pkg syscall (darwin-arm64-cgo), const HUPCL = 16384
  5601. pkg syscall (darwin-arm64-cgo), const HUPCL ideal-int
  5602. pkg syscall (darwin-arm64-cgo), const ICANON = 256
  5603. pkg syscall (darwin-arm64-cgo), const ICANON ideal-int
  5604. pkg syscall (darwin-arm64-cgo), const ICMP6_FILTER = 18
  5605. pkg syscall (darwin-arm64-cgo), const ICMP6_FILTER ideal-int
  5606. pkg syscall (darwin-arm64-cgo), const ICRNL = 256
  5607. pkg syscall (darwin-arm64-cgo), const ICRNL ideal-int
  5608. pkg syscall (darwin-arm64-cgo), const IEXTEN = 1024
  5609. pkg syscall (darwin-arm64-cgo), const IEXTEN ideal-int
  5610. pkg syscall (darwin-arm64-cgo), const IFF_ALLMULTI = 512
  5611. pkg syscall (darwin-arm64-cgo), const IFF_ALLMULTI ideal-int
  5612. pkg syscall (darwin-arm64-cgo), const IFF_ALTPHYS = 16384
  5613. pkg syscall (darwin-arm64-cgo), const IFF_ALTPHYS ideal-int
  5614. pkg syscall (darwin-arm64-cgo), const IFF_DEBUG = 4
  5615. pkg syscall (darwin-arm64-cgo), const IFF_DEBUG ideal-int
  5616. pkg syscall (darwin-arm64-cgo), const IFF_LINK0 = 4096
  5617. pkg syscall (darwin-arm64-cgo), const IFF_LINK0 ideal-int
  5618. pkg syscall (darwin-arm64-cgo), const IFF_LINK1 = 8192
  5619. pkg syscall (darwin-arm64-cgo), const IFF_LINK1 ideal-int
  5620. pkg syscall (darwin-arm64-cgo), const IFF_LINK2 = 16384
  5621. pkg syscall (darwin-arm64-cgo), const IFF_LINK2 ideal-int
  5622. pkg syscall (darwin-arm64-cgo), const IFF_LOOPBACK = 8
  5623. pkg syscall (darwin-arm64-cgo), const IFF_MULTICAST = 32768
  5624. pkg syscall (darwin-arm64-cgo), const IFF_NOARP = 128
  5625. pkg syscall (darwin-arm64-cgo), const IFF_NOARP ideal-int
  5626. pkg syscall (darwin-arm64-cgo), const IFF_NOTRAILERS = 32
  5627. pkg syscall (darwin-arm64-cgo), const IFF_NOTRAILERS ideal-int
  5628. pkg syscall (darwin-arm64-cgo), const IFF_OACTIVE = 1024
  5629. pkg syscall (darwin-arm64-cgo), const IFF_OACTIVE ideal-int
  5630. pkg syscall (darwin-arm64-cgo), const IFF_POINTOPOINT = 16
  5631. pkg syscall (darwin-arm64-cgo), const IFF_POINTOPOINT ideal-int
  5632. pkg syscall (darwin-arm64-cgo), const IFF_PROMISC = 256
  5633. pkg syscall (darwin-arm64-cgo), const IFF_PROMISC ideal-int
  5634. pkg syscall (darwin-arm64-cgo), const IFF_RUNNING = 64
  5635. pkg syscall (darwin-arm64-cgo), const IFF_RUNNING ideal-int
  5636. pkg syscall (darwin-arm64-cgo), const IFF_SIMPLEX = 2048
  5637. pkg syscall (darwin-arm64-cgo), const IFF_SIMPLEX ideal-int
  5638. pkg syscall (darwin-arm64-cgo), const IFNAMSIZ = 16
  5639. pkg syscall (darwin-arm64-cgo), const IFNAMSIZ ideal-int
  5640. pkg syscall (darwin-arm64-cgo), const IFT_1822 = 2
  5641. pkg syscall (darwin-arm64-cgo), const IFT_1822 ideal-int
  5642. pkg syscall (darwin-arm64-cgo), const IFT_AAL5 = 49
  5643. pkg syscall (darwin-arm64-cgo), const IFT_AAL5 ideal-int
  5644. pkg syscall (darwin-arm64-cgo), const IFT_ARCNET = 35
  5645. pkg syscall (darwin-arm64-cgo), const IFT_ARCNET ideal-int
  5646. pkg syscall (darwin-arm64-cgo), const IFT_ARCNETPLUS = 36
  5647. pkg syscall (darwin-arm64-cgo), const IFT_ARCNETPLUS ideal-int
  5648. pkg syscall (darwin-arm64-cgo), const IFT_ATM = 37
  5649. pkg syscall (darwin-arm64-cgo), const IFT_ATM ideal-int
  5650. pkg syscall (darwin-arm64-cgo), const IFT_BRIDGE = 209
  5651. pkg syscall (darwin-arm64-cgo), const IFT_BRIDGE ideal-int
  5652. pkg syscall (darwin-arm64-cgo), const IFT_CARP = 248
  5653. pkg syscall (darwin-arm64-cgo), const IFT_CARP ideal-int
  5654. pkg syscall (darwin-arm64-cgo), const IFT_CELLULAR = 255
  5655. pkg syscall (darwin-arm64-cgo), const IFT_CELLULAR ideal-int
  5656. pkg syscall (darwin-arm64-cgo), const IFT_CEPT = 19
  5657. pkg syscall (darwin-arm64-cgo), const IFT_CEPT ideal-int
  5658. pkg syscall (darwin-arm64-cgo), const IFT_DS3 = 30
  5659. pkg syscall (darwin-arm64-cgo), const IFT_DS3 ideal-int
  5660. pkg syscall (darwin-arm64-cgo), const IFT_ENC = 244
  5661. pkg syscall (darwin-arm64-cgo), const IFT_ENC ideal-int
  5662. pkg syscall (darwin-arm64-cgo), const IFT_EON = 25
  5663. pkg syscall (darwin-arm64-cgo), const IFT_EON ideal-int
  5664. pkg syscall (darwin-arm64-cgo), const IFT_ETHER = 6
  5665. pkg syscall (darwin-arm64-cgo), const IFT_ETHER ideal-int
  5666. pkg syscall (darwin-arm64-cgo), const IFT_FAITH = 56
  5667. pkg syscall (darwin-arm64-cgo), const IFT_FAITH ideal-int
  5668. pkg syscall (darwin-arm64-cgo), const IFT_FDDI = 15
  5669. pkg syscall (darwin-arm64-cgo), const IFT_FDDI ideal-int
  5670. pkg syscall (darwin-arm64-cgo), const IFT_FRELAY = 32
  5671. pkg syscall (darwin-arm64-cgo), const IFT_FRELAY ideal-int
  5672. pkg syscall (darwin-arm64-cgo), const IFT_FRELAYDCE = 44
  5673. pkg syscall (darwin-arm64-cgo), const IFT_FRELAYDCE ideal-int
  5674. pkg syscall (darwin-arm64-cgo), const IFT_GIF = 55
  5675. pkg syscall (darwin-arm64-cgo), const IFT_GIF ideal-int
  5676. pkg syscall (darwin-arm64-cgo), const IFT_HDH1822 = 3
  5677. pkg syscall (darwin-arm64-cgo), const IFT_HDH1822 ideal-int
  5678. pkg syscall (darwin-arm64-cgo), const IFT_HIPPI = 47
  5679. pkg syscall (darwin-arm64-cgo), const IFT_HIPPI ideal-int
  5680. pkg syscall (darwin-arm64-cgo), const IFT_HSSI = 46
  5681. pkg syscall (darwin-arm64-cgo), const IFT_HSSI ideal-int
  5682. pkg syscall (darwin-arm64-cgo), const IFT_HY = 14
  5683. pkg syscall (darwin-arm64-cgo), const IFT_HY ideal-int
  5684. pkg syscall (darwin-arm64-cgo), const IFT_IEEE1394 = 144
  5685. pkg syscall (darwin-arm64-cgo), const IFT_IEEE1394 ideal-int
  5686. pkg syscall (darwin-arm64-cgo), const IFT_IEEE8023ADLAG = 136
  5687. pkg syscall (darwin-arm64-cgo), const IFT_IEEE8023ADLAG ideal-int
  5688. pkg syscall (darwin-arm64-cgo), const IFT_ISDNBASIC = 20
  5689. pkg syscall (darwin-arm64-cgo), const IFT_ISDNBASIC ideal-int
  5690. pkg syscall (darwin-arm64-cgo), const IFT_ISDNPRIMARY = 21
  5691. pkg syscall (darwin-arm64-cgo), const IFT_ISDNPRIMARY ideal-int
  5692. pkg syscall (darwin-arm64-cgo), const IFT_ISO88022LLC = 41
  5693. pkg syscall (darwin-arm64-cgo), const IFT_ISO88022LLC ideal-int
  5694. pkg syscall (darwin-arm64-cgo), const IFT_ISO88023 = 7
  5695. pkg syscall (darwin-arm64-cgo), const IFT_ISO88023 ideal-int
  5696. pkg syscall (darwin-arm64-cgo), const IFT_ISO88024 = 8
  5697. pkg syscall (darwin-arm64-cgo), const IFT_ISO88024 ideal-int
  5698. pkg syscall (darwin-arm64-cgo), const IFT_ISO88025 = 9
  5699. pkg syscall (darwin-arm64-cgo), const IFT_ISO88025 ideal-int
  5700. pkg syscall (darwin-arm64-cgo), const IFT_ISO88026 = 10
  5701. pkg syscall (darwin-arm64-cgo), const IFT_ISO88026 ideal-int
  5702. pkg syscall (darwin-arm64-cgo), const IFT_L2VLAN = 135
  5703. pkg syscall (darwin-arm64-cgo), const IFT_L2VLAN ideal-int
  5704. pkg syscall (darwin-arm64-cgo), const IFT_LAPB = 16
  5705. pkg syscall (darwin-arm64-cgo), const IFT_LAPB ideal-int
  5706. pkg syscall (darwin-arm64-cgo), const IFT_LOCALTALK = 42
  5707. pkg syscall (darwin-arm64-cgo), const IFT_LOCALTALK ideal-int
  5708. pkg syscall (darwin-arm64-cgo), const IFT_LOOP = 24
  5709. pkg syscall (darwin-arm64-cgo), const IFT_LOOP ideal-int
  5710. pkg syscall (darwin-arm64-cgo), const IFT_MIOX25 = 38
  5711. pkg syscall (darwin-arm64-cgo), const IFT_MIOX25 ideal-int
  5712. pkg syscall (darwin-arm64-cgo), const IFT_MODEM = 48
  5713. pkg syscall (darwin-arm64-cgo), const IFT_MODEM ideal-int
  5714. pkg syscall (darwin-arm64-cgo), const IFT_NSIP = 27
  5715. pkg syscall (darwin-arm64-cgo), const IFT_NSIP ideal-int
  5716. pkg syscall (darwin-arm64-cgo), const IFT_OTHER = 1
  5717. pkg syscall (darwin-arm64-cgo), const IFT_OTHER ideal-int
  5718. pkg syscall (darwin-arm64-cgo), const IFT_P10 = 12
  5719. pkg syscall (darwin-arm64-cgo), const IFT_P10 ideal-int
  5720. pkg syscall (darwin-arm64-cgo), const IFT_P80 = 13
  5721. pkg syscall (darwin-arm64-cgo), const IFT_P80 ideal-int
  5722. pkg syscall (darwin-arm64-cgo), const IFT_PARA = 34
  5723. pkg syscall (darwin-arm64-cgo), const IFT_PARA ideal-int
  5724. pkg syscall (darwin-arm64-cgo), const IFT_PDP = 255
  5725. pkg syscall (darwin-arm64-cgo), const IFT_PDP ideal-int
  5726. pkg syscall (darwin-arm64-cgo), const IFT_PFLOG = 245
  5727. pkg syscall (darwin-arm64-cgo), const IFT_PFLOG ideal-int
  5728. pkg syscall (darwin-arm64-cgo), const IFT_PFSYNC = 246
  5729. pkg syscall (darwin-arm64-cgo), const IFT_PFSYNC ideal-int
  5730. pkg syscall (darwin-arm64-cgo), const IFT_PPP = 23
  5731. pkg syscall (darwin-arm64-cgo), const IFT_PPP ideal-int
  5732. pkg syscall (darwin-arm64-cgo), const IFT_PROPMUX = 54
  5733. pkg syscall (darwin-arm64-cgo), const IFT_PROPMUX ideal-int
  5734. pkg syscall (darwin-arm64-cgo), const IFT_PROPVIRTUAL = 53
  5735. pkg syscall (darwin-arm64-cgo), const IFT_PROPVIRTUAL ideal-int
  5736. pkg syscall (darwin-arm64-cgo), const IFT_PTPSERIAL = 22
  5737. pkg syscall (darwin-arm64-cgo), const IFT_PTPSERIAL ideal-int
  5738. pkg syscall (darwin-arm64-cgo), const IFT_RS232 = 33
  5739. pkg syscall (darwin-arm64-cgo), const IFT_RS232 ideal-int
  5740. pkg syscall (darwin-arm64-cgo), const IFT_SDLC = 17
  5741. pkg syscall (darwin-arm64-cgo), const IFT_SDLC ideal-int
  5742. pkg syscall (darwin-arm64-cgo), const IFT_SIP = 31
  5743. pkg syscall (darwin-arm64-cgo), const IFT_SIP ideal-int
  5744. pkg syscall (darwin-arm64-cgo), const IFT_SLIP = 28
  5745. pkg syscall (darwin-arm64-cgo), const IFT_SLIP ideal-int
  5746. pkg syscall (darwin-arm64-cgo), const IFT_SMDSDXI = 43
  5747. pkg syscall (darwin-arm64-cgo), const IFT_SMDSDXI ideal-int
  5748. pkg syscall (darwin-arm64-cgo), const IFT_SMDSICIP = 52
  5749. pkg syscall (darwin-arm64-cgo), const IFT_SMDSICIP ideal-int
  5750. pkg syscall (darwin-arm64-cgo), const IFT_SONET = 39
  5751. pkg syscall (darwin-arm64-cgo), const IFT_SONET ideal-int
  5752. pkg syscall (darwin-arm64-cgo), const IFT_SONETPATH = 50
  5753. pkg syscall (darwin-arm64-cgo), const IFT_SONETPATH ideal-int
  5754. pkg syscall (darwin-arm64-cgo), const IFT_SONETVT = 51
  5755. pkg syscall (darwin-arm64-cgo), const IFT_SONETVT ideal-int
  5756. pkg syscall (darwin-arm64-cgo), const IFT_STARLAN = 11
  5757. pkg syscall (darwin-arm64-cgo), const IFT_STARLAN ideal-int
  5758. pkg syscall (darwin-arm64-cgo), const IFT_STF = 57
  5759. pkg syscall (darwin-arm64-cgo), const IFT_STF ideal-int
  5760. pkg syscall (darwin-arm64-cgo), const IFT_T1 = 18
  5761. pkg syscall (darwin-arm64-cgo), const IFT_T1 ideal-int
  5762. pkg syscall (darwin-arm64-cgo), const IFT_ULTRA = 29
  5763. pkg syscall (darwin-arm64-cgo), const IFT_ULTRA ideal-int
  5764. pkg syscall (darwin-arm64-cgo), const IFT_V35 = 45
  5765. pkg syscall (darwin-arm64-cgo), const IFT_V35 ideal-int
  5766. pkg syscall (darwin-arm64-cgo), const IFT_X25 = 5
  5767. pkg syscall (darwin-arm64-cgo), const IFT_X25 ideal-int
  5768. pkg syscall (darwin-arm64-cgo), const IFT_X25DDN = 4
  5769. pkg syscall (darwin-arm64-cgo), const IFT_X25DDN ideal-int
  5770. pkg syscall (darwin-arm64-cgo), const IFT_X25PLE = 40
  5771. pkg syscall (darwin-arm64-cgo), const IFT_X25PLE ideal-int
  5772. pkg syscall (darwin-arm64-cgo), const IFT_XETHER = 26
  5773. pkg syscall (darwin-arm64-cgo), const IFT_XETHER ideal-int
  5774. pkg syscall (darwin-arm64-cgo), const IGNBRK = 1
  5775. pkg syscall (darwin-arm64-cgo), const IGNBRK ideal-int
  5776. pkg syscall (darwin-arm64-cgo), const IGNCR = 128
  5777. pkg syscall (darwin-arm64-cgo), const IGNCR ideal-int
  5778. pkg syscall (darwin-arm64-cgo), const IGNPAR = 4
  5779. pkg syscall (darwin-arm64-cgo), const IGNPAR ideal-int
  5780. pkg syscall (darwin-arm64-cgo), const IMAXBEL = 8192
  5781. pkg syscall (darwin-arm64-cgo), const IMAXBEL ideal-int
  5782. pkg syscall (darwin-arm64-cgo), const INLCR = 64
  5783. pkg syscall (darwin-arm64-cgo), const INLCR ideal-int
  5784. pkg syscall (darwin-arm64-cgo), const INPCK = 16
  5785. pkg syscall (darwin-arm64-cgo), const INPCK ideal-int
  5786. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_HOST = 16777215
  5787. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_HOST ideal-int
  5788. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_MAX = 128
  5789. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_MAX ideal-int
  5790. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NET = 4278190080
  5791. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NET ideal-int
  5792. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NSHIFT = 24
  5793. pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NSHIFT ideal-int
  5794. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_HOST = 65535
  5795. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_HOST ideal-int
  5796. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_MAX = 65536
  5797. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_MAX ideal-int
  5798. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NET = 4294901760
  5799. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NET ideal-int
  5800. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NSHIFT = 16
  5801. pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NSHIFT ideal-int
  5802. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_HOST = 255
  5803. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_HOST ideal-int
  5804. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NET = 4294967040
  5805. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NET ideal-int
  5806. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NSHIFT = 8
  5807. pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int
  5808. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_HOST = 268435455
  5809. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_HOST ideal-int
  5810. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NET = 4026531840
  5811. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NET ideal-int
  5812. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NSHIFT = 28
  5813. pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NSHIFT ideal-int
  5814. pkg syscall (darwin-arm64-cgo), const IN_LINKLOCALNETNUM = 2851995648
  5815. pkg syscall (darwin-arm64-cgo), const IN_LINKLOCALNETNUM ideal-int
  5816. pkg syscall (darwin-arm64-cgo), const IN_LOOPBACKNET = 127
  5817. pkg syscall (darwin-arm64-cgo), const IN_LOOPBACKNET ideal-int
  5818. pkg syscall (darwin-arm64-cgo), const IPPROTO_3PC = 34
  5819. pkg syscall (darwin-arm64-cgo), const IPPROTO_3PC ideal-int
  5820. pkg syscall (darwin-arm64-cgo), const IPPROTO_ADFS = 68
  5821. pkg syscall (darwin-arm64-cgo), const IPPROTO_ADFS ideal-int
  5822. pkg syscall (darwin-arm64-cgo), const IPPROTO_AH = 51
  5823. pkg syscall (darwin-arm64-cgo), const IPPROTO_AH ideal-int
  5824. pkg syscall (darwin-arm64-cgo), const IPPROTO_AHIP = 61
  5825. pkg syscall (darwin-arm64-cgo), const IPPROTO_AHIP ideal-int
  5826. pkg syscall (darwin-arm64-cgo), const IPPROTO_APES = 99
  5827. pkg syscall (darwin-arm64-cgo), const IPPROTO_APES ideal-int
  5828. pkg syscall (darwin-arm64-cgo), const IPPROTO_ARGUS = 13
  5829. pkg syscall (darwin-arm64-cgo), const IPPROTO_ARGUS ideal-int
  5830. pkg syscall (darwin-arm64-cgo), const IPPROTO_AX25 = 93
  5831. pkg syscall (darwin-arm64-cgo), const IPPROTO_AX25 ideal-int
  5832. pkg syscall (darwin-arm64-cgo), const IPPROTO_BHA = 49
  5833. pkg syscall (darwin-arm64-cgo), const IPPROTO_BHA ideal-int
  5834. pkg syscall (darwin-arm64-cgo), const IPPROTO_BLT = 30
  5835. pkg syscall (darwin-arm64-cgo), const IPPROTO_BLT ideal-int
  5836. pkg syscall (darwin-arm64-cgo), const IPPROTO_BRSATMON = 76
  5837. pkg syscall (darwin-arm64-cgo), const IPPROTO_BRSATMON ideal-int
  5838. pkg syscall (darwin-arm64-cgo), const IPPROTO_CFTP = 62
  5839. pkg syscall (darwin-arm64-cgo), const IPPROTO_CFTP ideal-int
  5840. pkg syscall (darwin-arm64-cgo), const IPPROTO_CHAOS = 16
  5841. pkg syscall (darwin-arm64-cgo), const IPPROTO_CHAOS ideal-int
  5842. pkg syscall (darwin-arm64-cgo), const IPPROTO_CMTP = 38
  5843. pkg syscall (darwin-arm64-cgo), const IPPROTO_CMTP ideal-int
  5844. pkg syscall (darwin-arm64-cgo), const IPPROTO_CPHB = 73
  5845. pkg syscall (darwin-arm64-cgo), const IPPROTO_CPHB ideal-int
  5846. pkg syscall (darwin-arm64-cgo), const IPPROTO_CPNX = 72
  5847. pkg syscall (darwin-arm64-cgo), const IPPROTO_CPNX ideal-int
  5848. pkg syscall (darwin-arm64-cgo), const IPPROTO_DDP = 37
  5849. pkg syscall (darwin-arm64-cgo), const IPPROTO_DDP ideal-int
  5850. pkg syscall (darwin-arm64-cgo), const IPPROTO_DGP = 86
  5851. pkg syscall (darwin-arm64-cgo), const IPPROTO_DGP ideal-int
  5852. pkg syscall (darwin-arm64-cgo), const IPPROTO_DIVERT = 254
  5853. pkg syscall (darwin-arm64-cgo), const IPPROTO_DIVERT ideal-int
  5854. pkg syscall (darwin-arm64-cgo), const IPPROTO_DONE = 257
  5855. pkg syscall (darwin-arm64-cgo), const IPPROTO_DONE ideal-int
  5856. pkg syscall (darwin-arm64-cgo), const IPPROTO_DSTOPTS = 60
  5857. pkg syscall (darwin-arm64-cgo), const IPPROTO_DSTOPTS ideal-int
  5858. pkg syscall (darwin-arm64-cgo), const IPPROTO_EGP = 8
  5859. pkg syscall (darwin-arm64-cgo), const IPPROTO_EGP ideal-int
  5860. pkg syscall (darwin-arm64-cgo), const IPPROTO_EMCON = 14
  5861. pkg syscall (darwin-arm64-cgo), const IPPROTO_EMCON ideal-int
  5862. pkg syscall (darwin-arm64-cgo), const IPPROTO_ENCAP = 98
  5863. pkg syscall (darwin-arm64-cgo), const IPPROTO_ENCAP ideal-int
  5864. pkg syscall (darwin-arm64-cgo), const IPPROTO_EON = 80
  5865. pkg syscall (darwin-arm64-cgo), const IPPROTO_EON ideal-int
  5866. pkg syscall (darwin-arm64-cgo), const IPPROTO_ESP = 50
  5867. pkg syscall (darwin-arm64-cgo), const IPPROTO_ESP ideal-int
  5868. pkg syscall (darwin-arm64-cgo), const IPPROTO_ETHERIP = 97
  5869. pkg syscall (darwin-arm64-cgo), const IPPROTO_ETHERIP ideal-int
  5870. pkg syscall (darwin-arm64-cgo), const IPPROTO_FRAGMENT = 44
  5871. pkg syscall (darwin-arm64-cgo), const IPPROTO_FRAGMENT ideal-int
  5872. pkg syscall (darwin-arm64-cgo), const IPPROTO_GGP = 3
  5873. pkg syscall (darwin-arm64-cgo), const IPPROTO_GGP ideal-int
  5874. pkg syscall (darwin-arm64-cgo), const IPPROTO_GMTP = 100
  5875. pkg syscall (darwin-arm64-cgo), const IPPROTO_GMTP ideal-int
  5876. pkg syscall (darwin-arm64-cgo), const IPPROTO_GRE = 47
  5877. pkg syscall (darwin-arm64-cgo), const IPPROTO_GRE ideal-int
  5878. pkg syscall (darwin-arm64-cgo), const IPPROTO_HELLO = 63
  5879. pkg syscall (darwin-arm64-cgo), const IPPROTO_HELLO ideal-int
  5880. pkg syscall (darwin-arm64-cgo), const IPPROTO_HMP = 20
  5881. pkg syscall (darwin-arm64-cgo), const IPPROTO_HMP ideal-int
  5882. pkg syscall (darwin-arm64-cgo), const IPPROTO_HOPOPTS = 0
  5883. pkg syscall (darwin-arm64-cgo), const IPPROTO_HOPOPTS ideal-int
  5884. pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMP = 1
  5885. pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMP ideal-int
  5886. pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMPV6 = 58
  5887. pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMPV6 ideal-int
  5888. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDP = 22
  5889. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDP ideal-int
  5890. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDPR = 35
  5891. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDPR ideal-int
  5892. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDRP = 45
  5893. pkg syscall (darwin-arm64-cgo), const IPPROTO_IDRP ideal-int
  5894. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGMP = 2
  5895. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGMP ideal-int
  5896. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGP = 85
  5897. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGP ideal-int
  5898. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGRP = 88
  5899. pkg syscall (darwin-arm64-cgo), const IPPROTO_IGRP ideal-int
  5900. pkg syscall (darwin-arm64-cgo), const IPPROTO_IL = 40
  5901. pkg syscall (darwin-arm64-cgo), const IPPROTO_IL ideal-int
  5902. pkg syscall (darwin-arm64-cgo), const IPPROTO_INLSP = 52
  5903. pkg syscall (darwin-arm64-cgo), const IPPROTO_INLSP ideal-int
  5904. pkg syscall (darwin-arm64-cgo), const IPPROTO_INP = 32
  5905. pkg syscall (darwin-arm64-cgo), const IPPROTO_INP ideal-int
  5906. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCOMP = 108
  5907. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCOMP ideal-int
  5908. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCV = 71
  5909. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCV ideal-int
  5910. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPEIP = 94
  5911. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPEIP ideal-int
  5912. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPIP = 4
  5913. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPIP ideal-int
  5914. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPPC = 67
  5915. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPPC ideal-int
  5916. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPV4 = 4
  5917. pkg syscall (darwin-arm64-cgo), const IPPROTO_IPV4 ideal-int
  5918. pkg syscall (darwin-arm64-cgo), const IPPROTO_IRTP = 28
  5919. pkg syscall (darwin-arm64-cgo), const IPPROTO_IRTP ideal-int
  5920. pkg syscall (darwin-arm64-cgo), const IPPROTO_KRYPTOLAN = 65
  5921. pkg syscall (darwin-arm64-cgo), const IPPROTO_KRYPTOLAN ideal-int
  5922. pkg syscall (darwin-arm64-cgo), const IPPROTO_LARP = 91
  5923. pkg syscall (darwin-arm64-cgo), const IPPROTO_LARP ideal-int
  5924. pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF1 = 25
  5925. pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF1 ideal-int
  5926. pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF2 = 26
  5927. pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF2 ideal-int
  5928. pkg syscall (darwin-arm64-cgo), const IPPROTO_MAX = 256
  5929. pkg syscall (darwin-arm64-cgo), const IPPROTO_MAX ideal-int
  5930. pkg syscall (darwin-arm64-cgo), const IPPROTO_MAXID = 52
  5931. pkg syscall (darwin-arm64-cgo), const IPPROTO_MAXID ideal-int
  5932. pkg syscall (darwin-arm64-cgo), const IPPROTO_MEAS = 19
  5933. pkg syscall (darwin-arm64-cgo), const IPPROTO_MEAS ideal-int
  5934. pkg syscall (darwin-arm64-cgo), const IPPROTO_MHRP = 48
  5935. pkg syscall (darwin-arm64-cgo), const IPPROTO_MHRP ideal-int
  5936. pkg syscall (darwin-arm64-cgo), const IPPROTO_MICP = 95
  5937. pkg syscall (darwin-arm64-cgo), const IPPROTO_MICP ideal-int
  5938. pkg syscall (darwin-arm64-cgo), const IPPROTO_MTP = 92
  5939. pkg syscall (darwin-arm64-cgo), const IPPROTO_MTP ideal-int
  5940. pkg syscall (darwin-arm64-cgo), const IPPROTO_MUX = 18
  5941. pkg syscall (darwin-arm64-cgo), const IPPROTO_MUX ideal-int
  5942. pkg syscall (darwin-arm64-cgo), const IPPROTO_ND = 77
  5943. pkg syscall (darwin-arm64-cgo), const IPPROTO_ND ideal-int
  5944. pkg syscall (darwin-arm64-cgo), const IPPROTO_NHRP = 54
  5945. pkg syscall (darwin-arm64-cgo), const IPPROTO_NHRP ideal-int
  5946. pkg syscall (darwin-arm64-cgo), const IPPROTO_NONE = 59
  5947. pkg syscall (darwin-arm64-cgo), const IPPROTO_NONE ideal-int
  5948. pkg syscall (darwin-arm64-cgo), const IPPROTO_NSP = 31
  5949. pkg syscall (darwin-arm64-cgo), const IPPROTO_NSP ideal-int
  5950. pkg syscall (darwin-arm64-cgo), const IPPROTO_NVPII = 11
  5951. pkg syscall (darwin-arm64-cgo), const IPPROTO_NVPII ideal-int
  5952. pkg syscall (darwin-arm64-cgo), const IPPROTO_OSPFIGP = 89
  5953. pkg syscall (darwin-arm64-cgo), const IPPROTO_OSPFIGP ideal-int
  5954. pkg syscall (darwin-arm64-cgo), const IPPROTO_PGM = 113
  5955. pkg syscall (darwin-arm64-cgo), const IPPROTO_PGM ideal-int
  5956. pkg syscall (darwin-arm64-cgo), const IPPROTO_PIGP = 9
  5957. pkg syscall (darwin-arm64-cgo), const IPPROTO_PIGP ideal-int
  5958. pkg syscall (darwin-arm64-cgo), const IPPROTO_PIM = 103
  5959. pkg syscall (darwin-arm64-cgo), const IPPROTO_PIM ideal-int
  5960. pkg syscall (darwin-arm64-cgo), const IPPROTO_PRM = 21
  5961. pkg syscall (darwin-arm64-cgo), const IPPROTO_PRM ideal-int
  5962. pkg syscall (darwin-arm64-cgo), const IPPROTO_PUP = 12
  5963. pkg syscall (darwin-arm64-cgo), const IPPROTO_PUP ideal-int
  5964. pkg syscall (darwin-arm64-cgo), const IPPROTO_PVP = 75
  5965. pkg syscall (darwin-arm64-cgo), const IPPROTO_PVP ideal-int
  5966. pkg syscall (darwin-arm64-cgo), const IPPROTO_RAW = 255
  5967. pkg syscall (darwin-arm64-cgo), const IPPROTO_RAW ideal-int
  5968. pkg syscall (darwin-arm64-cgo), const IPPROTO_RCCMON = 10
  5969. pkg syscall (darwin-arm64-cgo), const IPPROTO_RCCMON ideal-int
  5970. pkg syscall (darwin-arm64-cgo), const IPPROTO_RDP = 27
  5971. pkg syscall (darwin-arm64-cgo), const IPPROTO_RDP ideal-int
  5972. pkg syscall (darwin-arm64-cgo), const IPPROTO_ROUTING = 43
  5973. pkg syscall (darwin-arm64-cgo), const IPPROTO_ROUTING ideal-int
  5974. pkg syscall (darwin-arm64-cgo), const IPPROTO_RSVP = 46
  5975. pkg syscall (darwin-arm64-cgo), const IPPROTO_RSVP ideal-int
  5976. pkg syscall (darwin-arm64-cgo), const IPPROTO_RVD = 66
  5977. pkg syscall (darwin-arm64-cgo), const IPPROTO_RVD ideal-int
  5978. pkg syscall (darwin-arm64-cgo), const IPPROTO_SATEXPAK = 64
  5979. pkg syscall (darwin-arm64-cgo), const IPPROTO_SATEXPAK ideal-int
  5980. pkg syscall (darwin-arm64-cgo), const IPPROTO_SATMON = 69
  5981. pkg syscall (darwin-arm64-cgo), const IPPROTO_SATMON ideal-int
  5982. pkg syscall (darwin-arm64-cgo), const IPPROTO_SCCSP = 96
  5983. pkg syscall (darwin-arm64-cgo), const IPPROTO_SCCSP ideal-int
  5984. pkg syscall (darwin-arm64-cgo), const IPPROTO_SCTP = 132
  5985. pkg syscall (darwin-arm64-cgo), const IPPROTO_SCTP ideal-int
  5986. pkg syscall (darwin-arm64-cgo), const IPPROTO_SDRP = 42
  5987. pkg syscall (darwin-arm64-cgo), const IPPROTO_SDRP ideal-int
  5988. pkg syscall (darwin-arm64-cgo), const IPPROTO_SEP = 33
  5989. pkg syscall (darwin-arm64-cgo), const IPPROTO_SEP ideal-int
  5990. pkg syscall (darwin-arm64-cgo), const IPPROTO_SRPC = 90
  5991. pkg syscall (darwin-arm64-cgo), const IPPROTO_SRPC ideal-int
  5992. pkg syscall (darwin-arm64-cgo), const IPPROTO_ST = 7
  5993. pkg syscall (darwin-arm64-cgo), const IPPROTO_ST ideal-int
  5994. pkg syscall (darwin-arm64-cgo), const IPPROTO_SVMTP = 82
  5995. pkg syscall (darwin-arm64-cgo), const IPPROTO_SVMTP ideal-int
  5996. pkg syscall (darwin-arm64-cgo), const IPPROTO_SWIPE = 53
  5997. pkg syscall (darwin-arm64-cgo), const IPPROTO_SWIPE ideal-int
  5998. pkg syscall (darwin-arm64-cgo), const IPPROTO_TCF = 87
  5999. pkg syscall (darwin-arm64-cgo), const IPPROTO_TCF ideal-int
  6000. pkg syscall (darwin-arm64-cgo), const IPPROTO_TP = 29
  6001. pkg syscall (darwin-arm64-cgo), const IPPROTO_TP ideal-int
  6002. pkg syscall (darwin-arm64-cgo), const IPPROTO_TPXX = 39
  6003. pkg syscall (darwin-arm64-cgo), const IPPROTO_TPXX ideal-int
  6004. pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK1 = 23
  6005. pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK1 ideal-int
  6006. pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK2 = 24
  6007. pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK2 ideal-int
  6008. pkg syscall (darwin-arm64-cgo), const IPPROTO_TTP = 84
  6009. pkg syscall (darwin-arm64-cgo), const IPPROTO_TTP ideal-int
  6010. pkg syscall (darwin-arm64-cgo), const IPPROTO_VINES = 83
  6011. pkg syscall (darwin-arm64-cgo), const IPPROTO_VINES ideal-int
  6012. pkg syscall (darwin-arm64-cgo), const IPPROTO_VISA = 70
  6013. pkg syscall (darwin-arm64-cgo), const IPPROTO_VISA ideal-int
  6014. pkg syscall (darwin-arm64-cgo), const IPPROTO_VMTP = 81
  6015. pkg syscall (darwin-arm64-cgo), const IPPROTO_VMTP ideal-int
  6016. pkg syscall (darwin-arm64-cgo), const IPPROTO_WBEXPAK = 79
  6017. pkg syscall (darwin-arm64-cgo), const IPPROTO_WBEXPAK ideal-int
  6018. pkg syscall (darwin-arm64-cgo), const IPPROTO_WBMON = 78
  6019. pkg syscall (darwin-arm64-cgo), const IPPROTO_WBMON ideal-int
  6020. pkg syscall (darwin-arm64-cgo), const IPPROTO_WSN = 74
  6021. pkg syscall (darwin-arm64-cgo), const IPPROTO_WSN ideal-int
  6022. pkg syscall (darwin-arm64-cgo), const IPPROTO_XNET = 15
  6023. pkg syscall (darwin-arm64-cgo), const IPPROTO_XNET ideal-int
  6024. pkg syscall (darwin-arm64-cgo), const IPPROTO_XTP = 36
  6025. pkg syscall (darwin-arm64-cgo), const IPPROTO_XTP ideal-int
  6026. pkg syscall (darwin-arm64-cgo), const IPV6_2292DSTOPTS = 23
  6027. pkg syscall (darwin-arm64-cgo), const IPV6_2292DSTOPTS ideal-int
  6028. pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPLIMIT = 20
  6029. pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPLIMIT ideal-int
  6030. pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPOPTS = 22
  6031. pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPOPTS ideal-int
  6032. pkg syscall (darwin-arm64-cgo), const IPV6_2292NEXTHOP = 21
  6033. pkg syscall (darwin-arm64-cgo), const IPV6_2292NEXTHOP ideal-int
  6034. pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTINFO = 19
  6035. pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTINFO ideal-int
  6036. pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTOPTIONS = 25
  6037. pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTOPTIONS ideal-int
  6038. pkg syscall (darwin-arm64-cgo), const IPV6_2292RTHDR = 24
  6039. pkg syscall (darwin-arm64-cgo), const IPV6_2292RTHDR ideal-int
  6040. pkg syscall (darwin-arm64-cgo), const IPV6_BINDV6ONLY = 27
  6041. pkg syscall (darwin-arm64-cgo), const IPV6_BINDV6ONLY ideal-int
  6042. pkg syscall (darwin-arm64-cgo), const IPV6_BOUND_IF = 125
  6043. pkg syscall (darwin-arm64-cgo), const IPV6_BOUND_IF ideal-int
  6044. pkg syscall (darwin-arm64-cgo), const IPV6_CHECKSUM = 26
  6045. pkg syscall (darwin-arm64-cgo), const IPV6_CHECKSUM ideal-int
  6046. pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1
  6047. pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  6048. pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1
  6049. pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  6050. pkg syscall (darwin-arm64-cgo), const IPV6_DEFHLIM = 64
  6051. pkg syscall (darwin-arm64-cgo), const IPV6_DEFHLIM ideal-int
  6052. pkg syscall (darwin-arm64-cgo), const IPV6_FAITH = 29
  6053. pkg syscall (darwin-arm64-cgo), const IPV6_FAITH ideal-int
  6054. pkg syscall (darwin-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055
  6055. pkg syscall (darwin-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int
  6056. pkg syscall (darwin-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600
  6057. pkg syscall (darwin-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
  6058. pkg syscall (darwin-arm64-cgo), const IPV6_FRAGTTL = 120
  6059. pkg syscall (darwin-arm64-cgo), const IPV6_FRAGTTL ideal-int
  6060. pkg syscall (darwin-arm64-cgo), const IPV6_FW_ADD = 30
  6061. pkg syscall (darwin-arm64-cgo), const IPV6_FW_ADD ideal-int
  6062. pkg syscall (darwin-arm64-cgo), const IPV6_FW_DEL = 31
  6063. pkg syscall (darwin-arm64-cgo), const IPV6_FW_DEL ideal-int
  6064. pkg syscall (darwin-arm64-cgo), const IPV6_FW_FLUSH = 32
  6065. pkg syscall (darwin-arm64-cgo), const IPV6_FW_FLUSH ideal-int
  6066. pkg syscall (darwin-arm64-cgo), const IPV6_FW_GET = 34
  6067. pkg syscall (darwin-arm64-cgo), const IPV6_FW_GET ideal-int
  6068. pkg syscall (darwin-arm64-cgo), const IPV6_FW_ZERO = 33
  6069. pkg syscall (darwin-arm64-cgo), const IPV6_FW_ZERO ideal-int
  6070. pkg syscall (darwin-arm64-cgo), const IPV6_HLIMDEC = 1
  6071. pkg syscall (darwin-arm64-cgo), const IPV6_HLIMDEC ideal-int
  6072. pkg syscall (darwin-arm64-cgo), const IPV6_IPSEC_POLICY = 28
  6073. pkg syscall (darwin-arm64-cgo), const IPV6_IPSEC_POLICY ideal-int
  6074. pkg syscall (darwin-arm64-cgo), const IPV6_JOIN_GROUP = 12
  6075. pkg syscall (darwin-arm64-cgo), const IPV6_LEAVE_GROUP = 13
  6076. pkg syscall (darwin-arm64-cgo), const IPV6_MAXHLIM = 255
  6077. pkg syscall (darwin-arm64-cgo), const IPV6_MAXHLIM ideal-int
  6078. pkg syscall (darwin-arm64-cgo), const IPV6_MAXOPTHDR = 2048
  6079. pkg syscall (darwin-arm64-cgo), const IPV6_MAXOPTHDR ideal-int
  6080. pkg syscall (darwin-arm64-cgo), const IPV6_MAXPACKET = 65535
  6081. pkg syscall (darwin-arm64-cgo), const IPV6_MAXPACKET ideal-int
  6082. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512
  6083. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
  6084. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095
  6085. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
  6086. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128
  6087. pkg syscall (darwin-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
  6088. pkg syscall (darwin-arm64-cgo), const IPV6_MIN_MEMBERSHIPS = 31
  6089. pkg syscall (darwin-arm64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
  6090. pkg syscall (darwin-arm64-cgo), const IPV6_MMTU = 1280
  6091. pkg syscall (darwin-arm64-cgo), const IPV6_MMTU ideal-int
  6092. pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_HOPS = 10
  6093. pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_IF = 9
  6094. pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_LOOP = 11
  6095. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE = 14
  6096. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE ideal-int
  6097. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_DEFAULT = 0
  6098. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
  6099. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_HIGH = 1
  6100. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
  6101. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_LOW = 2
  6102. pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_LOW ideal-int
  6103. pkg syscall (darwin-arm64-cgo), const IPV6_RECVTCLASS = 35
  6104. pkg syscall (darwin-arm64-cgo), const IPV6_RECVTCLASS ideal-int
  6105. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_LOOSE = 0
  6106. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_LOOSE ideal-int
  6107. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_STRICT = 1
  6108. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_STRICT ideal-int
  6109. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_TYPE_0 = 0
  6110. pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
  6111. pkg syscall (darwin-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3
  6112. pkg syscall (darwin-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
  6113. pkg syscall (darwin-arm64-cgo), const IPV6_TCLASS = 36
  6114. pkg syscall (darwin-arm64-cgo), const IPV6_TCLASS ideal-int
  6115. pkg syscall (darwin-arm64-cgo), const IPV6_UNICAST_HOPS = 4
  6116. pkg syscall (darwin-arm64-cgo), const IPV6_V6ONLY = 27
  6117. pkg syscall (darwin-arm64-cgo), const IPV6_VERSION = 96
  6118. pkg syscall (darwin-arm64-cgo), const IPV6_VERSION ideal-int
  6119. pkg syscall (darwin-arm64-cgo), const IPV6_VERSION_MASK = 240
  6120. pkg syscall (darwin-arm64-cgo), const IPV6_VERSION_MASK ideal-int
  6121. pkg syscall (darwin-arm64-cgo), const IP_ADD_MEMBERSHIP = 12
  6122. pkg syscall (darwin-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70
  6123. pkg syscall (darwin-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
  6124. pkg syscall (darwin-arm64-cgo), const IP_BLOCK_SOURCE = 72
  6125. pkg syscall (darwin-arm64-cgo), const IP_BLOCK_SOURCE ideal-int
  6126. pkg syscall (darwin-arm64-cgo), const IP_BOUND_IF = 25
  6127. pkg syscall (darwin-arm64-cgo), const IP_BOUND_IF ideal-int
  6128. pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1
  6129. pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  6130. pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1
  6131. pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
  6132. pkg syscall (darwin-arm64-cgo), const IP_DF = 16384
  6133. pkg syscall (darwin-arm64-cgo), const IP_DF ideal-int
  6134. pkg syscall (darwin-arm64-cgo), const IP_DROP_MEMBERSHIP = 13
  6135. pkg syscall (darwin-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71
  6136. pkg syscall (darwin-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
  6137. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_CONFIGURE = 60
  6138. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
  6139. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_DEL = 61
  6140. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_DEL ideal-int
  6141. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_FLUSH = 62
  6142. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_FLUSH ideal-int
  6143. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_GET = 64
  6144. pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_GET ideal-int
  6145. pkg syscall (darwin-arm64-cgo), const IP_FAITH = 22
  6146. pkg syscall (darwin-arm64-cgo), const IP_FAITH ideal-int
  6147. pkg syscall (darwin-arm64-cgo), const IP_FW_ADD = 40
  6148. pkg syscall (darwin-arm64-cgo), const IP_FW_ADD ideal-int
  6149. pkg syscall (darwin-arm64-cgo), const IP_FW_DEL = 41
  6150. pkg syscall (darwin-arm64-cgo), const IP_FW_DEL ideal-int
  6151. pkg syscall (darwin-arm64-cgo), const IP_FW_FLUSH = 42
  6152. pkg syscall (darwin-arm64-cgo), const IP_FW_FLUSH ideal-int
  6153. pkg syscall (darwin-arm64-cgo), const IP_FW_GET = 44
  6154. pkg syscall (darwin-arm64-cgo), const IP_FW_GET ideal-int
  6155. pkg syscall (darwin-arm64-cgo), const IP_FW_RESETLOG = 45
  6156. pkg syscall (darwin-arm64-cgo), const IP_FW_RESETLOG ideal-int
  6157. pkg syscall (darwin-arm64-cgo), const IP_FW_ZERO = 43
  6158. pkg syscall (darwin-arm64-cgo), const IP_FW_ZERO ideal-int
  6159. pkg syscall (darwin-arm64-cgo), const IP_HDRINCL = 2
  6160. pkg syscall (darwin-arm64-cgo), const IP_HDRINCL ideal-int
  6161. pkg syscall (darwin-arm64-cgo), const IP_IPSEC_POLICY = 21
  6162. pkg syscall (darwin-arm64-cgo), const IP_IPSEC_POLICY ideal-int
  6163. pkg syscall (darwin-arm64-cgo), const IP_MAXPACKET = 65535
  6164. pkg syscall (darwin-arm64-cgo), const IP_MAXPACKET ideal-int
  6165. pkg syscall (darwin-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512
  6166. pkg syscall (darwin-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
  6167. pkg syscall (darwin-arm64-cgo), const IP_MAX_MEMBERSHIPS = 4095
  6168. pkg syscall (darwin-arm64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
  6169. pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128
  6170. pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
  6171. pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128
  6172. pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
  6173. pkg syscall (darwin-arm64-cgo), const IP_MF = 8192
  6174. pkg syscall (darwin-arm64-cgo), const IP_MF ideal-int
  6175. pkg syscall (darwin-arm64-cgo), const IP_MIN_MEMBERSHIPS = 31
  6176. pkg syscall (darwin-arm64-cgo), const IP_MIN_MEMBERSHIPS ideal-int
  6177. pkg syscall (darwin-arm64-cgo), const IP_MSFILTER = 74
  6178. pkg syscall (darwin-arm64-cgo), const IP_MSFILTER ideal-int
  6179. pkg syscall (darwin-arm64-cgo), const IP_MSS = 576
  6180. pkg syscall (darwin-arm64-cgo), const IP_MSS ideal-int
  6181. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IF = 9
  6182. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IFINDEX = 66
  6183. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IFINDEX ideal-int
  6184. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_LOOP = 11
  6185. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_TTL = 10
  6186. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_VIF = 14
  6187. pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_VIF ideal-int
  6188. pkg syscall (darwin-arm64-cgo), const IP_NAT__XXX = 55
  6189. pkg syscall (darwin-arm64-cgo), const IP_NAT__XXX ideal-int
  6190. pkg syscall (darwin-arm64-cgo), const IP_OFFMASK = 8191
  6191. pkg syscall (darwin-arm64-cgo), const IP_OFFMASK ideal-int
  6192. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ADD = 50
  6193. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ADD ideal-int
  6194. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_DEL = 51
  6195. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_DEL ideal-int
  6196. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_FLUSH = 52
  6197. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_FLUSH ideal-int
  6198. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_GET = 54
  6199. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_GET ideal-int
  6200. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_RESETLOG = 56
  6201. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_RESETLOG ideal-int
  6202. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ZERO = 53
  6203. pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ZERO ideal-int
  6204. pkg syscall (darwin-arm64-cgo), const IP_OPTIONS = 1
  6205. pkg syscall (darwin-arm64-cgo), const IP_OPTIONS ideal-int
  6206. pkg syscall (darwin-arm64-cgo), const IP_PKTINFO = 26
  6207. pkg syscall (darwin-arm64-cgo), const IP_PKTINFO ideal-int
  6208. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE = 19
  6209. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE ideal-int
  6210. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_DEFAULT = 0
  6211. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
  6212. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_HIGH = 1
  6213. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_HIGH ideal-int
  6214. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_LOW = 2
  6215. pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_LOW ideal-int
  6216. pkg syscall (darwin-arm64-cgo), const IP_RECVDSTADDR = 7
  6217. pkg syscall (darwin-arm64-cgo), const IP_RECVDSTADDR ideal-int
  6218. pkg syscall (darwin-arm64-cgo), const IP_RECVIF = 20
  6219. pkg syscall (darwin-arm64-cgo), const IP_RECVIF ideal-int
  6220. pkg syscall (darwin-arm64-cgo), const IP_RECVOPTS = 5
  6221. pkg syscall (darwin-arm64-cgo), const IP_RECVOPTS ideal-int
  6222. pkg syscall (darwin-arm64-cgo), const IP_RECVPKTINFO = 26
  6223. pkg syscall (darwin-arm64-cgo), const IP_RECVPKTINFO ideal-int
  6224. pkg syscall (darwin-arm64-cgo), const IP_RECVRETOPTS = 6
  6225. pkg syscall (darwin-arm64-cgo), const IP_RECVRETOPTS ideal-int
  6226. pkg syscall (darwin-arm64-cgo), const IP_RECVTTL = 24
  6227. pkg syscall (darwin-arm64-cgo), const IP_RECVTTL ideal-int
  6228. pkg syscall (darwin-arm64-cgo), const IP_RETOPTS = 8
  6229. pkg syscall (darwin-arm64-cgo), const IP_RETOPTS ideal-int
  6230. pkg syscall (darwin-arm64-cgo), const IP_RF = 32768
  6231. pkg syscall (darwin-arm64-cgo), const IP_RF ideal-int
  6232. pkg syscall (darwin-arm64-cgo), const IP_RSVP_OFF = 16
  6233. pkg syscall (darwin-arm64-cgo), const IP_RSVP_OFF ideal-int
  6234. pkg syscall (darwin-arm64-cgo), const IP_RSVP_ON = 15
  6235. pkg syscall (darwin-arm64-cgo), const IP_RSVP_ON ideal-int
  6236. pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_OFF = 18
  6237. pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_OFF ideal-int
  6238. pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_ON = 17
  6239. pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_ON ideal-int
  6240. pkg syscall (darwin-arm64-cgo), const IP_STRIPHDR = 23
  6241. pkg syscall (darwin-arm64-cgo), const IP_STRIPHDR ideal-int
  6242. pkg syscall (darwin-arm64-cgo), const IP_TOS = 3
  6243. pkg syscall (darwin-arm64-cgo), const IP_TRAFFIC_MGT_BACKGROUND = 65
  6244. pkg syscall (darwin-arm64-cgo), const IP_TRAFFIC_MGT_BACKGROUND ideal-int
  6245. pkg syscall (darwin-arm64-cgo), const IP_TTL = 4
  6246. pkg syscall (darwin-arm64-cgo), const IP_UNBLOCK_SOURCE = 73
  6247. pkg syscall (darwin-arm64-cgo), const IP_UNBLOCK_SOURCE ideal-int
  6248. pkg syscall (darwin-arm64-cgo), const ISIG = 128
  6249. pkg syscall (darwin-arm64-cgo), const ISIG ideal-int
  6250. pkg syscall (darwin-arm64-cgo), const ISTRIP = 32
  6251. pkg syscall (darwin-arm64-cgo), const ISTRIP ideal-int
  6252. pkg syscall (darwin-arm64-cgo), const IUTF8 = 16384
  6253. pkg syscall (darwin-arm64-cgo), const IUTF8 ideal-int
  6254. pkg syscall (darwin-arm64-cgo), const IXANY = 2048
  6255. pkg syscall (darwin-arm64-cgo), const IXANY ideal-int
  6256. pkg syscall (darwin-arm64-cgo), const IXOFF = 1024
  6257. pkg syscall (darwin-arm64-cgo), const IXOFF ideal-int
  6258. pkg syscall (darwin-arm64-cgo), const IXON = 512
  6259. pkg syscall (darwin-arm64-cgo), const IXON ideal-int
  6260. pkg syscall (darwin-arm64-cgo), const LOCK_EX = 2
  6261. pkg syscall (darwin-arm64-cgo), const LOCK_EX ideal-int
  6262. pkg syscall (darwin-arm64-cgo), const LOCK_NB = 4
  6263. pkg syscall (darwin-arm64-cgo), const LOCK_NB ideal-int
  6264. pkg syscall (darwin-arm64-cgo), const LOCK_SH = 1
  6265. pkg syscall (darwin-arm64-cgo), const LOCK_SH ideal-int
  6266. pkg syscall (darwin-arm64-cgo), const LOCK_UN = 8
  6267. pkg syscall (darwin-arm64-cgo), const LOCK_UN ideal-int
  6268. pkg syscall (darwin-arm64-cgo), const MADV_CAN_REUSE = 9
  6269. pkg syscall (darwin-arm64-cgo), const MADV_CAN_REUSE ideal-int
  6270. pkg syscall (darwin-arm64-cgo), const MADV_DONTNEED = 4
  6271. pkg syscall (darwin-arm64-cgo), const MADV_DONTNEED ideal-int
  6272. pkg syscall (darwin-arm64-cgo), const MADV_FREE = 5
  6273. pkg syscall (darwin-arm64-cgo), const MADV_FREE ideal-int
  6274. pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSABLE = 7
  6275. pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSABLE ideal-int
  6276. pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSE = 8
  6277. pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSE ideal-int
  6278. pkg syscall (darwin-arm64-cgo), const MADV_NORMAL = 0
  6279. pkg syscall (darwin-arm64-cgo), const MADV_NORMAL ideal-int
  6280. pkg syscall (darwin-arm64-cgo), const MADV_RANDOM = 1
  6281. pkg syscall (darwin-arm64-cgo), const MADV_RANDOM ideal-int
  6282. pkg syscall (darwin-arm64-cgo), const MADV_SEQUENTIAL = 2
  6283. pkg syscall (darwin-arm64-cgo), const MADV_SEQUENTIAL ideal-int
  6284. pkg syscall (darwin-arm64-cgo), const MADV_WILLNEED = 3
  6285. pkg syscall (darwin-arm64-cgo), const MADV_WILLNEED ideal-int
  6286. pkg syscall (darwin-arm64-cgo), const MADV_ZERO_WIRED_PAGES = 6
  6287. pkg syscall (darwin-arm64-cgo), const MADV_ZERO_WIRED_PAGES ideal-int
  6288. pkg syscall (darwin-arm64-cgo), const MAP_ANON = 4096
  6289. pkg syscall (darwin-arm64-cgo), const MAP_ANON ideal-int
  6290. pkg syscall (darwin-arm64-cgo), const MAP_COPY = 2
  6291. pkg syscall (darwin-arm64-cgo), const MAP_COPY ideal-int
  6292. pkg syscall (darwin-arm64-cgo), const MAP_FILE = 0
  6293. pkg syscall (darwin-arm64-cgo), const MAP_FILE ideal-int
  6294. pkg syscall (darwin-arm64-cgo), const MAP_FIXED = 16
  6295. pkg syscall (darwin-arm64-cgo), const MAP_FIXED ideal-int
  6296. pkg syscall (darwin-arm64-cgo), const MAP_HASSEMAPHORE = 512
  6297. pkg syscall (darwin-arm64-cgo), const MAP_HASSEMAPHORE ideal-int
  6298. pkg syscall (darwin-arm64-cgo), const MAP_JIT = 2048
  6299. pkg syscall (darwin-arm64-cgo), const MAP_JIT ideal-int
  6300. pkg syscall (darwin-arm64-cgo), const MAP_NOCACHE = 1024
  6301. pkg syscall (darwin-arm64-cgo), const MAP_NOCACHE ideal-int
  6302. pkg syscall (darwin-arm64-cgo), const MAP_NOEXTEND = 256
  6303. pkg syscall (darwin-arm64-cgo), const MAP_NOEXTEND ideal-int
  6304. pkg syscall (darwin-arm64-cgo), const MAP_NORESERVE = 64
  6305. pkg syscall (darwin-arm64-cgo), const MAP_NORESERVE ideal-int
  6306. pkg syscall (darwin-arm64-cgo), const MAP_PRIVATE = 2
  6307. pkg syscall (darwin-arm64-cgo), const MAP_PRIVATE ideal-int
  6308. pkg syscall (darwin-arm64-cgo), const MAP_RENAME = 32
  6309. pkg syscall (darwin-arm64-cgo), const MAP_RENAME ideal-int
  6310. pkg syscall (darwin-arm64-cgo), const MAP_RESERVED0080 = 128
  6311. pkg syscall (darwin-arm64-cgo), const MAP_RESERVED0080 ideal-int
  6312. pkg syscall (darwin-arm64-cgo), const MAP_SHARED = 1
  6313. pkg syscall (darwin-arm64-cgo), const MAP_SHARED ideal-int
  6314. pkg syscall (darwin-arm64-cgo), const MCL_CURRENT = 1
  6315. pkg syscall (darwin-arm64-cgo), const MCL_CURRENT ideal-int
  6316. pkg syscall (darwin-arm64-cgo), const MCL_FUTURE = 2
  6317. pkg syscall (darwin-arm64-cgo), const MCL_FUTURE ideal-int
  6318. pkg syscall (darwin-arm64-cgo), const MSG_CTRUNC = 32
  6319. pkg syscall (darwin-arm64-cgo), const MSG_CTRUNC ideal-int
  6320. pkg syscall (darwin-arm64-cgo), const MSG_DONTROUTE = 4
  6321. pkg syscall (darwin-arm64-cgo), const MSG_DONTROUTE ideal-int
  6322. pkg syscall (darwin-arm64-cgo), const MSG_DONTWAIT = 128
  6323. pkg syscall (darwin-arm64-cgo), const MSG_DONTWAIT ideal-int
  6324. pkg syscall (darwin-arm64-cgo), const MSG_EOF = 256
  6325. pkg syscall (darwin-arm64-cgo), const MSG_EOF ideal-int
  6326. pkg syscall (darwin-arm64-cgo), const MSG_EOR = 8
  6327. pkg syscall (darwin-arm64-cgo), const MSG_EOR ideal-int
  6328. pkg syscall (darwin-arm64-cgo), const MSG_FLUSH = 1024
  6329. pkg syscall (darwin-arm64-cgo), const MSG_FLUSH ideal-int
  6330. pkg syscall (darwin-arm64-cgo), const MSG_HAVEMORE = 8192
  6331. pkg syscall (darwin-arm64-cgo), const MSG_HAVEMORE ideal-int
  6332. pkg syscall (darwin-arm64-cgo), const MSG_HOLD = 2048
  6333. pkg syscall (darwin-arm64-cgo), const MSG_HOLD ideal-int
  6334. pkg syscall (darwin-arm64-cgo), const MSG_NEEDSA = 65536
  6335. pkg syscall (darwin-arm64-cgo), const MSG_NEEDSA ideal-int
  6336. pkg syscall (darwin-arm64-cgo), const MSG_OOB = 1
  6337. pkg syscall (darwin-arm64-cgo), const MSG_OOB ideal-int
  6338. pkg syscall (darwin-arm64-cgo), const MSG_PEEK = 2
  6339. pkg syscall (darwin-arm64-cgo), const MSG_PEEK ideal-int
  6340. pkg syscall (darwin-arm64-cgo), const MSG_RCVMORE = 16384
  6341. pkg syscall (darwin-arm64-cgo), const MSG_RCVMORE ideal-int
  6342. pkg syscall (darwin-arm64-cgo), const MSG_SEND = 4096
  6343. pkg syscall (darwin-arm64-cgo), const MSG_SEND ideal-int
  6344. pkg syscall (darwin-arm64-cgo), const MSG_TRUNC = 16
  6345. pkg syscall (darwin-arm64-cgo), const MSG_TRUNC ideal-int
  6346. pkg syscall (darwin-arm64-cgo), const MSG_WAITALL = 64
  6347. pkg syscall (darwin-arm64-cgo), const MSG_WAITALL ideal-int
  6348. pkg syscall (darwin-arm64-cgo), const MSG_WAITSTREAM = 512
  6349. pkg syscall (darwin-arm64-cgo), const MSG_WAITSTREAM ideal-int
  6350. pkg syscall (darwin-arm64-cgo), const MS_ASYNC = 1
  6351. pkg syscall (darwin-arm64-cgo), const MS_ASYNC ideal-int
  6352. pkg syscall (darwin-arm64-cgo), const MS_DEACTIVATE = 8
  6353. pkg syscall (darwin-arm64-cgo), const MS_DEACTIVATE ideal-int
  6354. pkg syscall (darwin-arm64-cgo), const MS_INVALIDATE = 2
  6355. pkg syscall (darwin-arm64-cgo), const MS_INVALIDATE ideal-int
  6356. pkg syscall (darwin-arm64-cgo), const MS_KILLPAGES = 4
  6357. pkg syscall (darwin-arm64-cgo), const MS_KILLPAGES ideal-int
  6358. pkg syscall (darwin-arm64-cgo), const MS_SYNC = 16
  6359. pkg syscall (darwin-arm64-cgo), const MS_SYNC ideal-int
  6360. pkg syscall (darwin-arm64-cgo), const NAME_MAX = 255
  6361. pkg syscall (darwin-arm64-cgo), const NAME_MAX ideal-int
  6362. pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP = 1
  6363. pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP ideal-int
  6364. pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP2 = 7
  6365. pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP2 ideal-int
  6366. pkg syscall (darwin-arm64-cgo), const NET_RT_FLAGS = 2
  6367. pkg syscall (darwin-arm64-cgo), const NET_RT_FLAGS ideal-int
  6368. pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST = 3
  6369. pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST ideal-int
  6370. pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST2 = 6
  6371. pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST2 ideal-int
  6372. pkg syscall (darwin-arm64-cgo), const NET_RT_MAXID = 10
  6373. pkg syscall (darwin-arm64-cgo), const NET_RT_MAXID ideal-int
  6374. pkg syscall (darwin-arm64-cgo), const NET_RT_STAT = 4
  6375. pkg syscall (darwin-arm64-cgo), const NET_RT_STAT ideal-int
  6376. pkg syscall (darwin-arm64-cgo), const NET_RT_TRASH = 5
  6377. pkg syscall (darwin-arm64-cgo), const NET_RT_TRASH ideal-int
  6378. pkg syscall (darwin-arm64-cgo), const NOFLSH = 2147483648
  6379. pkg syscall (darwin-arm64-cgo), const NOFLSH ideal-int
  6380. pkg syscall (darwin-arm64-cgo), const NOTE_ABSOLUTE = 8
  6381. pkg syscall (darwin-arm64-cgo), const NOTE_ABSOLUTE ideal-int
  6382. pkg syscall (darwin-arm64-cgo), const NOTE_ATTRIB = 8
  6383. pkg syscall (darwin-arm64-cgo), const NOTE_ATTRIB ideal-int
  6384. pkg syscall (darwin-arm64-cgo), const NOTE_BACKGROUND = 64
  6385. pkg syscall (darwin-arm64-cgo), const NOTE_BACKGROUND ideal-int
  6386. pkg syscall (darwin-arm64-cgo), const NOTE_CHILD = 4
  6387. pkg syscall (darwin-arm64-cgo), const NOTE_CHILD ideal-int
  6388. pkg syscall (darwin-arm64-cgo), const NOTE_CRITICAL = 32
  6389. pkg syscall (darwin-arm64-cgo), const NOTE_CRITICAL ideal-int
  6390. pkg syscall (darwin-arm64-cgo), const NOTE_DELETE = 1
  6391. pkg syscall (darwin-arm64-cgo), const NOTE_DELETE ideal-int
  6392. pkg syscall (darwin-arm64-cgo), const NOTE_EXEC = 536870912
  6393. pkg syscall (darwin-arm64-cgo), const NOTE_EXEC ideal-int
  6394. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT = 2147483648
  6395. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT ideal-int
  6396. pkg syscall (darwin-arm64-cgo), const NOTE_EXITSTATUS = 67108864
  6397. pkg syscall (darwin-arm64-cgo), const NOTE_EXITSTATUS ideal-int
  6398. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_CSERROR = 262144
  6399. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_CSERROR ideal-int
  6400. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DECRYPTFAIL = 65536
  6401. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DECRYPTFAIL ideal-int
  6402. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL = 33554432
  6403. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL ideal-int
  6404. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL_MASK = 458752
  6405. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL_MASK ideal-int
  6406. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_MEMORY = 131072
  6407. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_MEMORY ideal-int
  6408. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_REPARENTED = 524288
  6409. pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_REPARENTED ideal-int
  6410. pkg syscall (darwin-arm64-cgo), const NOTE_EXTEND = 4
  6411. pkg syscall (darwin-arm64-cgo), const NOTE_EXTEND ideal-int
  6412. pkg syscall (darwin-arm64-cgo), const NOTE_FFAND = 1073741824
  6413. pkg syscall (darwin-arm64-cgo), const NOTE_FFAND ideal-int
  6414. pkg syscall (darwin-arm64-cgo), const NOTE_FFCOPY = 3221225472
  6415. pkg syscall (darwin-arm64-cgo), const NOTE_FFCOPY ideal-int
  6416. pkg syscall (darwin-arm64-cgo), const NOTE_FFCTRLMASK = 3221225472
  6417. pkg syscall (darwin-arm64-cgo), const NOTE_FFCTRLMASK ideal-int
  6418. pkg syscall (darwin-arm64-cgo), const NOTE_FFLAGSMASK = 16777215
  6419. pkg syscall (darwin-arm64-cgo), const NOTE_FFLAGSMASK ideal-int
  6420. pkg syscall (darwin-arm64-cgo), const NOTE_FFNOP = 0
  6421. pkg syscall (darwin-arm64-cgo), const NOTE_FFNOP ideal-int
  6422. pkg syscall (darwin-arm64-cgo), const NOTE_FFOR = 2147483648
  6423. pkg syscall (darwin-arm64-cgo), const NOTE_FFOR ideal-int
  6424. pkg syscall (darwin-arm64-cgo), const NOTE_FORK = 1073741824
  6425. pkg syscall (darwin-arm64-cgo), const NOTE_FORK ideal-int
  6426. pkg syscall (darwin-arm64-cgo), const NOTE_LEEWAY = 16
  6427. pkg syscall (darwin-arm64-cgo), const NOTE_LEEWAY ideal-int
  6428. pkg syscall (darwin-arm64-cgo), const NOTE_LINK = 16
  6429. pkg syscall (darwin-arm64-cgo), const NOTE_LINK ideal-int
  6430. pkg syscall (darwin-arm64-cgo), const NOTE_LOWAT = 1
  6431. pkg syscall (darwin-arm64-cgo), const NOTE_LOWAT ideal-int
  6432. pkg syscall (darwin-arm64-cgo), const NOTE_NONE = 128
  6433. pkg syscall (darwin-arm64-cgo), const NOTE_NONE ideal-int
  6434. pkg syscall (darwin-arm64-cgo), const NOTE_NSECONDS = 4
  6435. pkg syscall (darwin-arm64-cgo), const NOTE_NSECONDS ideal-int
  6436. pkg syscall (darwin-arm64-cgo), const NOTE_PCTRLMASK = -1048576
  6437. pkg syscall (darwin-arm64-cgo), const NOTE_PCTRLMASK ideal-int
  6438. pkg syscall (darwin-arm64-cgo), const NOTE_PDATAMASK = 1048575
  6439. pkg syscall (darwin-arm64-cgo), const NOTE_PDATAMASK ideal-int
  6440. pkg syscall (darwin-arm64-cgo), const NOTE_REAP = 268435456
  6441. pkg syscall (darwin-arm64-cgo), const NOTE_REAP ideal-int
  6442. pkg syscall (darwin-arm64-cgo), const NOTE_RENAME = 32
  6443. pkg syscall (darwin-arm64-cgo), const NOTE_RENAME ideal-int
  6444. pkg syscall (darwin-arm64-cgo), const NOTE_REVOKE = 64
  6445. pkg syscall (darwin-arm64-cgo), const NOTE_REVOKE ideal-int
  6446. pkg syscall (darwin-arm64-cgo), const NOTE_SECONDS = 1
  6447. pkg syscall (darwin-arm64-cgo), const NOTE_SECONDS ideal-int
  6448. pkg syscall (darwin-arm64-cgo), const NOTE_SIGNAL = 134217728
  6449. pkg syscall (darwin-arm64-cgo), const NOTE_SIGNAL ideal-int
  6450. pkg syscall (darwin-arm64-cgo), const NOTE_TRACK = 1
  6451. pkg syscall (darwin-arm64-cgo), const NOTE_TRACK ideal-int
  6452. pkg syscall (darwin-arm64-cgo), const NOTE_TRACKERR = 2
  6453. pkg syscall (darwin-arm64-cgo), const NOTE_TRACKERR ideal-int
  6454. pkg syscall (darwin-arm64-cgo), const NOTE_TRIGGER = 16777216
  6455. pkg syscall (darwin-arm64-cgo), const NOTE_TRIGGER ideal-int
  6456. pkg syscall (darwin-arm64-cgo), const NOTE_USECONDS = 2
  6457. pkg syscall (darwin-arm64-cgo), const NOTE_USECONDS ideal-int
  6458. pkg syscall (darwin-arm64-cgo), const NOTE_VM_ERROR = 268435456
  6459. pkg syscall (darwin-arm64-cgo), const NOTE_VM_ERROR ideal-int
  6460. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE = 2147483648
  6461. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE ideal-int
  6462. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912
  6463. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int
  6464. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_TERMINATE = 1073741824
  6465. pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_TERMINATE ideal-int
  6466. pkg syscall (darwin-arm64-cgo), const NOTE_WRITE = 2
  6467. pkg syscall (darwin-arm64-cgo), const NOTE_WRITE ideal-int
  6468. pkg syscall (darwin-arm64-cgo), const OCRNL = 16
  6469. pkg syscall (darwin-arm64-cgo), const OCRNL ideal-int
  6470. pkg syscall (darwin-arm64-cgo), const OFDEL = 131072
  6471. pkg syscall (darwin-arm64-cgo), const OFDEL ideal-int
  6472. pkg syscall (darwin-arm64-cgo), const OFILL = 128
  6473. pkg syscall (darwin-arm64-cgo), const OFILL ideal-int
  6474. pkg syscall (darwin-arm64-cgo), const ONLCR = 2
  6475. pkg syscall (darwin-arm64-cgo), const ONLCR ideal-int
  6476. pkg syscall (darwin-arm64-cgo), const ONLRET = 64
  6477. pkg syscall (darwin-arm64-cgo), const ONLRET ideal-int
  6478. pkg syscall (darwin-arm64-cgo), const ONOCR = 32
  6479. pkg syscall (darwin-arm64-cgo), const ONOCR ideal-int
  6480. pkg syscall (darwin-arm64-cgo), const ONOEOT = 8
  6481. pkg syscall (darwin-arm64-cgo), const ONOEOT ideal-int
  6482. pkg syscall (darwin-arm64-cgo), const OPOST = 1
  6483. pkg syscall (darwin-arm64-cgo), const OPOST ideal-int
  6484. pkg syscall (darwin-arm64-cgo), const O_ACCMODE = 3
  6485. pkg syscall (darwin-arm64-cgo), const O_ACCMODE ideal-int
  6486. pkg syscall (darwin-arm64-cgo), const O_ALERT = 536870912
  6487. pkg syscall (darwin-arm64-cgo), const O_ALERT ideal-int
  6488. pkg syscall (darwin-arm64-cgo), const O_APPEND = 8
  6489. pkg syscall (darwin-arm64-cgo), const O_ASYNC = 64
  6490. pkg syscall (darwin-arm64-cgo), const O_CLOEXEC = 16777216
  6491. pkg syscall (darwin-arm64-cgo), const O_CREAT = 512
  6492. pkg syscall (darwin-arm64-cgo), const O_DIRECTORY = 1048576
  6493. pkg syscall (darwin-arm64-cgo), const O_DIRECTORY ideal-int
  6494. pkg syscall (darwin-arm64-cgo), const O_DP_GETRAWENCRYPTED = 1
  6495. pkg syscall (darwin-arm64-cgo), const O_DP_GETRAWENCRYPTED ideal-int
  6496. pkg syscall (darwin-arm64-cgo), const O_DSYNC = 4194304
  6497. pkg syscall (darwin-arm64-cgo), const O_DSYNC ideal-int
  6498. pkg syscall (darwin-arm64-cgo), const O_EVTONLY = 32768
  6499. pkg syscall (darwin-arm64-cgo), const O_EVTONLY ideal-int
  6500. pkg syscall (darwin-arm64-cgo), const O_EXCL = 2048
  6501. pkg syscall (darwin-arm64-cgo), const O_EXLOCK = 32
  6502. pkg syscall (darwin-arm64-cgo), const O_EXLOCK ideal-int
  6503. pkg syscall (darwin-arm64-cgo), const O_FSYNC = 128
  6504. pkg syscall (darwin-arm64-cgo), const O_FSYNC ideal-int
  6505. pkg syscall (darwin-arm64-cgo), const O_NDELAY = 4
  6506. pkg syscall (darwin-arm64-cgo), const O_NDELAY ideal-int
  6507. pkg syscall (darwin-arm64-cgo), const O_NOCTTY = 131072
  6508. pkg syscall (darwin-arm64-cgo), const O_NOFOLLOW = 256
  6509. pkg syscall (darwin-arm64-cgo), const O_NOFOLLOW ideal-int
  6510. pkg syscall (darwin-arm64-cgo), const O_NONBLOCK = 4
  6511. pkg syscall (darwin-arm64-cgo), const O_POPUP = 2147483648
  6512. pkg syscall (darwin-arm64-cgo), const O_POPUP ideal-int
  6513. pkg syscall (darwin-arm64-cgo), const O_SHLOCK = 16
  6514. pkg syscall (darwin-arm64-cgo), const O_SHLOCK ideal-int
  6515. pkg syscall (darwin-arm64-cgo), const O_SYMLINK = 2097152
  6516. pkg syscall (darwin-arm64-cgo), const O_SYMLINK ideal-int
  6517. pkg syscall (darwin-arm64-cgo), const O_SYNC = 128
  6518. pkg syscall (darwin-arm64-cgo), const O_TRUNC = 1024
  6519. pkg syscall (darwin-arm64-cgo), const PARENB = 4096
  6520. pkg syscall (darwin-arm64-cgo), const PARENB ideal-int
  6521. pkg syscall (darwin-arm64-cgo), const PARMRK = 8
  6522. pkg syscall (darwin-arm64-cgo), const PARMRK ideal-int
  6523. pkg syscall (darwin-arm64-cgo), const PARODD = 8192
  6524. pkg syscall (darwin-arm64-cgo), const PARODD ideal-int
  6525. pkg syscall (darwin-arm64-cgo), const PENDIN = 536870912
  6526. pkg syscall (darwin-arm64-cgo), const PENDIN ideal-int
  6527. pkg syscall (darwin-arm64-cgo), const PRIO_PGRP = 1
  6528. pkg syscall (darwin-arm64-cgo), const PRIO_PGRP ideal-int
  6529. pkg syscall (darwin-arm64-cgo), const PRIO_PROCESS = 0
  6530. pkg syscall (darwin-arm64-cgo), const PRIO_PROCESS ideal-int
  6531. pkg syscall (darwin-arm64-cgo), const PRIO_USER = 2
  6532. pkg syscall (darwin-arm64-cgo), const PRIO_USER ideal-int
  6533. pkg syscall (darwin-arm64-cgo), const PROT_EXEC = 4
  6534. pkg syscall (darwin-arm64-cgo), const PROT_EXEC ideal-int
  6535. pkg syscall (darwin-arm64-cgo), const PROT_NONE = 0
  6536. pkg syscall (darwin-arm64-cgo), const PROT_NONE ideal-int
  6537. pkg syscall (darwin-arm64-cgo), const PROT_READ = 1
  6538. pkg syscall (darwin-arm64-cgo), const PROT_READ ideal-int
  6539. pkg syscall (darwin-arm64-cgo), const PROT_WRITE = 2
  6540. pkg syscall (darwin-arm64-cgo), const PROT_WRITE ideal-int
  6541. pkg syscall (darwin-arm64-cgo), const PTRACE_CONT = 7
  6542. pkg syscall (darwin-arm64-cgo), const PTRACE_CONT ideal-int
  6543. pkg syscall (darwin-arm64-cgo), const PTRACE_KILL = 8
  6544. pkg syscall (darwin-arm64-cgo), const PTRACE_KILL ideal-int
  6545. pkg syscall (darwin-arm64-cgo), const PTRACE_TRACEME = 0
  6546. pkg syscall (darwin-arm64-cgo), const PTRACE_TRACEME ideal-int
  6547. pkg syscall (darwin-arm64-cgo), const PT_ATTACH = 10
  6548. pkg syscall (darwin-arm64-cgo), const PT_ATTACH ideal-int
  6549. pkg syscall (darwin-arm64-cgo), const PT_ATTACHEXC = 14
  6550. pkg syscall (darwin-arm64-cgo), const PT_ATTACHEXC ideal-int
  6551. pkg syscall (darwin-arm64-cgo), const PT_CONTINUE = 7
  6552. pkg syscall (darwin-arm64-cgo), const PT_CONTINUE ideal-int
  6553. pkg syscall (darwin-arm64-cgo), const PT_DENY_ATTACH = 31
  6554. pkg syscall (darwin-arm64-cgo), const PT_DENY_ATTACH ideal-int
  6555. pkg syscall (darwin-arm64-cgo), const PT_DETACH = 11
  6556. pkg syscall (darwin-arm64-cgo), const PT_DETACH ideal-int
  6557. pkg syscall (darwin-arm64-cgo), const PT_FIRSTMACH = 32
  6558. pkg syscall (darwin-arm64-cgo), const PT_FIRSTMACH ideal-int
  6559. pkg syscall (darwin-arm64-cgo), const PT_FORCEQUOTA = 30
  6560. pkg syscall (darwin-arm64-cgo), const PT_FORCEQUOTA ideal-int
  6561. pkg syscall (darwin-arm64-cgo), const PT_KILL = 8
  6562. pkg syscall (darwin-arm64-cgo), const PT_KILL ideal-int
  6563. pkg syscall (darwin-arm64-cgo), const PT_READ_D = 2
  6564. pkg syscall (darwin-arm64-cgo), const PT_READ_D ideal-int
  6565. pkg syscall (darwin-arm64-cgo), const PT_READ_I = 1
  6566. pkg syscall (darwin-arm64-cgo), const PT_READ_I ideal-int
  6567. pkg syscall (darwin-arm64-cgo), const PT_READ_U = 3
  6568. pkg syscall (darwin-arm64-cgo), const PT_READ_U ideal-int
  6569. pkg syscall (darwin-arm64-cgo), const PT_SIGEXC = 12
  6570. pkg syscall (darwin-arm64-cgo), const PT_SIGEXC ideal-int
  6571. pkg syscall (darwin-arm64-cgo), const PT_STEP = 9
  6572. pkg syscall (darwin-arm64-cgo), const PT_STEP ideal-int
  6573. pkg syscall (darwin-arm64-cgo), const PT_THUPDATE = 13
  6574. pkg syscall (darwin-arm64-cgo), const PT_THUPDATE ideal-int
  6575. pkg syscall (darwin-arm64-cgo), const PT_TRACE_ME = 0
  6576. pkg syscall (darwin-arm64-cgo), const PT_TRACE_ME ideal-int
  6577. pkg syscall (darwin-arm64-cgo), const PT_WRITE_D = 5
  6578. pkg syscall (darwin-arm64-cgo), const PT_WRITE_D ideal-int
  6579. pkg syscall (darwin-arm64-cgo), const PT_WRITE_I = 4
  6580. pkg syscall (darwin-arm64-cgo), const PT_WRITE_I ideal-int
  6581. pkg syscall (darwin-arm64-cgo), const PT_WRITE_U = 6
  6582. pkg syscall (darwin-arm64-cgo), const PT_WRITE_U ideal-int
  6583. pkg syscall (darwin-arm64-cgo), const RLIMIT_AS = 5
  6584. pkg syscall (darwin-arm64-cgo), const RLIMIT_AS ideal-int
  6585. pkg syscall (darwin-arm64-cgo), const RLIMIT_CORE = 4
  6586. pkg syscall (darwin-arm64-cgo), const RLIMIT_CORE ideal-int
  6587. pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU = 0
  6588. pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU ideal-int
  6589. pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU_USAGE_MONITOR = 2
  6590. pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU_USAGE_MONITOR ideal-int
  6591. pkg syscall (darwin-arm64-cgo), const RLIMIT_DATA = 2
  6592. pkg syscall (darwin-arm64-cgo), const RLIMIT_DATA ideal-int
  6593. pkg syscall (darwin-arm64-cgo), const RLIMIT_FSIZE = 1
  6594. pkg syscall (darwin-arm64-cgo), const RLIMIT_FSIZE ideal-int
  6595. pkg syscall (darwin-arm64-cgo), const RLIMIT_NOFILE = 8
  6596. pkg syscall (darwin-arm64-cgo), const RLIMIT_NOFILE ideal-int
  6597. pkg syscall (darwin-arm64-cgo), const RLIMIT_STACK = 3
  6598. pkg syscall (darwin-arm64-cgo), const RLIMIT_STACK ideal-int
  6599. pkg syscall (darwin-arm64-cgo), const RLIM_INFINITY = 9223372036854775807
  6600. pkg syscall (darwin-arm64-cgo), const RLIM_INFINITY ideal-int
  6601. pkg syscall (darwin-arm64-cgo), const RTAX_AUTHOR = 6
  6602. pkg syscall (darwin-arm64-cgo), const RTAX_AUTHOR ideal-int
  6603. pkg syscall (darwin-arm64-cgo), const RTAX_BRD = 7
  6604. pkg syscall (darwin-arm64-cgo), const RTAX_BRD ideal-int
  6605. pkg syscall (darwin-arm64-cgo), const RTAX_DST = 0
  6606. pkg syscall (darwin-arm64-cgo), const RTAX_DST ideal-int
  6607. pkg syscall (darwin-arm64-cgo), const RTAX_GATEWAY = 1
  6608. pkg syscall (darwin-arm64-cgo), const RTAX_GATEWAY ideal-int
  6609. pkg syscall (darwin-arm64-cgo), const RTAX_GENMASK = 3
  6610. pkg syscall (darwin-arm64-cgo), const RTAX_GENMASK ideal-int
  6611. pkg syscall (darwin-arm64-cgo), const RTAX_IFA = 5
  6612. pkg syscall (darwin-arm64-cgo), const RTAX_IFA ideal-int
  6613. pkg syscall (darwin-arm64-cgo), const RTAX_IFP = 4
  6614. pkg syscall (darwin-arm64-cgo), const RTAX_IFP ideal-int
  6615. pkg syscall (darwin-arm64-cgo), const RTAX_MAX = 8
  6616. pkg syscall (darwin-arm64-cgo), const RTAX_MAX ideal-int
  6617. pkg syscall (darwin-arm64-cgo), const RTAX_NETMASK = 2
  6618. pkg syscall (darwin-arm64-cgo), const RTAX_NETMASK ideal-int
  6619. pkg syscall (darwin-arm64-cgo), const RTA_AUTHOR = 64
  6620. pkg syscall (darwin-arm64-cgo), const RTA_AUTHOR ideal-int
  6621. pkg syscall (darwin-arm64-cgo), const RTA_BRD = 128
  6622. pkg syscall (darwin-arm64-cgo), const RTA_BRD ideal-int
  6623. pkg syscall (darwin-arm64-cgo), const RTA_DST = 1
  6624. pkg syscall (darwin-arm64-cgo), const RTA_DST ideal-int
  6625. pkg syscall (darwin-arm64-cgo), const RTA_GATEWAY = 2
  6626. pkg syscall (darwin-arm64-cgo), const RTA_GATEWAY ideal-int
  6627. pkg syscall (darwin-arm64-cgo), const RTA_GENMASK = 8
  6628. pkg syscall (darwin-arm64-cgo), const RTA_GENMASK ideal-int
  6629. pkg syscall (darwin-arm64-cgo), const RTA_IFA = 32
  6630. pkg syscall (darwin-arm64-cgo), const RTA_IFA ideal-int
  6631. pkg syscall (darwin-arm64-cgo), const RTA_IFP = 16
  6632. pkg syscall (darwin-arm64-cgo), const RTA_IFP ideal-int
  6633. pkg syscall (darwin-arm64-cgo), const RTA_NETMASK = 4
  6634. pkg syscall (darwin-arm64-cgo), const RTA_NETMASK ideal-int
  6635. pkg syscall (darwin-arm64-cgo), const RTF_BLACKHOLE = 4096
  6636. pkg syscall (darwin-arm64-cgo), const RTF_BLACKHOLE ideal-int
  6637. pkg syscall (darwin-arm64-cgo), const RTF_BROADCAST = 4194304
  6638. pkg syscall (darwin-arm64-cgo), const RTF_BROADCAST ideal-int
  6639. pkg syscall (darwin-arm64-cgo), const RTF_CLONING = 256
  6640. pkg syscall (darwin-arm64-cgo), const RTF_CLONING ideal-int
  6641. pkg syscall (darwin-arm64-cgo), const RTF_CONDEMNED = 33554432
  6642. pkg syscall (darwin-arm64-cgo), const RTF_CONDEMNED ideal-int
  6643. pkg syscall (darwin-arm64-cgo), const RTF_DELCLONE = 128
  6644. pkg syscall (darwin-arm64-cgo), const RTF_DELCLONE ideal-int
  6645. pkg syscall (darwin-arm64-cgo), const RTF_DONE = 64
  6646. pkg syscall (darwin-arm64-cgo), const RTF_DONE ideal-int
  6647. pkg syscall (darwin-arm64-cgo), const RTF_DYNAMIC = 16
  6648. pkg syscall (darwin-arm64-cgo), const RTF_DYNAMIC ideal-int
  6649. pkg syscall (darwin-arm64-cgo), const RTF_GATEWAY = 2
  6650. pkg syscall (darwin-arm64-cgo), const RTF_GATEWAY ideal-int
  6651. pkg syscall (darwin-arm64-cgo), const RTF_HOST = 4
  6652. pkg syscall (darwin-arm64-cgo), const RTF_HOST ideal-int
  6653. pkg syscall (darwin-arm64-cgo), const RTF_IFREF = 67108864
  6654. pkg syscall (darwin-arm64-cgo), const RTF_IFREF ideal-int
  6655. pkg syscall (darwin-arm64-cgo), const RTF_IFSCOPE = 16777216
  6656. pkg syscall (darwin-arm64-cgo), const RTF_IFSCOPE ideal-int
  6657. pkg syscall (darwin-arm64-cgo), const RTF_LLINFO = 1024
  6658. pkg syscall (darwin-arm64-cgo), const RTF_LLINFO ideal-int
  6659. pkg syscall (darwin-arm64-cgo), const RTF_LOCAL = 2097152
  6660. pkg syscall (darwin-arm64-cgo), const RTF_LOCAL ideal-int
  6661. pkg syscall (darwin-arm64-cgo), const RTF_MODIFIED = 32
  6662. pkg syscall (darwin-arm64-cgo), const RTF_MODIFIED ideal-int
  6663. pkg syscall (darwin-arm64-cgo), const RTF_MULTICAST = 8388608
  6664. pkg syscall (darwin-arm64-cgo), const RTF_MULTICAST ideal-int
  6665. pkg syscall (darwin-arm64-cgo), const RTF_PINNED = 1048576
  6666. pkg syscall (darwin-arm64-cgo), const RTF_PINNED ideal-int
  6667. pkg syscall (darwin-arm64-cgo), const RTF_PRCLONING = 65536
  6668. pkg syscall (darwin-arm64-cgo), const RTF_PRCLONING ideal-int
  6669. pkg syscall (darwin-arm64-cgo), const RTF_PROTO1 = 32768
  6670. pkg syscall (darwin-arm64-cgo), const RTF_PROTO1 ideal-int
  6671. pkg syscall (darwin-arm64-cgo), const RTF_PROTO2 = 16384
  6672. pkg syscall (darwin-arm64-cgo), const RTF_PROTO2 ideal-int
  6673. pkg syscall (darwin-arm64-cgo), const RTF_PROTO3 = 262144
  6674. pkg syscall (darwin-arm64-cgo), const RTF_PROTO3 ideal-int
  6675. pkg syscall (darwin-arm64-cgo), const RTF_PROXY = 134217728
  6676. pkg syscall (darwin-arm64-cgo), const RTF_PROXY ideal-int
  6677. pkg syscall (darwin-arm64-cgo), const RTF_REJECT = 8
  6678. pkg syscall (darwin-arm64-cgo), const RTF_REJECT ideal-int
  6679. pkg syscall (darwin-arm64-cgo), const RTF_ROUTER = 268435456
  6680. pkg syscall (darwin-arm64-cgo), const RTF_ROUTER ideal-int
  6681. pkg syscall (darwin-arm64-cgo), const RTF_STATIC = 2048
  6682. pkg syscall (darwin-arm64-cgo), const RTF_STATIC ideal-int
  6683. pkg syscall (darwin-arm64-cgo), const RTF_UP = 1
  6684. pkg syscall (darwin-arm64-cgo), const RTF_UP ideal-int
  6685. pkg syscall (darwin-arm64-cgo), const RTF_WASCLONED = 131072
  6686. pkg syscall (darwin-arm64-cgo), const RTF_WASCLONED ideal-int
  6687. pkg syscall (darwin-arm64-cgo), const RTF_XRESOLVE = 512
  6688. pkg syscall (darwin-arm64-cgo), const RTF_XRESOLVE ideal-int
  6689. pkg syscall (darwin-arm64-cgo), const RTM_ADD = 1
  6690. pkg syscall (darwin-arm64-cgo), const RTM_ADD ideal-int
  6691. pkg syscall (darwin-arm64-cgo), const RTM_CHANGE = 3
  6692. pkg syscall (darwin-arm64-cgo), const RTM_CHANGE ideal-int
  6693. pkg syscall (darwin-arm64-cgo), const RTM_DELADDR = 13
  6694. pkg syscall (darwin-arm64-cgo), const RTM_DELADDR ideal-int
  6695. pkg syscall (darwin-arm64-cgo), const RTM_DELETE = 2
  6696. pkg syscall (darwin-arm64-cgo), const RTM_DELETE ideal-int
  6697. pkg syscall (darwin-arm64-cgo), const RTM_DELMADDR = 16
  6698. pkg syscall (darwin-arm64-cgo), const RTM_DELMADDR ideal-int
  6699. pkg syscall (darwin-arm64-cgo), const RTM_GET = 4
  6700. pkg syscall (darwin-arm64-cgo), const RTM_GET ideal-int
  6701. pkg syscall (darwin-arm64-cgo), const RTM_GET2 = 20
  6702. pkg syscall (darwin-arm64-cgo), const RTM_GET2 ideal-int
  6703. pkg syscall (darwin-arm64-cgo), const RTM_IFINFO = 14
  6704. pkg syscall (darwin-arm64-cgo), const RTM_IFINFO ideal-int
  6705. pkg syscall (darwin-arm64-cgo), const RTM_IFINFO2 = 18
  6706. pkg syscall (darwin-arm64-cgo), const RTM_IFINFO2 ideal-int
  6707. pkg syscall (darwin-arm64-cgo), const RTM_LOCK = 8
  6708. pkg syscall (darwin-arm64-cgo), const RTM_LOCK ideal-int
  6709. pkg syscall (darwin-arm64-cgo), const RTM_LOSING = 5
  6710. pkg syscall (darwin-arm64-cgo), const RTM_LOSING ideal-int
  6711. pkg syscall (darwin-arm64-cgo), const RTM_MISS = 7
  6712. pkg syscall (darwin-arm64-cgo), const RTM_MISS ideal-int
  6713. pkg syscall (darwin-arm64-cgo), const RTM_NEWADDR = 12
  6714. pkg syscall (darwin-arm64-cgo), const RTM_NEWADDR ideal-int
  6715. pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR = 15
  6716. pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR ideal-int
  6717. pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR2 = 19
  6718. pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR2 ideal-int
  6719. pkg syscall (darwin-arm64-cgo), const RTM_OLDADD = 9
  6720. pkg syscall (darwin-arm64-cgo), const RTM_OLDADD ideal-int
  6721. pkg syscall (darwin-arm64-cgo), const RTM_OLDDEL = 10
  6722. pkg syscall (darwin-arm64-cgo), const RTM_OLDDEL ideal-int
  6723. pkg syscall (darwin-arm64-cgo), const RTM_REDIRECT = 6
  6724. pkg syscall (darwin-arm64-cgo), const RTM_REDIRECT ideal-int
  6725. pkg syscall (darwin-arm64-cgo), const RTM_RESOLVE = 11
  6726. pkg syscall (darwin-arm64-cgo), const RTM_RESOLVE ideal-int
  6727. pkg syscall (darwin-arm64-cgo), const RTM_RTTUNIT = 1000000
  6728. pkg syscall (darwin-arm64-cgo), const RTM_RTTUNIT ideal-int
  6729. pkg syscall (darwin-arm64-cgo), const RTM_VERSION = 5
  6730. pkg syscall (darwin-arm64-cgo), const RTM_VERSION ideal-int
  6731. pkg syscall (darwin-arm64-cgo), const RTV_EXPIRE = 4
  6732. pkg syscall (darwin-arm64-cgo), const RTV_EXPIRE ideal-int
  6733. pkg syscall (darwin-arm64-cgo), const RTV_HOPCOUNT = 2
  6734. pkg syscall (darwin-arm64-cgo), const RTV_HOPCOUNT ideal-int
  6735. pkg syscall (darwin-arm64-cgo), const RTV_MTU = 1
  6736. pkg syscall (darwin-arm64-cgo), const RTV_MTU ideal-int
  6737. pkg syscall (darwin-arm64-cgo), const RTV_RPIPE = 8
  6738. pkg syscall (darwin-arm64-cgo), const RTV_RPIPE ideal-int
  6739. pkg syscall (darwin-arm64-cgo), const RTV_RTT = 64
  6740. pkg syscall (darwin-arm64-cgo), const RTV_RTT ideal-int
  6741. pkg syscall (darwin-arm64-cgo), const RTV_RTTVAR = 128
  6742. pkg syscall (darwin-arm64-cgo), const RTV_RTTVAR ideal-int
  6743. pkg syscall (darwin-arm64-cgo), const RTV_SPIPE = 16
  6744. pkg syscall (darwin-arm64-cgo), const RTV_SPIPE ideal-int
  6745. pkg syscall (darwin-arm64-cgo), const RTV_SSTHRESH = 32
  6746. pkg syscall (darwin-arm64-cgo), const RTV_SSTHRESH ideal-int
  6747. pkg syscall (darwin-arm64-cgo), const RUSAGE_CHILDREN = -1
  6748. pkg syscall (darwin-arm64-cgo), const RUSAGE_CHILDREN ideal-int
  6749. pkg syscall (darwin-arm64-cgo), const RUSAGE_SELF = 0
  6750. pkg syscall (darwin-arm64-cgo), const RUSAGE_SELF ideal-int
  6751. pkg syscall (darwin-arm64-cgo), const SCM_CREDS = 3
  6752. pkg syscall (darwin-arm64-cgo), const SCM_CREDS ideal-int
  6753. pkg syscall (darwin-arm64-cgo), const SCM_RIGHTS = 1
  6754. pkg syscall (darwin-arm64-cgo), const SCM_RIGHTS ideal-int
  6755. pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP = 2
  6756. pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP ideal-int
  6757. pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP_MONOTONIC = 4
  6758. pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP_MONOTONIC ideal-int
  6759. pkg syscall (darwin-arm64-cgo), const SIGBUS = 10
  6760. pkg syscall (darwin-arm64-cgo), const SIGCHLD = 20
  6761. pkg syscall (darwin-arm64-cgo), const SIGCHLD Signal
  6762. pkg syscall (darwin-arm64-cgo), const SIGCONT = 19
  6763. pkg syscall (darwin-arm64-cgo), const SIGCONT Signal
  6764. pkg syscall (darwin-arm64-cgo), const SIGEMT = 7
  6765. pkg syscall (darwin-arm64-cgo), const SIGEMT Signal
  6766. pkg syscall (darwin-arm64-cgo), const SIGINFO = 29
  6767. pkg syscall (darwin-arm64-cgo), const SIGINFO Signal
  6768. pkg syscall (darwin-arm64-cgo), const SIGIO = 23
  6769. pkg syscall (darwin-arm64-cgo), const SIGIO Signal
  6770. pkg syscall (darwin-arm64-cgo), const SIGIOT = 6
  6771. pkg syscall (darwin-arm64-cgo), const SIGIOT Signal
  6772. pkg syscall (darwin-arm64-cgo), const SIGPROF = 27
  6773. pkg syscall (darwin-arm64-cgo), const SIGPROF Signal
  6774. pkg syscall (darwin-arm64-cgo), const SIGSTOP = 17
  6775. pkg syscall (darwin-arm64-cgo), const SIGSTOP Signal
  6776. pkg syscall (darwin-arm64-cgo), const SIGSYS = 12
  6777. pkg syscall (darwin-arm64-cgo), const SIGSYS Signal
  6778. pkg syscall (darwin-arm64-cgo), const SIGTSTP = 18
  6779. pkg syscall (darwin-arm64-cgo), const SIGTSTP Signal
  6780. pkg syscall (darwin-arm64-cgo), const SIGTTIN = 21
  6781. pkg syscall (darwin-arm64-cgo), const SIGTTIN Signal
  6782. pkg syscall (darwin-arm64-cgo), const SIGTTOU = 22
  6783. pkg syscall (darwin-arm64-cgo), const SIGTTOU Signal
  6784. pkg syscall (darwin-arm64-cgo), const SIGURG = 16
  6785. pkg syscall (darwin-arm64-cgo), const SIGURG Signal
  6786. pkg syscall (darwin-arm64-cgo), const SIGUSR1 = 30
  6787. pkg syscall (darwin-arm64-cgo), const SIGUSR1 Signal
  6788. pkg syscall (darwin-arm64-cgo), const SIGUSR2 = 31
  6789. pkg syscall (darwin-arm64-cgo), const SIGUSR2 Signal
  6790. pkg syscall (darwin-arm64-cgo), const SIGVTALRM = 26
  6791. pkg syscall (darwin-arm64-cgo), const SIGVTALRM Signal
  6792. pkg syscall (darwin-arm64-cgo), const SIGWINCH = 28
  6793. pkg syscall (darwin-arm64-cgo), const SIGWINCH Signal
  6794. pkg syscall (darwin-arm64-cgo), const SIGXCPU = 24
  6795. pkg syscall (darwin-arm64-cgo), const SIGXCPU Signal
  6796. pkg syscall (darwin-arm64-cgo), const SIGXFSZ = 25
  6797. pkg syscall (darwin-arm64-cgo), const SIGXFSZ Signal
  6798. pkg syscall (darwin-arm64-cgo), const SIOCADDMULTI = 2149607729
  6799. pkg syscall (darwin-arm64-cgo), const SIOCADDMULTI ideal-int
  6800. pkg syscall (darwin-arm64-cgo), const SIOCAIFADDR = 2151704858
  6801. pkg syscall (darwin-arm64-cgo), const SIOCAIFADDR ideal-int
  6802. pkg syscall (darwin-arm64-cgo), const SIOCARPIPLL = 3223349544
  6803. pkg syscall (darwin-arm64-cgo), const SIOCARPIPLL ideal-int
  6804. pkg syscall (darwin-arm64-cgo), const SIOCATMARK = 1074033415
  6805. pkg syscall (darwin-arm64-cgo), const SIOCATMARK ideal-int
  6806. pkg syscall (darwin-arm64-cgo), const SIOCAUTOADDR = 3223349542
  6807. pkg syscall (darwin-arm64-cgo), const SIOCAUTOADDR ideal-int
  6808. pkg syscall (darwin-arm64-cgo), const SIOCAUTONETMASK = 2149607719
  6809. pkg syscall (darwin-arm64-cgo), const SIOCAUTONETMASK ideal-int
  6810. pkg syscall (darwin-arm64-cgo), const SIOCDELMULTI = 2149607730
  6811. pkg syscall (darwin-arm64-cgo), const SIOCDELMULTI ideal-int
  6812. pkg syscall (darwin-arm64-cgo), const SIOCDIFADDR = 2149607705
  6813. pkg syscall (darwin-arm64-cgo), const SIOCDIFADDR ideal-int
  6814. pkg syscall (darwin-arm64-cgo), const SIOCDIFPHYADDR = 2149607745
  6815. pkg syscall (darwin-arm64-cgo), const SIOCDIFPHYADDR ideal-int
  6816. pkg syscall (darwin-arm64-cgo), const SIOCGDRVSPEC = 3223873915
  6817. pkg syscall (darwin-arm64-cgo), const SIOCGDRVSPEC ideal-int
  6818. pkg syscall (darwin-arm64-cgo), const SIOCGETVLAN = 3223349631
  6819. pkg syscall (darwin-arm64-cgo), const SIOCGETVLAN ideal-int
  6820. pkg syscall (darwin-arm64-cgo), const SIOCGHIWAT = 1074033409
  6821. pkg syscall (darwin-arm64-cgo), const SIOCGHIWAT ideal-int
  6822. pkg syscall (darwin-arm64-cgo), const SIOCGIFADDR = 3223349537
  6823. pkg syscall (darwin-arm64-cgo), const SIOCGIFADDR ideal-int
  6824. pkg syscall (darwin-arm64-cgo), const SIOCGIFALTMTU = 3223349576
  6825. pkg syscall (darwin-arm64-cgo), const SIOCGIFALTMTU ideal-int
  6826. pkg syscall (darwin-arm64-cgo), const SIOCGIFASYNCMAP = 3223349628
  6827. pkg syscall (darwin-arm64-cgo), const SIOCGIFASYNCMAP ideal-int
  6828. pkg syscall (darwin-arm64-cgo), const SIOCGIFBOND = 3223349575
  6829. pkg syscall (darwin-arm64-cgo), const SIOCGIFBOND ideal-int
  6830. pkg syscall (darwin-arm64-cgo), const SIOCGIFBRDADDR = 3223349539
  6831. pkg syscall (darwin-arm64-cgo), const SIOCGIFBRDADDR ideal-int
  6832. pkg syscall (darwin-arm64-cgo), const SIOCGIFCAP = 3223349595
  6833. pkg syscall (darwin-arm64-cgo), const SIOCGIFCAP ideal-int
  6834. pkg syscall (darwin-arm64-cgo), const SIOCGIFCONF = 3222038820
  6835. pkg syscall (darwin-arm64-cgo), const SIOCGIFCONF ideal-int
  6836. pkg syscall (darwin-arm64-cgo), const SIOCGIFDEVMTU = 3223349572
  6837. pkg syscall (darwin-arm64-cgo), const SIOCGIFDEVMTU ideal-int
  6838. pkg syscall (darwin-arm64-cgo), const SIOCGIFDSTADDR = 3223349538
  6839. pkg syscall (darwin-arm64-cgo), const SIOCGIFDSTADDR ideal-int
  6840. pkg syscall (darwin-arm64-cgo), const SIOCGIFFLAGS = 3223349521
  6841. pkg syscall (darwin-arm64-cgo), const SIOCGIFFLAGS ideal-int
  6842. pkg syscall (darwin-arm64-cgo), const SIOCGIFGENERIC = 3223349562
  6843. pkg syscall (darwin-arm64-cgo), const SIOCGIFGENERIC ideal-int
  6844. pkg syscall (darwin-arm64-cgo), const SIOCGIFKPI = 3223349639
  6845. pkg syscall (darwin-arm64-cgo), const SIOCGIFKPI ideal-int
  6846. pkg syscall (darwin-arm64-cgo), const SIOCGIFMAC = 3223349634
  6847. pkg syscall (darwin-arm64-cgo), const SIOCGIFMAC ideal-int
  6848. pkg syscall (darwin-arm64-cgo), const SIOCGIFMEDIA = 3224135992
  6849. pkg syscall (darwin-arm64-cgo), const SIOCGIFMEDIA ideal-int
  6850. pkg syscall (darwin-arm64-cgo), const SIOCGIFMETRIC = 3223349527
  6851. pkg syscall (darwin-arm64-cgo), const SIOCGIFMETRIC ideal-int
  6852. pkg syscall (darwin-arm64-cgo), const SIOCGIFMTU = 3223349555
  6853. pkg syscall (darwin-arm64-cgo), const SIOCGIFMTU ideal-int
  6854. pkg syscall (darwin-arm64-cgo), const SIOCGIFNETMASK = 3223349541
  6855. pkg syscall (darwin-arm64-cgo), const SIOCGIFNETMASK ideal-int
  6856. pkg syscall (darwin-arm64-cgo), const SIOCGIFPDSTADDR = 3223349568
  6857. pkg syscall (darwin-arm64-cgo), const SIOCGIFPDSTADDR ideal-int
  6858. pkg syscall (darwin-arm64-cgo), const SIOCGIFPHYS = 3223349557
  6859. pkg syscall (darwin-arm64-cgo), const SIOCGIFPHYS ideal-int
  6860. pkg syscall (darwin-arm64-cgo), const SIOCGIFPSRCADDR = 3223349567
  6861. pkg syscall (darwin-arm64-cgo), const SIOCGIFPSRCADDR ideal-int
  6862. pkg syscall (darwin-arm64-cgo), const SIOCGIFSTATUS = 3274795325
  6863. pkg syscall (darwin-arm64-cgo), const SIOCGIFSTATUS ideal-int
  6864. pkg syscall (darwin-arm64-cgo), const SIOCGIFVLAN = 3223349631
  6865. pkg syscall (darwin-arm64-cgo), const SIOCGIFVLAN ideal-int
  6866. pkg syscall (darwin-arm64-cgo), const SIOCGIFWAKEFLAGS = 3223349640
  6867. pkg syscall (darwin-arm64-cgo), const SIOCGIFWAKEFLAGS ideal-int
  6868. pkg syscall (darwin-arm64-cgo), const SIOCGLOWAT = 1074033411
  6869. pkg syscall (darwin-arm64-cgo), const SIOCGLOWAT ideal-int
  6870. pkg syscall (darwin-arm64-cgo), const SIOCGPGRP = 1074033417
  6871. pkg syscall (darwin-arm64-cgo), const SIOCGPGRP ideal-int
  6872. pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE = 3223349624
  6873. pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE ideal-int
  6874. pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE2 = 3223349626
  6875. pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE2 ideal-int
  6876. pkg syscall (darwin-arm64-cgo), const SIOCIFDESTROY = 2149607801
  6877. pkg syscall (darwin-arm64-cgo), const SIOCIFDESTROY ideal-int
  6878. pkg syscall (darwin-arm64-cgo), const SIOCIFGCLONERS = 3222301057
  6879. pkg syscall (darwin-arm64-cgo), const SIOCIFGCLONERS ideal-int
  6880. pkg syscall (darwin-arm64-cgo), const SIOCRSLVMULTI = 3222300987
  6881. pkg syscall (darwin-arm64-cgo), const SIOCRSLVMULTI ideal-int
  6882. pkg syscall (darwin-arm64-cgo), const SIOCSDRVSPEC = 2150132091
  6883. pkg syscall (darwin-arm64-cgo), const SIOCSDRVSPEC ideal-int
  6884. pkg syscall (darwin-arm64-cgo), const SIOCSETVLAN = 2149607806
  6885. pkg syscall (darwin-arm64-cgo), const SIOCSETVLAN ideal-int
  6886. pkg syscall (darwin-arm64-cgo), const SIOCSHIWAT = 2147775232
  6887. pkg syscall (darwin-arm64-cgo), const SIOCSHIWAT ideal-int
  6888. pkg syscall (darwin-arm64-cgo), const SIOCSIFADDR = 2149607692
  6889. pkg syscall (darwin-arm64-cgo), const SIOCSIFADDR ideal-int
  6890. pkg syscall (darwin-arm64-cgo), const SIOCSIFALTMTU = 2149607749
  6891. pkg syscall (darwin-arm64-cgo), const SIOCSIFALTMTU ideal-int
  6892. pkg syscall (darwin-arm64-cgo), const SIOCSIFASYNCMAP = 2149607805
  6893. pkg syscall (darwin-arm64-cgo), const SIOCSIFASYNCMAP ideal-int
  6894. pkg syscall (darwin-arm64-cgo), const SIOCSIFBOND = 2149607750
  6895. pkg syscall (darwin-arm64-cgo), const SIOCSIFBOND ideal-int
  6896. pkg syscall (darwin-arm64-cgo), const SIOCSIFBRDADDR = 2149607699
  6897. pkg syscall (darwin-arm64-cgo), const SIOCSIFBRDADDR ideal-int
  6898. pkg syscall (darwin-arm64-cgo), const SIOCSIFCAP = 2149607770
  6899. pkg syscall (darwin-arm64-cgo), const SIOCSIFCAP ideal-int
  6900. pkg syscall (darwin-arm64-cgo), const SIOCSIFDSTADDR = 2149607694
  6901. pkg syscall (darwin-arm64-cgo), const SIOCSIFDSTADDR ideal-int
  6902. pkg syscall (darwin-arm64-cgo), const SIOCSIFFLAGS = 2149607696
  6903. pkg syscall (darwin-arm64-cgo), const SIOCSIFFLAGS ideal-int
  6904. pkg syscall (darwin-arm64-cgo), const SIOCSIFGENERIC = 2149607737
  6905. pkg syscall (darwin-arm64-cgo), const SIOCSIFGENERIC ideal-int
  6906. pkg syscall (darwin-arm64-cgo), const SIOCSIFKPI = 2149607814
  6907. pkg syscall (darwin-arm64-cgo), const SIOCSIFKPI ideal-int
  6908. pkg syscall (darwin-arm64-cgo), const SIOCSIFLLADDR = 2149607740
  6909. pkg syscall (darwin-arm64-cgo), const SIOCSIFLLADDR ideal-int
  6910. pkg syscall (darwin-arm64-cgo), const SIOCSIFMAC = 2149607811
  6911. pkg syscall (darwin-arm64-cgo), const SIOCSIFMAC ideal-int
  6912. pkg syscall (darwin-arm64-cgo), const SIOCSIFMEDIA = 3223349559
  6913. pkg syscall (darwin-arm64-cgo), const SIOCSIFMEDIA ideal-int
  6914. pkg syscall (darwin-arm64-cgo), const SIOCSIFMETRIC = 2149607704
  6915. pkg syscall (darwin-arm64-cgo), const SIOCSIFMETRIC ideal-int
  6916. pkg syscall (darwin-arm64-cgo), const SIOCSIFMTU = 2149607732
  6917. pkg syscall (darwin-arm64-cgo), const SIOCSIFMTU ideal-int
  6918. pkg syscall (darwin-arm64-cgo), const SIOCSIFNETMASK = 2149607702
  6919. pkg syscall (darwin-arm64-cgo), const SIOCSIFNETMASK ideal-int
  6920. pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYADDR = 2151704894
  6921. pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYADDR ideal-int
  6922. pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYS = 2149607734
  6923. pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYS ideal-int
  6924. pkg syscall (darwin-arm64-cgo), const SIOCSIFVLAN = 2149607806
  6925. pkg syscall (darwin-arm64-cgo), const SIOCSIFVLAN ideal-int
  6926. pkg syscall (darwin-arm64-cgo), const SIOCSLOWAT = 2147775234
  6927. pkg syscall (darwin-arm64-cgo), const SIOCSLOWAT ideal-int
  6928. pkg syscall (darwin-arm64-cgo), const SIOCSPGRP = 2147775240
  6929. pkg syscall (darwin-arm64-cgo), const SIOCSPGRP ideal-int
  6930. pkg syscall (darwin-arm64-cgo), const SOCK_MAXADDRLEN = 255
  6931. pkg syscall (darwin-arm64-cgo), const SOCK_MAXADDRLEN ideal-int
  6932. pkg syscall (darwin-arm64-cgo), const SOCK_RDM = 4
  6933. pkg syscall (darwin-arm64-cgo), const SOCK_RDM ideal-int
  6934. pkg syscall (darwin-arm64-cgo), const SOL_SOCKET = 65535
  6935. pkg syscall (darwin-arm64-cgo), const SOMAXCONN = 128
  6936. pkg syscall (darwin-arm64-cgo), const SO_ACCEPTCONN = 2
  6937. pkg syscall (darwin-arm64-cgo), const SO_ACCEPTCONN ideal-int
  6938. pkg syscall (darwin-arm64-cgo), const SO_BROADCAST = 32
  6939. pkg syscall (darwin-arm64-cgo), const SO_DEBUG = 1
  6940. pkg syscall (darwin-arm64-cgo), const SO_DEBUG ideal-int
  6941. pkg syscall (darwin-arm64-cgo), const SO_DONTROUTE = 16
  6942. pkg syscall (darwin-arm64-cgo), const SO_DONTTRUNC = 8192
  6943. pkg syscall (darwin-arm64-cgo), const SO_DONTTRUNC ideal-int
  6944. pkg syscall (darwin-arm64-cgo), const SO_ERROR = 4103
  6945. pkg syscall (darwin-arm64-cgo), const SO_ERROR ideal-int
  6946. pkg syscall (darwin-arm64-cgo), const SO_KEEPALIVE = 8
  6947. pkg syscall (darwin-arm64-cgo), const SO_LABEL = 4112
  6948. pkg syscall (darwin-arm64-cgo), const SO_LABEL ideal-int
  6949. pkg syscall (darwin-arm64-cgo), const SO_LINGER = 128
  6950. pkg syscall (darwin-arm64-cgo), const SO_LINGER_SEC = 4224
  6951. pkg syscall (darwin-arm64-cgo), const SO_LINGER_SEC ideal-int
  6952. pkg syscall (darwin-arm64-cgo), const SO_NKE = 4129
  6953. pkg syscall (darwin-arm64-cgo), const SO_NKE ideal-int
  6954. pkg syscall (darwin-arm64-cgo), const SO_NOADDRERR = 4131
  6955. pkg syscall (darwin-arm64-cgo), const SO_NOADDRERR ideal-int
  6956. pkg syscall (darwin-arm64-cgo), const SO_NOSIGPIPE = 4130
  6957. pkg syscall (darwin-arm64-cgo), const SO_NOSIGPIPE ideal-int
  6958. pkg syscall (darwin-arm64-cgo), const SO_NOTIFYCONFLICT = 4134
  6959. pkg syscall (darwin-arm64-cgo), const SO_NOTIFYCONFLICT ideal-int
  6960. pkg syscall (darwin-arm64-cgo), const SO_NP_EXTENSIONS = 4227
  6961. pkg syscall (darwin-arm64-cgo), const SO_NP_EXTENSIONS ideal-int
  6962. pkg syscall (darwin-arm64-cgo), const SO_NREAD = 4128
  6963. pkg syscall (darwin-arm64-cgo), const SO_NREAD ideal-int
  6964. pkg syscall (darwin-arm64-cgo), const SO_NUMRCVPKT = 4370
  6965. pkg syscall (darwin-arm64-cgo), const SO_NUMRCVPKT ideal-int
  6966. pkg syscall (darwin-arm64-cgo), const SO_NWRITE = 4132
  6967. pkg syscall (darwin-arm64-cgo), const SO_NWRITE ideal-int
  6968. pkg syscall (darwin-arm64-cgo), const SO_OOBINLINE = 256
  6969. pkg syscall (darwin-arm64-cgo), const SO_OOBINLINE ideal-int
  6970. pkg syscall (darwin-arm64-cgo), const SO_PEERLABEL = 4113
  6971. pkg syscall (darwin-arm64-cgo), const SO_PEERLABEL ideal-int
  6972. pkg syscall (darwin-arm64-cgo), const SO_RANDOMPORT = 4226
  6973. pkg syscall (darwin-arm64-cgo), const SO_RANDOMPORT ideal-int
  6974. pkg syscall (darwin-arm64-cgo), const SO_RCVBUF = 4098
  6975. pkg syscall (darwin-arm64-cgo), const SO_RCVLOWAT = 4100
  6976. pkg syscall (darwin-arm64-cgo), const SO_RCVLOWAT ideal-int
  6977. pkg syscall (darwin-arm64-cgo), const SO_RCVTIMEO = 4102
  6978. pkg syscall (darwin-arm64-cgo), const SO_RCVTIMEO ideal-int
  6979. pkg syscall (darwin-arm64-cgo), const SO_REUSEADDR = 4
  6980. pkg syscall (darwin-arm64-cgo), const SO_REUSEPORT = 512
  6981. pkg syscall (darwin-arm64-cgo), const SO_REUSEPORT ideal-int
  6982. pkg syscall (darwin-arm64-cgo), const SO_REUSESHAREUID = 4133
  6983. pkg syscall (darwin-arm64-cgo), const SO_REUSESHAREUID ideal-int
  6984. pkg syscall (darwin-arm64-cgo), const SO_SNDBUF = 4097
  6985. pkg syscall (darwin-arm64-cgo), const SO_SNDLOWAT = 4099
  6986. pkg syscall (darwin-arm64-cgo), const SO_SNDLOWAT ideal-int
  6987. pkg syscall (darwin-arm64-cgo), const SO_SNDTIMEO = 4101
  6988. pkg syscall (darwin-arm64-cgo), const SO_SNDTIMEO ideal-int
  6989. pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP = 1024
  6990. pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP ideal-int
  6991. pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP_MONOTONIC = 2048
  6992. pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP_MONOTONIC ideal-int
  6993. pkg syscall (darwin-arm64-cgo), const SO_TYPE = 4104
  6994. pkg syscall (darwin-arm64-cgo), const SO_TYPE ideal-int
  6995. pkg syscall (darwin-arm64-cgo), const SO_UPCALLCLOSEWAIT = 4135
  6996. pkg syscall (darwin-arm64-cgo), const SO_UPCALLCLOSEWAIT ideal-int
  6997. pkg syscall (darwin-arm64-cgo), const SO_USELOOPBACK = 64
  6998. pkg syscall (darwin-arm64-cgo), const SO_USELOOPBACK ideal-int
  6999. pkg syscall (darwin-arm64-cgo), const SO_WANTMORE = 16384
  7000. pkg syscall (darwin-arm64-cgo), const SO_WANTMORE ideal-int
  7001. pkg syscall (darwin-arm64-cgo), const SO_WANTOOBFLAG = 32768
  7002. pkg syscall (darwin-arm64-cgo), const SO_WANTOOBFLAG ideal-int
  7003. pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT = 30
  7004. pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT ideal-int
  7005. pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT_NOCANCEL = 404
  7006. pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT_NOCANCEL ideal-int
  7007. pkg syscall (darwin-arm64-cgo), const SYS_ACCESS = 33
  7008. pkg syscall (darwin-arm64-cgo), const SYS_ACCESS ideal-int
  7009. pkg syscall (darwin-arm64-cgo), const SYS_ACCESS_EXTENDED = 284
  7010. pkg syscall (darwin-arm64-cgo), const SYS_ACCESS_EXTENDED ideal-int
  7011. pkg syscall (darwin-arm64-cgo), const SYS_ACCT = 51
  7012. pkg syscall (darwin-arm64-cgo), const SYS_ACCT ideal-int
  7013. pkg syscall (darwin-arm64-cgo), const SYS_ADJTIME = 140
  7014. pkg syscall (darwin-arm64-cgo), const SYS_ADJTIME ideal-int
  7015. pkg syscall (darwin-arm64-cgo), const SYS_AIO_CANCEL = 316
  7016. pkg syscall (darwin-arm64-cgo), const SYS_AIO_CANCEL ideal-int
  7017. pkg syscall (darwin-arm64-cgo), const SYS_AIO_ERROR = 317
  7018. pkg syscall (darwin-arm64-cgo), const SYS_AIO_ERROR ideal-int
  7019. pkg syscall (darwin-arm64-cgo), const SYS_AIO_FSYNC = 313
  7020. pkg syscall (darwin-arm64-cgo), const SYS_AIO_FSYNC ideal-int
  7021. pkg syscall (darwin-arm64-cgo), const SYS_AIO_READ = 318
  7022. pkg syscall (darwin-arm64-cgo), const SYS_AIO_READ ideal-int
  7023. pkg syscall (darwin-arm64-cgo), const SYS_AIO_RETURN = 314
  7024. pkg syscall (darwin-arm64-cgo), const SYS_AIO_RETURN ideal-int
  7025. pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND = 315
  7026. pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND ideal-int
  7027. pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND_NOCANCEL = 421
  7028. pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND_NOCANCEL ideal-int
  7029. pkg syscall (darwin-arm64-cgo), const SYS_AIO_WRITE = 319
  7030. pkg syscall (darwin-arm64-cgo), const SYS_AIO_WRITE ideal-int
  7031. pkg syscall (darwin-arm64-cgo), const SYS_ATGETMSG = 207
  7032. pkg syscall (darwin-arm64-cgo), const SYS_ATGETMSG ideal-int
  7033. pkg syscall (darwin-arm64-cgo), const SYS_ATPGETREQ = 211
  7034. pkg syscall (darwin-arm64-cgo), const SYS_ATPGETREQ ideal-int
  7035. pkg syscall (darwin-arm64-cgo), const SYS_ATPGETRSP = 212
  7036. pkg syscall (darwin-arm64-cgo), const SYS_ATPGETRSP ideal-int
  7037. pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDREQ = 209
  7038. pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDREQ ideal-int
  7039. pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDRSP = 210
  7040. pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDRSP ideal-int
  7041. pkg syscall (darwin-arm64-cgo), const SYS_ATPUTMSG = 208
  7042. pkg syscall (darwin-arm64-cgo), const SYS_ATPUTMSG ideal-int
  7043. pkg syscall (darwin-arm64-cgo), const SYS_ATSOCKET = 206
  7044. pkg syscall (darwin-arm64-cgo), const SYS_ATSOCKET ideal-int
  7045. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT = 350
  7046. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT ideal-int
  7047. pkg syscall (darwin-arm64-cgo), const SYS_AUDITCTL = 359
  7048. pkg syscall (darwin-arm64-cgo), const SYS_AUDITCTL ideal-int
  7049. pkg syscall (darwin-arm64-cgo), const SYS_AUDITON = 351
  7050. pkg syscall (darwin-arm64-cgo), const SYS_AUDITON ideal-int
  7051. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_JOIN = 429
  7052. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_JOIN ideal-int
  7053. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_PORT = 432
  7054. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_PORT ideal-int
  7055. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_SELF = 428
  7056. pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_SELF ideal-int
  7057. pkg syscall (darwin-arm64-cgo), const SYS_BIND = 104
  7058. pkg syscall (darwin-arm64-cgo), const SYS_BIND ideal-int
  7059. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_CREATE = 360
  7060. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_CREATE ideal-int
  7061. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_REGISTER = 366
  7062. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_REGISTER ideal-int
  7063. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_TERMINATE = 361
  7064. pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_TERMINATE ideal-int
  7065. pkg syscall (darwin-arm64-cgo), const SYS_CHDIR = 12
  7066. pkg syscall (darwin-arm64-cgo), const SYS_CHDIR ideal-int
  7067. pkg syscall (darwin-arm64-cgo), const SYS_CHFLAGS = 34
  7068. pkg syscall (darwin-arm64-cgo), const SYS_CHFLAGS ideal-int
  7069. pkg syscall (darwin-arm64-cgo), const SYS_CHMOD = 15
  7070. pkg syscall (darwin-arm64-cgo), const SYS_CHMOD ideal-int
  7071. pkg syscall (darwin-arm64-cgo), const SYS_CHMOD_EXTENDED = 282
  7072. pkg syscall (darwin-arm64-cgo), const SYS_CHMOD_EXTENDED ideal-int
  7073. pkg syscall (darwin-arm64-cgo), const SYS_CHOWN = 16
  7074. pkg syscall (darwin-arm64-cgo), const SYS_CHOWN ideal-int
  7075. pkg syscall (darwin-arm64-cgo), const SYS_CHROOT = 61
  7076. pkg syscall (darwin-arm64-cgo), const SYS_CHROOT ideal-int
  7077. pkg syscall (darwin-arm64-cgo), const SYS_CHUD = 185
  7078. pkg syscall (darwin-arm64-cgo), const SYS_CHUD ideal-int
  7079. pkg syscall (darwin-arm64-cgo), const SYS_CLOSE = 6
  7080. pkg syscall (darwin-arm64-cgo), const SYS_CLOSE ideal-int
  7081. pkg syscall (darwin-arm64-cgo), const SYS_CLOSE_NOCANCEL = 399
  7082. pkg syscall (darwin-arm64-cgo), const SYS_CLOSE_NOCANCEL ideal-int
  7083. pkg syscall (darwin-arm64-cgo), const SYS_CONNECT = 98
  7084. pkg syscall (darwin-arm64-cgo), const SYS_CONNECT ideal-int
  7085. pkg syscall (darwin-arm64-cgo), const SYS_CONNECT_NOCANCEL = 409
  7086. pkg syscall (darwin-arm64-cgo), const SYS_CONNECT_NOCANCEL ideal-int
  7087. pkg syscall (darwin-arm64-cgo), const SYS_COPYFILE = 227
  7088. pkg syscall (darwin-arm64-cgo), const SYS_COPYFILE ideal-int
  7089. pkg syscall (darwin-arm64-cgo), const SYS_CSOPS = 169
  7090. pkg syscall (darwin-arm64-cgo), const SYS_CSOPS ideal-int
  7091. pkg syscall (darwin-arm64-cgo), const SYS_CSOPS_AUDITTOKEN = 170
  7092. pkg syscall (darwin-arm64-cgo), const SYS_CSOPS_AUDITTOKEN ideal-int
  7093. pkg syscall (darwin-arm64-cgo), const SYS_DELETE = 226
  7094. pkg syscall (darwin-arm64-cgo), const SYS_DELETE ideal-int
  7095. pkg syscall (darwin-arm64-cgo), const SYS_DUP = 41
  7096. pkg syscall (darwin-arm64-cgo), const SYS_DUP ideal-int
  7097. pkg syscall (darwin-arm64-cgo), const SYS_DUP2 = 90
  7098. pkg syscall (darwin-arm64-cgo), const SYS_DUP2 ideal-int
  7099. pkg syscall (darwin-arm64-cgo), const SYS_EXCHANGEDATA = 223
  7100. pkg syscall (darwin-arm64-cgo), const SYS_EXCHANGEDATA ideal-int
  7101. pkg syscall (darwin-arm64-cgo), const SYS_EXECVE = 59
  7102. pkg syscall (darwin-arm64-cgo), const SYS_EXECVE ideal-int
  7103. pkg syscall (darwin-arm64-cgo), const SYS_EXIT = 1
  7104. pkg syscall (darwin-arm64-cgo), const SYS_EXIT ideal-int
  7105. pkg syscall (darwin-arm64-cgo), const SYS_FCHDIR = 13
  7106. pkg syscall (darwin-arm64-cgo), const SYS_FCHDIR ideal-int
  7107. pkg syscall (darwin-arm64-cgo), const SYS_FCHFLAGS = 35
  7108. pkg syscall (darwin-arm64-cgo), const SYS_FCHFLAGS ideal-int
  7109. pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD = 124
  7110. pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD ideal-int
  7111. pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD_EXTENDED = 283
  7112. pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD_EXTENDED ideal-int
  7113. pkg syscall (darwin-arm64-cgo), const SYS_FCHOWN = 123
  7114. pkg syscall (darwin-arm64-cgo), const SYS_FCHOWN ideal-int
  7115. pkg syscall (darwin-arm64-cgo), const SYS_FCNTL = 92
  7116. pkg syscall (darwin-arm64-cgo), const SYS_FCNTL ideal-int
  7117. pkg syscall (darwin-arm64-cgo), const SYS_FCNTL_NOCANCEL = 406
  7118. pkg syscall (darwin-arm64-cgo), const SYS_FCNTL_NOCANCEL ideal-int
  7119. pkg syscall (darwin-arm64-cgo), const SYS_FDATASYNC = 187
  7120. pkg syscall (darwin-arm64-cgo), const SYS_FDATASYNC ideal-int
  7121. pkg syscall (darwin-arm64-cgo), const SYS_FFSCTL = 245
  7122. pkg syscall (darwin-arm64-cgo), const SYS_FFSCTL ideal-int
  7123. pkg syscall (darwin-arm64-cgo), const SYS_FGETATTRLIST = 228
  7124. pkg syscall (darwin-arm64-cgo), const SYS_FGETATTRLIST ideal-int
  7125. pkg syscall (darwin-arm64-cgo), const SYS_FGETXATTR = 235
  7126. pkg syscall (darwin-arm64-cgo), const SYS_FGETXATTR ideal-int
  7127. pkg syscall (darwin-arm64-cgo), const SYS_FHOPEN = 248
  7128. pkg syscall (darwin-arm64-cgo), const SYS_FHOPEN ideal-int
  7129. pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEFD = 431
  7130. pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEFD ideal-int
  7131. pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEPORT = 430
  7132. pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEPORT ideal-int
  7133. pkg syscall (darwin-arm64-cgo), const SYS_FLISTXATTR = 241
  7134. pkg syscall (darwin-arm64-cgo), const SYS_FLISTXATTR ideal-int
  7135. pkg syscall (darwin-arm64-cgo), const SYS_FLOCK = 131
  7136. pkg syscall (darwin-arm64-cgo), const SYS_FLOCK ideal-int
  7137. pkg syscall (darwin-arm64-cgo), const SYS_FORK = 2
  7138. pkg syscall (darwin-arm64-cgo), const SYS_FORK ideal-int
  7139. pkg syscall (darwin-arm64-cgo), const SYS_FPATHCONF = 192
  7140. pkg syscall (darwin-arm64-cgo), const SYS_FPATHCONF ideal-int
  7141. pkg syscall (darwin-arm64-cgo), const SYS_FREMOVEXATTR = 239
  7142. pkg syscall (darwin-arm64-cgo), const SYS_FREMOVEXATTR ideal-int
  7143. pkg syscall (darwin-arm64-cgo), const SYS_FSCTL = 242
  7144. pkg syscall (darwin-arm64-cgo), const SYS_FSCTL ideal-int
  7145. pkg syscall (darwin-arm64-cgo), const SYS_FSETATTRLIST = 229
  7146. pkg syscall (darwin-arm64-cgo), const SYS_FSETATTRLIST ideal-int
  7147. pkg syscall (darwin-arm64-cgo), const SYS_FSETXATTR = 237
  7148. pkg syscall (darwin-arm64-cgo), const SYS_FSETXATTR ideal-int
  7149. pkg syscall (darwin-arm64-cgo), const SYS_FSGETPATH = 427
  7150. pkg syscall (darwin-arm64-cgo), const SYS_FSGETPATH ideal-int
  7151. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT = 189
  7152. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT ideal-int
  7153. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64 = 339
  7154. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64 ideal-int
  7155. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64_EXTENDED = 343
  7156. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64_EXTENDED ideal-int
  7157. pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS = 158
  7158. pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS ideal-int
  7159. pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS64 = 346
  7160. pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS64 ideal-int
  7161. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT_EXTENDED = 281
  7162. pkg syscall (darwin-arm64-cgo), const SYS_FSTAT_EXTENDED ideal-int
  7163. pkg syscall (darwin-arm64-cgo), const SYS_FSYNC = 95
  7164. pkg syscall (darwin-arm64-cgo), const SYS_FSYNC ideal-int
  7165. pkg syscall (darwin-arm64-cgo), const SYS_FSYNC_NOCANCEL = 408
  7166. pkg syscall (darwin-arm64-cgo), const SYS_FSYNC_NOCANCEL ideal-int
  7167. pkg syscall (darwin-arm64-cgo), const SYS_FTRUNCATE = 201
  7168. pkg syscall (darwin-arm64-cgo), const SYS_FTRUNCATE ideal-int
  7169. pkg syscall (darwin-arm64-cgo), const SYS_FUTIMES = 139
  7170. pkg syscall (darwin-arm64-cgo), const SYS_FUTIMES ideal-int
  7171. pkg syscall (darwin-arm64-cgo), const SYS_GETATTRLIST = 220
  7172. pkg syscall (darwin-arm64-cgo), const SYS_GETATTRLIST ideal-int
  7173. pkg syscall (darwin-arm64-cgo), const SYS_GETAUDIT_ADDR = 357
  7174. pkg syscall (darwin-arm64-cgo), const SYS_GETAUDIT_ADDR ideal-int
  7175. pkg syscall (darwin-arm64-cgo), const SYS_GETAUID = 353
  7176. pkg syscall (darwin-arm64-cgo), const SYS_GETAUID ideal-int
  7177. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES = 196
  7178. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES ideal-int
  7179. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES64 = 344
  7180. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES64 ideal-int
  7181. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIESATTR = 222
  7182. pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIESATTR ideal-int
  7183. pkg syscall (darwin-arm64-cgo), const SYS_GETDTABLESIZE = 89
  7184. pkg syscall (darwin-arm64-cgo), const SYS_GETDTABLESIZE ideal-int
  7185. pkg syscall (darwin-arm64-cgo), const SYS_GETEGID = 43
  7186. pkg syscall (darwin-arm64-cgo), const SYS_GETEGID ideal-int
  7187. pkg syscall (darwin-arm64-cgo), const SYS_GETEUID = 25
  7188. pkg syscall (darwin-arm64-cgo), const SYS_GETEUID ideal-int
  7189. pkg syscall (darwin-arm64-cgo), const SYS_GETFH = 161
  7190. pkg syscall (darwin-arm64-cgo), const SYS_GETFH ideal-int
  7191. pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT = 18
  7192. pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT ideal-int
  7193. pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT64 = 347
  7194. pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT64 ideal-int
  7195. pkg syscall (darwin-arm64-cgo), const SYS_GETGID = 47
  7196. pkg syscall (darwin-arm64-cgo), const SYS_GETGID ideal-int
  7197. pkg syscall (darwin-arm64-cgo), const SYS_GETGROUPS = 79
  7198. pkg syscall (darwin-arm64-cgo), const SYS_GETGROUPS ideal-int
  7199. pkg syscall (darwin-arm64-cgo), const SYS_GETHOSTUUID = 142
  7200. pkg syscall (darwin-arm64-cgo), const SYS_GETHOSTUUID ideal-int
  7201. pkg syscall (darwin-arm64-cgo), const SYS_GETITIMER = 86
  7202. pkg syscall (darwin-arm64-cgo), const SYS_GETITIMER ideal-int
  7203. pkg syscall (darwin-arm64-cgo), const SYS_GETLCID = 395
  7204. pkg syscall (darwin-arm64-cgo), const SYS_GETLCID ideal-int
  7205. pkg syscall (darwin-arm64-cgo), const SYS_GETLOGIN = 49
  7206. pkg syscall (darwin-arm64-cgo), const SYS_GETLOGIN ideal-int
  7207. pkg syscall (darwin-arm64-cgo), const SYS_GETPEERNAME = 31
  7208. pkg syscall (darwin-arm64-cgo), const SYS_GETPEERNAME ideal-int
  7209. pkg syscall (darwin-arm64-cgo), const SYS_GETPGID = 151
  7210. pkg syscall (darwin-arm64-cgo), const SYS_GETPGID ideal-int
  7211. pkg syscall (darwin-arm64-cgo), const SYS_GETPGRP = 81
  7212. pkg syscall (darwin-arm64-cgo), const SYS_GETPGRP ideal-int
  7213. pkg syscall (darwin-arm64-cgo), const SYS_GETPID = 20
  7214. pkg syscall (darwin-arm64-cgo), const SYS_GETPID ideal-int
  7215. pkg syscall (darwin-arm64-cgo), const SYS_GETPPID = 39
  7216. pkg syscall (darwin-arm64-cgo), const SYS_GETPPID ideal-int
  7217. pkg syscall (darwin-arm64-cgo), const SYS_GETPRIORITY = 100
  7218. pkg syscall (darwin-arm64-cgo), const SYS_GETPRIORITY ideal-int
  7219. pkg syscall (darwin-arm64-cgo), const SYS_GETRLIMIT = 194
  7220. pkg syscall (darwin-arm64-cgo), const SYS_GETRLIMIT ideal-int
  7221. pkg syscall (darwin-arm64-cgo), const SYS_GETRUSAGE = 117
  7222. pkg syscall (darwin-arm64-cgo), const SYS_GETRUSAGE ideal-int
  7223. pkg syscall (darwin-arm64-cgo), const SYS_GETSGROUPS = 288
  7224. pkg syscall (darwin-arm64-cgo), const SYS_GETSGROUPS ideal-int
  7225. pkg syscall (darwin-arm64-cgo), const SYS_GETSID = 310
  7226. pkg syscall (darwin-arm64-cgo), const SYS_GETSID ideal-int
  7227. pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKNAME = 32
  7228. pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKNAME ideal-int
  7229. pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKOPT = 118
  7230. pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKOPT ideal-int
  7231. pkg syscall (darwin-arm64-cgo), const SYS_GETTID = 286
  7232. pkg syscall (darwin-arm64-cgo), const SYS_GETTID ideal-int
  7233. pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY = 116
  7234. pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int
  7235. pkg syscall (darwin-arm64-cgo), const SYS_GETUID = 24
  7236. pkg syscall (darwin-arm64-cgo), const SYS_GETUID ideal-int
  7237. pkg syscall (darwin-arm64-cgo), const SYS_GETWGROUPS = 290
  7238. pkg syscall (darwin-arm64-cgo), const SYS_GETWGROUPS ideal-int
  7239. pkg syscall (darwin-arm64-cgo), const SYS_GETXATTR = 234
  7240. pkg syscall (darwin-arm64-cgo), const SYS_GETXATTR ideal-int
  7241. pkg syscall (darwin-arm64-cgo), const SYS_IDENTITYSVC = 293
  7242. pkg syscall (darwin-arm64-cgo), const SYS_IDENTITYSVC ideal-int
  7243. pkg syscall (darwin-arm64-cgo), const SYS_INITGROUPS = 243
  7244. pkg syscall (darwin-arm64-cgo), const SYS_INITGROUPS ideal-int
  7245. pkg syscall (darwin-arm64-cgo), const SYS_IOCTL = 54
  7246. pkg syscall (darwin-arm64-cgo), const SYS_IOCTL ideal-int
  7247. pkg syscall (darwin-arm64-cgo), const SYS_IOPOLICYSYS = 322
  7248. pkg syscall (darwin-arm64-cgo), const SYS_IOPOLICYSYS ideal-int
  7249. pkg syscall (darwin-arm64-cgo), const SYS_ISSETUGID = 327
  7250. pkg syscall (darwin-arm64-cgo), const SYS_ISSETUGID ideal-int
  7251. pkg syscall (darwin-arm64-cgo), const SYS_KAS_INFO = 439
  7252. pkg syscall (darwin-arm64-cgo), const SYS_KAS_INFO ideal-int
  7253. pkg syscall (darwin-arm64-cgo), const SYS_KDEBUG_TRACE = 180
  7254. pkg syscall (darwin-arm64-cgo), const SYS_KDEBUG_TRACE ideal-int
  7255. pkg syscall (darwin-arm64-cgo), const SYS_KEVENT = 363
  7256. pkg syscall (darwin-arm64-cgo), const SYS_KEVENT ideal-int
  7257. pkg syscall (darwin-arm64-cgo), const SYS_KEVENT64 = 369
  7258. pkg syscall (darwin-arm64-cgo), const SYS_KEVENT64 ideal-int
  7259. pkg syscall (darwin-arm64-cgo), const SYS_KILL = 37
  7260. pkg syscall (darwin-arm64-cgo), const SYS_KILL ideal-int
  7261. pkg syscall (darwin-arm64-cgo), const SYS_KQUEUE = 362
  7262. pkg syscall (darwin-arm64-cgo), const SYS_KQUEUE ideal-int
  7263. pkg syscall (darwin-arm64-cgo), const SYS_LCHOWN = 364
  7264. pkg syscall (darwin-arm64-cgo), const SYS_LCHOWN ideal-int
  7265. pkg syscall (darwin-arm64-cgo), const SYS_LEDGER = 373
  7266. pkg syscall (darwin-arm64-cgo), const SYS_LEDGER ideal-int
  7267. pkg syscall (darwin-arm64-cgo), const SYS_LINK = 9
  7268. pkg syscall (darwin-arm64-cgo), const SYS_LINK ideal-int
  7269. pkg syscall (darwin-arm64-cgo), const SYS_LIO_LISTIO = 320
  7270. pkg syscall (darwin-arm64-cgo), const SYS_LIO_LISTIO ideal-int
  7271. pkg syscall (darwin-arm64-cgo), const SYS_LISTEN = 106
  7272. pkg syscall (darwin-arm64-cgo), const SYS_LISTEN ideal-int
  7273. pkg syscall (darwin-arm64-cgo), const SYS_LISTXATTR = 240
  7274. pkg syscall (darwin-arm64-cgo), const SYS_LISTXATTR ideal-int
  7275. pkg syscall (darwin-arm64-cgo), const SYS_LSEEK = 199
  7276. pkg syscall (darwin-arm64-cgo), const SYS_LSEEK ideal-int
  7277. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT = 190
  7278. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT ideal-int
  7279. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64 = 340
  7280. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64 ideal-int
  7281. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64_EXTENDED = 342
  7282. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64_EXTENDED ideal-int
  7283. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT_EXTENDED = 280
  7284. pkg syscall (darwin-arm64-cgo), const SYS_LSTAT_EXTENDED ideal-int
  7285. pkg syscall (darwin-arm64-cgo), const SYS_MADVISE = 75
  7286. pkg syscall (darwin-arm64-cgo), const SYS_MADVISE ideal-int
  7287. pkg syscall (darwin-arm64-cgo), const SYS_MAXSYSCALL = 440
  7288. pkg syscall (darwin-arm64-cgo), const SYS_MAXSYSCALL ideal-int
  7289. pkg syscall (darwin-arm64-cgo), const SYS_MINCORE = 78
  7290. pkg syscall (darwin-arm64-cgo), const SYS_MINCORE ideal-int
  7291. pkg syscall (darwin-arm64-cgo), const SYS_MINHERIT = 250
  7292. pkg syscall (darwin-arm64-cgo), const SYS_MINHERIT ideal-int
  7293. pkg syscall (darwin-arm64-cgo), const SYS_MKDIR = 136
  7294. pkg syscall (darwin-arm64-cgo), const SYS_MKDIR ideal-int
  7295. pkg syscall (darwin-arm64-cgo), const SYS_MKDIR_EXTENDED = 292
  7296. pkg syscall (darwin-arm64-cgo), const SYS_MKDIR_EXTENDED ideal-int
  7297. pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO = 132
  7298. pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO ideal-int
  7299. pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO_EXTENDED = 291
  7300. pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO_EXTENDED ideal-int
  7301. pkg syscall (darwin-arm64-cgo), const SYS_MKNOD = 14
  7302. pkg syscall (darwin-arm64-cgo), const SYS_MKNOD ideal-int
  7303. pkg syscall (darwin-arm64-cgo), const SYS_MLOCK = 203
  7304. pkg syscall (darwin-arm64-cgo), const SYS_MLOCK ideal-int
  7305. pkg syscall (darwin-arm64-cgo), const SYS_MLOCKALL = 324
  7306. pkg syscall (darwin-arm64-cgo), const SYS_MLOCKALL ideal-int
  7307. pkg syscall (darwin-arm64-cgo), const SYS_MMAP = 197
  7308. pkg syscall (darwin-arm64-cgo), const SYS_MMAP ideal-int
  7309. pkg syscall (darwin-arm64-cgo), const SYS_MODWATCH = 233
  7310. pkg syscall (darwin-arm64-cgo), const SYS_MODWATCH ideal-int
  7311. pkg syscall (darwin-arm64-cgo), const SYS_MOUNT = 167
  7312. pkg syscall (darwin-arm64-cgo), const SYS_MOUNT ideal-int
  7313. pkg syscall (darwin-arm64-cgo), const SYS_MPROTECT = 74
  7314. pkg syscall (darwin-arm64-cgo), const SYS_MPROTECT ideal-int
  7315. pkg syscall (darwin-arm64-cgo), const SYS_MSGCTL = 258
  7316. pkg syscall (darwin-arm64-cgo), const SYS_MSGCTL ideal-int
  7317. pkg syscall (darwin-arm64-cgo), const SYS_MSGGET = 259
  7318. pkg syscall (darwin-arm64-cgo), const SYS_MSGGET ideal-int
  7319. pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV = 261
  7320. pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV ideal-int
  7321. pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV_NOCANCEL = 419
  7322. pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV_NOCANCEL ideal-int
  7323. pkg syscall (darwin-arm64-cgo), const SYS_MSGSND = 260
  7324. pkg syscall (darwin-arm64-cgo), const SYS_MSGSND ideal-int
  7325. pkg syscall (darwin-arm64-cgo), const SYS_MSGSND_NOCANCEL = 418
  7326. pkg syscall (darwin-arm64-cgo), const SYS_MSGSND_NOCANCEL ideal-int
  7327. pkg syscall (darwin-arm64-cgo), const SYS_MSGSYS = 252
  7328. pkg syscall (darwin-arm64-cgo), const SYS_MSGSYS ideal-int
  7329. pkg syscall (darwin-arm64-cgo), const SYS_MSYNC = 65
  7330. pkg syscall (darwin-arm64-cgo), const SYS_MSYNC ideal-int
  7331. pkg syscall (darwin-arm64-cgo), const SYS_MSYNC_NOCANCEL = 405
  7332. pkg syscall (darwin-arm64-cgo), const SYS_MSYNC_NOCANCEL ideal-int
  7333. pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCK = 204
  7334. pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCK ideal-int
  7335. pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCKALL = 325
  7336. pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCKALL ideal-int
  7337. pkg syscall (darwin-arm64-cgo), const SYS_MUNMAP = 73
  7338. pkg syscall (darwin-arm64-cgo), const SYS_MUNMAP ideal-int
  7339. pkg syscall (darwin-arm64-cgo), const SYS_NFSCLNT = 247
  7340. pkg syscall (darwin-arm64-cgo), const SYS_NFSCLNT ideal-int
  7341. pkg syscall (darwin-arm64-cgo), const SYS_NFSSVC = 155
  7342. pkg syscall (darwin-arm64-cgo), const SYS_NFSSVC ideal-int
  7343. pkg syscall (darwin-arm64-cgo), const SYS_OPEN = 5
  7344. pkg syscall (darwin-arm64-cgo), const SYS_OPEN ideal-int
  7345. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_DPROTECTED_NP = 216
  7346. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_DPROTECTED_NP ideal-int
  7347. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_EXTENDED = 277
  7348. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_EXTENDED ideal-int
  7349. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_NOCANCEL = 398
  7350. pkg syscall (darwin-arm64-cgo), const SYS_OPEN_NOCANCEL ideal-int
  7351. pkg syscall (darwin-arm64-cgo), const SYS_PATHCONF = 191
  7352. pkg syscall (darwin-arm64-cgo), const SYS_PATHCONF ideal-int
  7353. pkg syscall (darwin-arm64-cgo), const SYS_PID_HIBERNATE = 435
  7354. pkg syscall (darwin-arm64-cgo), const SYS_PID_HIBERNATE ideal-int
  7355. pkg syscall (darwin-arm64-cgo), const SYS_PID_RESUME = 434
  7356. pkg syscall (darwin-arm64-cgo), const SYS_PID_RESUME ideal-int
  7357. pkg syscall (darwin-arm64-cgo), const SYS_PID_SHUTDOWN_SOCKETS = 436
  7358. pkg syscall (darwin-arm64-cgo), const SYS_PID_SHUTDOWN_SOCKETS ideal-int
  7359. pkg syscall (darwin-arm64-cgo), const SYS_PID_SUSPEND = 433
  7360. pkg syscall (darwin-arm64-cgo), const SYS_PID_SUSPEND ideal-int
  7361. pkg syscall (darwin-arm64-cgo), const SYS_PIPE = 42
  7362. pkg syscall (darwin-arm64-cgo), const SYS_PIPE ideal-int
  7363. pkg syscall (darwin-arm64-cgo), const SYS_POLL = 230
  7364. pkg syscall (darwin-arm64-cgo), const SYS_POLL ideal-int
  7365. pkg syscall (darwin-arm64-cgo), const SYS_POLL_NOCANCEL = 417
  7366. pkg syscall (darwin-arm64-cgo), const SYS_POLL_NOCANCEL ideal-int
  7367. pkg syscall (darwin-arm64-cgo), const SYS_POSIX_SPAWN = 244
  7368. pkg syscall (darwin-arm64-cgo), const SYS_POSIX_SPAWN ideal-int
  7369. pkg syscall (darwin-arm64-cgo), const SYS_PREAD = 153
  7370. pkg syscall (darwin-arm64-cgo), const SYS_PREAD ideal-int
  7371. pkg syscall (darwin-arm64-cgo), const SYS_PREAD_NOCANCEL = 414
  7372. pkg syscall (darwin-arm64-cgo), const SYS_PREAD_NOCANCEL ideal-int
  7373. pkg syscall (darwin-arm64-cgo), const SYS_PROCESS_POLICY = 323
  7374. pkg syscall (darwin-arm64-cgo), const SYS_PROCESS_POLICY ideal-int
  7375. pkg syscall (darwin-arm64-cgo), const SYS_PROC_INFO = 336
  7376. pkg syscall (darwin-arm64-cgo), const SYS_PROC_INFO ideal-int
  7377. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVBROAD = 303
  7378. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVBROAD ideal-int
  7379. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVCLRPREPOST = 312
  7380. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVCLRPREPOST ideal-int
  7381. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVSIGNAL = 304
  7382. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVSIGNAL ideal-int
  7383. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVWAIT = 305
  7384. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVWAIT ideal-int
  7385. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXDROP = 302
  7386. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXDROP ideal-int
  7387. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXWAIT = 301
  7388. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXWAIT ideal-int
  7389. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_DOWNGRADE = 299
  7390. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_DOWNGRADE ideal-int
  7391. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK = 297
  7392. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int
  7393. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_RDLOCK = 306
  7394. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_RDLOCK ideal-int
  7395. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK = 308
  7396. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK ideal-int
  7397. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK2 = 309
  7398. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK2 ideal-int
  7399. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UPGRADE = 300
  7400. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UPGRADE ideal-int
  7401. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_WRLOCK = 307
  7402. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_WRLOCK ideal-int
  7403. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK = 298
  7404. pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int
  7405. pkg syscall (darwin-arm64-cgo), const SYS_PTRACE = 26
  7406. pkg syscall (darwin-arm64-cgo), const SYS_PTRACE ideal-int
  7407. pkg syscall (darwin-arm64-cgo), const SYS_PWRITE = 154
  7408. pkg syscall (darwin-arm64-cgo), const SYS_PWRITE ideal-int
  7409. pkg syscall (darwin-arm64-cgo), const SYS_PWRITE_NOCANCEL = 415
  7410. pkg syscall (darwin-arm64-cgo), const SYS_PWRITE_NOCANCEL ideal-int
  7411. pkg syscall (darwin-arm64-cgo), const SYS_QUOTACTL = 165
  7412. pkg syscall (darwin-arm64-cgo), const SYS_QUOTACTL ideal-int
  7413. pkg syscall (darwin-arm64-cgo), const SYS_READ = 3
  7414. pkg syscall (darwin-arm64-cgo), const SYS_READ ideal-int
  7415. pkg syscall (darwin-arm64-cgo), const SYS_READLINK = 58
  7416. pkg syscall (darwin-arm64-cgo), const SYS_READLINK ideal-int
  7417. pkg syscall (darwin-arm64-cgo), const SYS_READV = 120
  7418. pkg syscall (darwin-arm64-cgo), const SYS_READV ideal-int
  7419. pkg syscall (darwin-arm64-cgo), const SYS_READV_NOCANCEL = 411
  7420. pkg syscall (darwin-arm64-cgo), const SYS_READV_NOCANCEL ideal-int
  7421. pkg syscall (darwin-arm64-cgo), const SYS_READ_NOCANCEL = 396
  7422. pkg syscall (darwin-arm64-cgo), const SYS_READ_NOCANCEL ideal-int
  7423. pkg syscall (darwin-arm64-cgo), const SYS_REBOOT = 55
  7424. pkg syscall (darwin-arm64-cgo), const SYS_REBOOT ideal-int
  7425. pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM = 29
  7426. pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM ideal-int
  7427. pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM_NOCANCEL = 403
  7428. pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM_NOCANCEL ideal-int
  7429. pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG = 27
  7430. pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG ideal-int
  7431. pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG_NOCANCEL = 401
  7432. pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG_NOCANCEL ideal-int
  7433. pkg syscall (darwin-arm64-cgo), const SYS_REMOVEXATTR = 238
  7434. pkg syscall (darwin-arm64-cgo), const SYS_REMOVEXATTR ideal-int
  7435. pkg syscall (darwin-arm64-cgo), const SYS_RENAME = 128
  7436. pkg syscall (darwin-arm64-cgo), const SYS_RENAME ideal-int
  7437. pkg syscall (darwin-arm64-cgo), const SYS_REVOKE = 56
  7438. pkg syscall (darwin-arm64-cgo), const SYS_REVOKE ideal-int
  7439. pkg syscall (darwin-arm64-cgo), const SYS_RMDIR = 137
  7440. pkg syscall (darwin-arm64-cgo), const SYS_RMDIR ideal-int
  7441. pkg syscall (darwin-arm64-cgo), const SYS_SEARCHFS = 225
  7442. pkg syscall (darwin-arm64-cgo), const SYS_SEARCHFS ideal-int
  7443. pkg syscall (darwin-arm64-cgo), const SYS_SELECT = 93
  7444. pkg syscall (darwin-arm64-cgo), const SYS_SELECT ideal-int
  7445. pkg syscall (darwin-arm64-cgo), const SYS_SELECT_NOCANCEL = 407
  7446. pkg syscall (darwin-arm64-cgo), const SYS_SELECT_NOCANCEL ideal-int
  7447. pkg syscall (darwin-arm64-cgo), const SYS_SEMCTL = 254
  7448. pkg syscall (darwin-arm64-cgo), const SYS_SEMCTL ideal-int
  7449. pkg syscall (darwin-arm64-cgo), const SYS_SEMGET = 255
  7450. pkg syscall (darwin-arm64-cgo), const SYS_SEMGET ideal-int
  7451. pkg syscall (darwin-arm64-cgo), const SYS_SEMOP = 256
  7452. pkg syscall (darwin-arm64-cgo), const SYS_SEMOP ideal-int
  7453. pkg syscall (darwin-arm64-cgo), const SYS_SEMSYS = 251
  7454. pkg syscall (darwin-arm64-cgo), const SYS_SEMSYS ideal-int
  7455. pkg syscall (darwin-arm64-cgo), const SYS_SEM_CLOSE = 269
  7456. pkg syscall (darwin-arm64-cgo), const SYS_SEM_CLOSE ideal-int
  7457. pkg syscall (darwin-arm64-cgo), const SYS_SEM_DESTROY = 276
  7458. pkg syscall (darwin-arm64-cgo), const SYS_SEM_DESTROY ideal-int
  7459. pkg syscall (darwin-arm64-cgo), const SYS_SEM_GETVALUE = 274
  7460. pkg syscall (darwin-arm64-cgo), const SYS_SEM_GETVALUE ideal-int
  7461. pkg syscall (darwin-arm64-cgo), const SYS_SEM_INIT = 275
  7462. pkg syscall (darwin-arm64-cgo), const SYS_SEM_INIT ideal-int
  7463. pkg syscall (darwin-arm64-cgo), const SYS_SEM_OPEN = 268
  7464. pkg syscall (darwin-arm64-cgo), const SYS_SEM_OPEN ideal-int
  7465. pkg syscall (darwin-arm64-cgo), const SYS_SEM_POST = 273
  7466. pkg syscall (darwin-arm64-cgo), const SYS_SEM_POST ideal-int
  7467. pkg syscall (darwin-arm64-cgo), const SYS_SEM_TRYWAIT = 272
  7468. pkg syscall (darwin-arm64-cgo), const SYS_SEM_TRYWAIT ideal-int
  7469. pkg syscall (darwin-arm64-cgo), const SYS_SEM_UNLINK = 270
  7470. pkg syscall (darwin-arm64-cgo), const SYS_SEM_UNLINK ideal-int
  7471. pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT = 271
  7472. pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT ideal-int
  7473. pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT_NOCANCEL = 420
  7474. pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT_NOCANCEL ideal-int
  7475. pkg syscall (darwin-arm64-cgo), const SYS_SENDFILE = 337
  7476. pkg syscall (darwin-arm64-cgo), const SYS_SENDFILE ideal-int
  7477. pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG = 28
  7478. pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG ideal-int
  7479. pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG_NOCANCEL = 402
  7480. pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG_NOCANCEL ideal-int
  7481. pkg syscall (darwin-arm64-cgo), const SYS_SENDTO = 133
  7482. pkg syscall (darwin-arm64-cgo), const SYS_SENDTO ideal-int
  7483. pkg syscall (darwin-arm64-cgo), const SYS_SENDTO_NOCANCEL = 413
  7484. pkg syscall (darwin-arm64-cgo), const SYS_SENDTO_NOCANCEL ideal-int
  7485. pkg syscall (darwin-arm64-cgo), const SYS_SETATTRLIST = 221
  7486. pkg syscall (darwin-arm64-cgo), const SYS_SETATTRLIST ideal-int
  7487. pkg syscall (darwin-arm64-cgo), const SYS_SETAUDIT_ADDR = 358
  7488. pkg syscall (darwin-arm64-cgo), const SYS_SETAUDIT_ADDR ideal-int
  7489. pkg syscall (darwin-arm64-cgo), const SYS_SETAUID = 354
  7490. pkg syscall (darwin-arm64-cgo), const SYS_SETAUID ideal-int
  7491. pkg syscall (darwin-arm64-cgo), const SYS_SETEGID = 182
  7492. pkg syscall (darwin-arm64-cgo), const SYS_SETEGID ideal-int
  7493. pkg syscall (darwin-arm64-cgo), const SYS_SETEUID = 183
  7494. pkg syscall (darwin-arm64-cgo), const SYS_SETEUID ideal-int
  7495. pkg syscall (darwin-arm64-cgo), const SYS_SETGID = 181
  7496. pkg syscall (darwin-arm64-cgo), const SYS_SETGID ideal-int
  7497. pkg syscall (darwin-arm64-cgo), const SYS_SETGROUPS = 80
  7498. pkg syscall (darwin-arm64-cgo), const SYS_SETGROUPS ideal-int
  7499. pkg syscall (darwin-arm64-cgo), const SYS_SETITIMER = 83
  7500. pkg syscall (darwin-arm64-cgo), const SYS_SETITIMER ideal-int
  7501. pkg syscall (darwin-arm64-cgo), const SYS_SETLCID = 394
  7502. pkg syscall (darwin-arm64-cgo), const SYS_SETLCID ideal-int
  7503. pkg syscall (darwin-arm64-cgo), const SYS_SETLOGIN = 50
  7504. pkg syscall (darwin-arm64-cgo), const SYS_SETLOGIN ideal-int
  7505. pkg syscall (darwin-arm64-cgo), const SYS_SETPGID = 82
  7506. pkg syscall (darwin-arm64-cgo), const SYS_SETPGID ideal-int
  7507. pkg syscall (darwin-arm64-cgo), const SYS_SETPRIORITY = 96
  7508. pkg syscall (darwin-arm64-cgo), const SYS_SETPRIORITY ideal-int
  7509. pkg syscall (darwin-arm64-cgo), const SYS_SETPRIVEXEC = 152
  7510. pkg syscall (darwin-arm64-cgo), const SYS_SETPRIVEXEC ideal-int
  7511. pkg syscall (darwin-arm64-cgo), const SYS_SETREGID = 127
  7512. pkg syscall (darwin-arm64-cgo), const SYS_SETREGID ideal-int
  7513. pkg syscall (darwin-arm64-cgo), const SYS_SETREUID = 126
  7514. pkg syscall (darwin-arm64-cgo), const SYS_SETREUID ideal-int
  7515. pkg syscall (darwin-arm64-cgo), const SYS_SETRLIMIT = 195
  7516. pkg syscall (darwin-arm64-cgo), const SYS_SETRLIMIT ideal-int
  7517. pkg syscall (darwin-arm64-cgo), const SYS_SETSGROUPS = 287
  7518. pkg syscall (darwin-arm64-cgo), const SYS_SETSGROUPS ideal-int
  7519. pkg syscall (darwin-arm64-cgo), const SYS_SETSID = 147
  7520. pkg syscall (darwin-arm64-cgo), const SYS_SETSID ideal-int
  7521. pkg syscall (darwin-arm64-cgo), const SYS_SETSOCKOPT = 105
  7522. pkg syscall (darwin-arm64-cgo), const SYS_SETSOCKOPT ideal-int
  7523. pkg syscall (darwin-arm64-cgo), const SYS_SETTID = 285
  7524. pkg syscall (darwin-arm64-cgo), const SYS_SETTID ideal-int
  7525. pkg syscall (darwin-arm64-cgo), const SYS_SETTID_WITH_PID = 311
  7526. pkg syscall (darwin-arm64-cgo), const SYS_SETTID_WITH_PID ideal-int
  7527. pkg syscall (darwin-arm64-cgo), const SYS_SETTIMEOFDAY = 122
  7528. pkg syscall (darwin-arm64-cgo), const SYS_SETTIMEOFDAY ideal-int
  7529. pkg syscall (darwin-arm64-cgo), const SYS_SETUID = 23
  7530. pkg syscall (darwin-arm64-cgo), const SYS_SETUID ideal-int
  7531. pkg syscall (darwin-arm64-cgo), const SYS_SETWGROUPS = 289
  7532. pkg syscall (darwin-arm64-cgo), const SYS_SETWGROUPS ideal-int
  7533. pkg syscall (darwin-arm64-cgo), const SYS_SETXATTR = 236
  7534. pkg syscall (darwin-arm64-cgo), const SYS_SETXATTR ideal-int
  7535. pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_CHECK_NP = 294
  7536. pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_CHECK_NP ideal-int
  7537. pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
  7538. pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
  7539. pkg syscall (darwin-arm64-cgo), const SYS_SHMAT = 262
  7540. pkg syscall (darwin-arm64-cgo), const SYS_SHMAT ideal-int
  7541. pkg syscall (darwin-arm64-cgo), const SYS_SHMCTL = 263
  7542. pkg syscall (darwin-arm64-cgo), const SYS_SHMCTL ideal-int
  7543. pkg syscall (darwin-arm64-cgo), const SYS_SHMDT = 264
  7544. pkg syscall (darwin-arm64-cgo), const SYS_SHMDT ideal-int
  7545. pkg syscall (darwin-arm64-cgo), const SYS_SHMGET = 265
  7546. pkg syscall (darwin-arm64-cgo), const SYS_SHMGET ideal-int
  7547. pkg syscall (darwin-arm64-cgo), const SYS_SHMSYS = 253
  7548. pkg syscall (darwin-arm64-cgo), const SYS_SHMSYS ideal-int
  7549. pkg syscall (darwin-arm64-cgo), const SYS_SHM_OPEN = 266
  7550. pkg syscall (darwin-arm64-cgo), const SYS_SHM_OPEN ideal-int
  7551. pkg syscall (darwin-arm64-cgo), const SYS_SHM_UNLINK = 267
  7552. pkg syscall (darwin-arm64-cgo), const SYS_SHM_UNLINK ideal-int
  7553. pkg syscall (darwin-arm64-cgo), const SYS_SHUTDOWN = 134
  7554. pkg syscall (darwin-arm64-cgo), const SYS_SHUTDOWN ideal-int
  7555. pkg syscall (darwin-arm64-cgo), const SYS_SIGACTION = 46
  7556. pkg syscall (darwin-arm64-cgo), const SYS_SIGACTION ideal-int
  7557. pkg syscall (darwin-arm64-cgo), const SYS_SIGALTSTACK = 53
  7558. pkg syscall (darwin-arm64-cgo), const SYS_SIGALTSTACK ideal-int
  7559. pkg syscall (darwin-arm64-cgo), const SYS_SIGPENDING = 52
  7560. pkg syscall (darwin-arm64-cgo), const SYS_SIGPENDING ideal-int
  7561. pkg syscall (darwin-arm64-cgo), const SYS_SIGPROCMASK = 48
  7562. pkg syscall (darwin-arm64-cgo), const SYS_SIGPROCMASK ideal-int
  7563. pkg syscall (darwin-arm64-cgo), const SYS_SIGRETURN = 184
  7564. pkg syscall (darwin-arm64-cgo), const SYS_SIGRETURN ideal-int
  7565. pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND = 111
  7566. pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND ideal-int
  7567. pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND_NOCANCEL = 410
  7568. pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND_NOCANCEL ideal-int
  7569. pkg syscall (darwin-arm64-cgo), const SYS_SOCKET = 97
  7570. pkg syscall (darwin-arm64-cgo), const SYS_SOCKET ideal-int
  7571. pkg syscall (darwin-arm64-cgo), const SYS_SOCKETPAIR = 135
  7572. pkg syscall (darwin-arm64-cgo), const SYS_SOCKETPAIR ideal-int
  7573. pkg syscall (darwin-arm64-cgo), const SYS_STACK_SNAPSHOT = 365
  7574. pkg syscall (darwin-arm64-cgo), const SYS_STACK_SNAPSHOT ideal-int
  7575. pkg syscall (darwin-arm64-cgo), const SYS_STAT = 188
  7576. pkg syscall (darwin-arm64-cgo), const SYS_STAT ideal-int
  7577. pkg syscall (darwin-arm64-cgo), const SYS_STAT64 = 338
  7578. pkg syscall (darwin-arm64-cgo), const SYS_STAT64 ideal-int
  7579. pkg syscall (darwin-arm64-cgo), const SYS_STAT64_EXTENDED = 341
  7580. pkg syscall (darwin-arm64-cgo), const SYS_STAT64_EXTENDED ideal-int
  7581. pkg syscall (darwin-arm64-cgo), const SYS_STATFS = 157
  7582. pkg syscall (darwin-arm64-cgo), const SYS_STATFS ideal-int
  7583. pkg syscall (darwin-arm64-cgo), const SYS_STATFS64 = 345
  7584. pkg syscall (darwin-arm64-cgo), const SYS_STATFS64 ideal-int
  7585. pkg syscall (darwin-arm64-cgo), const SYS_STAT_EXTENDED = 279
  7586. pkg syscall (darwin-arm64-cgo), const SYS_STAT_EXTENDED ideal-int
  7587. pkg syscall (darwin-arm64-cgo), const SYS_SWAPON = 85
  7588. pkg syscall (darwin-arm64-cgo), const SYS_SWAPON ideal-int
  7589. pkg syscall (darwin-arm64-cgo), const SYS_SYMLINK = 57
  7590. pkg syscall (darwin-arm64-cgo), const SYS_SYMLINK ideal-int
  7591. pkg syscall (darwin-arm64-cgo), const SYS_SYNC = 36
  7592. pkg syscall (darwin-arm64-cgo), const SYS_SYNC ideal-int
  7593. pkg syscall (darwin-arm64-cgo), const SYS_SYSCALL = 0
  7594. pkg syscall (darwin-arm64-cgo), const SYS_SYSCALL ideal-int
  7595. pkg syscall (darwin-arm64-cgo), const SYS_THREAD_SELFID = 372
  7596. pkg syscall (darwin-arm64-cgo), const SYS_THREAD_SELFID ideal-int
  7597. pkg syscall (darwin-arm64-cgo), const SYS_TRUNCATE = 200
  7598. pkg syscall (darwin-arm64-cgo), const SYS_TRUNCATE ideal-int
  7599. pkg syscall (darwin-arm64-cgo), const SYS_UMASK = 60
  7600. pkg syscall (darwin-arm64-cgo), const SYS_UMASK ideal-int
  7601. pkg syscall (darwin-arm64-cgo), const SYS_UMASK_EXTENDED = 278
  7602. pkg syscall (darwin-arm64-cgo), const SYS_UMASK_EXTENDED ideal-int
  7603. pkg syscall (darwin-arm64-cgo), const SYS_UNDELETE = 205
  7604. pkg syscall (darwin-arm64-cgo), const SYS_UNDELETE ideal-int
  7605. pkg syscall (darwin-arm64-cgo), const SYS_UNLINK = 10
  7606. pkg syscall (darwin-arm64-cgo), const SYS_UNLINK ideal-int
  7607. pkg syscall (darwin-arm64-cgo), const SYS_UNMOUNT = 159
  7608. pkg syscall (darwin-arm64-cgo), const SYS_UNMOUNT ideal-int
  7609. pkg syscall (darwin-arm64-cgo), const SYS_UTIMES = 138
  7610. pkg syscall (darwin-arm64-cgo), const SYS_UTIMES ideal-int
  7611. pkg syscall (darwin-arm64-cgo), const SYS_VFORK = 66
  7612. pkg syscall (darwin-arm64-cgo), const SYS_VFORK ideal-int
  7613. pkg syscall (darwin-arm64-cgo), const SYS_VM_PRESSURE_MONITOR = 296
  7614. pkg syscall (darwin-arm64-cgo), const SYS_VM_PRESSURE_MONITOR ideal-int
  7615. pkg syscall (darwin-arm64-cgo), const SYS_WAIT4 = 7
  7616. pkg syscall (darwin-arm64-cgo), const SYS_WAIT4 ideal-int
  7617. pkg syscall (darwin-arm64-cgo), const SYS_WAIT4_NOCANCEL = 400
  7618. pkg syscall (darwin-arm64-cgo), const SYS_WAIT4_NOCANCEL ideal-int
  7619. pkg syscall (darwin-arm64-cgo), const SYS_WAITEVENT = 232
  7620. pkg syscall (darwin-arm64-cgo), const SYS_WAITEVENT ideal-int
  7621. pkg syscall (darwin-arm64-cgo), const SYS_WAITID = 173
  7622. pkg syscall (darwin-arm64-cgo), const SYS_WAITID ideal-int
  7623. pkg syscall (darwin-arm64-cgo), const SYS_WAITID_NOCANCEL = 416
  7624. pkg syscall (darwin-arm64-cgo), const SYS_WAITID_NOCANCEL ideal-int
  7625. pkg syscall (darwin-arm64-cgo), const SYS_WATCHEVENT = 231
  7626. pkg syscall (darwin-arm64-cgo), const SYS_WATCHEVENT ideal-int
  7627. pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_KERNRETURN = 368
  7628. pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_KERNRETURN ideal-int
  7629. pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_OPEN = 367
  7630. pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_OPEN ideal-int
  7631. pkg syscall (darwin-arm64-cgo), const SYS_WRITE = 4
  7632. pkg syscall (darwin-arm64-cgo), const SYS_WRITE ideal-int
  7633. pkg syscall (darwin-arm64-cgo), const SYS_WRITEV = 121
  7634. pkg syscall (darwin-arm64-cgo), const SYS_WRITEV ideal-int
  7635. pkg syscall (darwin-arm64-cgo), const SYS_WRITEV_NOCANCEL = 412
  7636. pkg syscall (darwin-arm64-cgo), const SYS_WRITEV_NOCANCEL ideal-int
  7637. pkg syscall (darwin-arm64-cgo), const SYS_WRITE_NOCANCEL = 397
  7638. pkg syscall (darwin-arm64-cgo), const SYS_WRITE_NOCANCEL ideal-int
  7639. pkg syscall (darwin-arm64-cgo), const SYS___DISABLE_THREADSIGNAL = 331
  7640. pkg syscall (darwin-arm64-cgo), const SYS___DISABLE_THREADSIGNAL ideal-int
  7641. pkg syscall (darwin-arm64-cgo), const SYS___MAC_EXECVE = 380
  7642. pkg syscall (darwin-arm64-cgo), const SYS___MAC_EXECVE ideal-int
  7643. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GETFSSTAT = 426
  7644. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GETFSSTAT ideal-int
  7645. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FD = 388
  7646. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FD ideal-int
  7647. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FILE = 382
  7648. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FILE ideal-int
  7649. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCID = 391
  7650. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCID ideal-int
  7651. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCTX = 392
  7652. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCTX ideal-int
  7653. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LINK = 384
  7654. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LINK ideal-int
  7655. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_MOUNT = 425
  7656. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_MOUNT ideal-int
  7657. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PID = 390
  7658. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PID ideal-int
  7659. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PROC = 386
  7660. pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PROC ideal-int
  7661. pkg syscall (darwin-arm64-cgo), const SYS___MAC_MOUNT = 424
  7662. pkg syscall (darwin-arm64-cgo), const SYS___MAC_MOUNT ideal-int
  7663. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FD = 389
  7664. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FD ideal-int
  7665. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FILE = 383
  7666. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FILE ideal-int
  7667. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LCTX = 393
  7668. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LCTX ideal-int
  7669. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LINK = 385
  7670. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LINK ideal-int
  7671. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_PROC = 387
  7672. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_PROC ideal-int
  7673. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SYSCALL = 381
  7674. pkg syscall (darwin-arm64-cgo), const SYS___MAC_SYSCALL ideal-int
  7675. pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL = 370
  7676. pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL ideal-int
  7677. pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
  7678. pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int
  7679. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CANCELED = 333
  7680. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CANCELED ideal-int
  7681. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CHDIR = 348
  7682. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CHDIR ideal-int
  7683. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_FCHDIR = 349
  7684. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_FCHDIR ideal-int
  7685. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_KILL = 328
  7686. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_KILL ideal-int
  7687. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_MARKCANCEL = 332
  7688. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_MARKCANCEL ideal-int
  7689. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_SIGMASK = 329
  7690. pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_SIGMASK ideal-int
  7691. pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL = 334
  7692. pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL ideal-int
  7693. pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423
  7694. pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int
  7695. pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT = 330
  7696. pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT ideal-int
  7697. pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT_NOCANCEL = 422
  7698. pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT_NOCANCEL ideal-int
  7699. pkg syscall (darwin-arm64-cgo), const SYS___SYSCTL = 202
  7700. pkg syscall (darwin-arm64-cgo), const SYS___SYSCTL ideal-int
  7701. pkg syscall (darwin-arm64-cgo), const S_IEXEC = 64
  7702. pkg syscall (darwin-arm64-cgo), const S_IEXEC ideal-int
  7703. pkg syscall (darwin-arm64-cgo), const S_IFMT = 61440
  7704. pkg syscall (darwin-arm64-cgo), const S_IFWHT = 57344
  7705. pkg syscall (darwin-arm64-cgo), const S_IFWHT ideal-int
  7706. pkg syscall (darwin-arm64-cgo), const S_IREAD = 256
  7707. pkg syscall (darwin-arm64-cgo), const S_IREAD ideal-int
  7708. pkg syscall (darwin-arm64-cgo), const S_IRGRP = 32
  7709. pkg syscall (darwin-arm64-cgo), const S_IRGRP ideal-int
  7710. pkg syscall (darwin-arm64-cgo), const S_IROTH = 4
  7711. pkg syscall (darwin-arm64-cgo), const S_IROTH ideal-int
  7712. pkg syscall (darwin-arm64-cgo), const S_IRWXG = 56
  7713. pkg syscall (darwin-arm64-cgo), const S_IRWXG ideal-int
  7714. pkg syscall (darwin-arm64-cgo), const S_IRWXO = 7
  7715. pkg syscall (darwin-arm64-cgo), const S_IRWXO ideal-int
  7716. pkg syscall (darwin-arm64-cgo), const S_IRWXU = 448
  7717. pkg syscall (darwin-arm64-cgo), const S_IRWXU ideal-int
  7718. pkg syscall (darwin-arm64-cgo), const S_ISTXT = 512
  7719. pkg syscall (darwin-arm64-cgo), const S_ISTXT ideal-int
  7720. pkg syscall (darwin-arm64-cgo), const S_IWGRP = 16
  7721. pkg syscall (darwin-arm64-cgo), const S_IWGRP ideal-int
  7722. pkg syscall (darwin-arm64-cgo), const S_IWOTH = 2
  7723. pkg syscall (darwin-arm64-cgo), const S_IWOTH ideal-int
  7724. pkg syscall (darwin-arm64-cgo), const S_IWRITE = 128
  7725. pkg syscall (darwin-arm64-cgo), const S_IWRITE ideal-int
  7726. pkg syscall (darwin-arm64-cgo), const S_IXGRP = 8
  7727. pkg syscall (darwin-arm64-cgo), const S_IXGRP ideal-int
  7728. pkg syscall (darwin-arm64-cgo), const S_IXOTH = 1
  7729. pkg syscall (darwin-arm64-cgo), const S_IXOTH ideal-int
  7730. pkg syscall (darwin-arm64-cgo), const SizeofBpfHdr = 20
  7731. pkg syscall (darwin-arm64-cgo), const SizeofBpfHdr ideal-int
  7732. pkg syscall (darwin-arm64-cgo), const SizeofBpfInsn = 8
  7733. pkg syscall (darwin-arm64-cgo), const SizeofBpfInsn ideal-int
  7734. pkg syscall (darwin-arm64-cgo), const SizeofBpfProgram = 16
  7735. pkg syscall (darwin-arm64-cgo), const SizeofBpfProgram ideal-int
  7736. pkg syscall (darwin-arm64-cgo), const SizeofBpfStat = 8
  7737. pkg syscall (darwin-arm64-cgo), const SizeofBpfStat ideal-int
  7738. pkg syscall (darwin-arm64-cgo), const SizeofBpfVersion = 4
  7739. pkg syscall (darwin-arm64-cgo), const SizeofBpfVersion ideal-int
  7740. pkg syscall (darwin-arm64-cgo), const SizeofCmsghdr = 12
  7741. pkg syscall (darwin-arm64-cgo), const SizeofCmsghdr ideal-int
  7742. pkg syscall (darwin-arm64-cgo), const SizeofICMPv6Filter = 32
  7743. pkg syscall (darwin-arm64-cgo), const SizeofICMPv6Filter ideal-int
  7744. pkg syscall (darwin-arm64-cgo), const SizeofIPMreq = 8
  7745. pkg syscall (darwin-arm64-cgo), const SizeofIPMreq ideal-int
  7746. pkg syscall (darwin-arm64-cgo), const SizeofIPv6MTUInfo = 32
  7747. pkg syscall (darwin-arm64-cgo), const SizeofIPv6MTUInfo ideal-int
  7748. pkg syscall (darwin-arm64-cgo), const SizeofIPv6Mreq = 20
  7749. pkg syscall (darwin-arm64-cgo), const SizeofIPv6Mreq ideal-int
  7750. pkg syscall (darwin-arm64-cgo), const SizeofIfData = 96
  7751. pkg syscall (darwin-arm64-cgo), const SizeofIfData ideal-int
  7752. pkg syscall (darwin-arm64-cgo), const SizeofIfMsghdr = 112
  7753. pkg syscall (darwin-arm64-cgo), const SizeofIfMsghdr ideal-int
  7754. pkg syscall (darwin-arm64-cgo), const SizeofIfaMsghdr = 20
  7755. pkg syscall (darwin-arm64-cgo), const SizeofIfaMsghdr ideal-int
  7756. pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr = 16
  7757. pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr ideal-int
  7758. pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr2 = 20
  7759. pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr2 ideal-int
  7760. pkg syscall (darwin-arm64-cgo), const SizeofInet4Pktinfo = 12
  7761. pkg syscall (darwin-arm64-cgo), const SizeofInet4Pktinfo ideal-int
  7762. pkg syscall (darwin-arm64-cgo), const SizeofInet6Pktinfo = 20
  7763. pkg syscall (darwin-arm64-cgo), const SizeofInet6Pktinfo ideal-int
  7764. pkg syscall (darwin-arm64-cgo), const SizeofLinger = 8
  7765. pkg syscall (darwin-arm64-cgo), const SizeofLinger ideal-int
  7766. pkg syscall (darwin-arm64-cgo), const SizeofMsghdr = 48
  7767. pkg syscall (darwin-arm64-cgo), const SizeofMsghdr ideal-int
  7768. pkg syscall (darwin-arm64-cgo), const SizeofRtMetrics = 56
  7769. pkg syscall (darwin-arm64-cgo), const SizeofRtMetrics ideal-int
  7770. pkg syscall (darwin-arm64-cgo), const SizeofRtMsghdr = 92
  7771. pkg syscall (darwin-arm64-cgo), const SizeofRtMsghdr ideal-int
  7772. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrAny = 108
  7773. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrAny ideal-int
  7774. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrDatalink = 20
  7775. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrDatalink ideal-int
  7776. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet4 = 16
  7777. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet4 ideal-int
  7778. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet6 = 28
  7779. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet6 ideal-int
  7780. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrUnix = 106
  7781. pkg syscall (darwin-arm64-cgo), const SizeofSockaddrUnix ideal-int
  7782. pkg syscall (darwin-arm64-cgo), const TCIFLUSH = 1
  7783. pkg syscall (darwin-arm64-cgo), const TCIFLUSH ideal-int
  7784. pkg syscall (darwin-arm64-cgo), const TCIOFLUSH = 3
  7785. pkg syscall (darwin-arm64-cgo), const TCIOFLUSH ideal-int
  7786. pkg syscall (darwin-arm64-cgo), const TCOFLUSH = 2
  7787. pkg syscall (darwin-arm64-cgo), const TCOFLUSH ideal-int
  7788. pkg syscall (darwin-arm64-cgo), const TCP_CONNECTIONTIMEOUT = 32
  7789. pkg syscall (darwin-arm64-cgo), const TCP_CONNECTIONTIMEOUT ideal-int
  7790. pkg syscall (darwin-arm64-cgo), const TCP_ENABLE_ECN = 260
  7791. pkg syscall (darwin-arm64-cgo), const TCP_ENABLE_ECN ideal-int
  7792. pkg syscall (darwin-arm64-cgo), const TCP_KEEPALIVE = 16
  7793. pkg syscall (darwin-arm64-cgo), const TCP_KEEPALIVE ideal-int
  7794. pkg syscall (darwin-arm64-cgo), const TCP_KEEPCNT = 258
  7795. pkg syscall (darwin-arm64-cgo), const TCP_KEEPCNT ideal-int
  7796. pkg syscall (darwin-arm64-cgo), const TCP_KEEPINTVL = 257
  7797. pkg syscall (darwin-arm64-cgo), const TCP_KEEPINTVL ideal-int
  7798. pkg syscall (darwin-arm64-cgo), const TCP_MAXHLEN = 60
  7799. pkg syscall (darwin-arm64-cgo), const TCP_MAXHLEN ideal-int
  7800. pkg syscall (darwin-arm64-cgo), const TCP_MAXOLEN = 40
  7801. pkg syscall (darwin-arm64-cgo), const TCP_MAXOLEN ideal-int
  7802. pkg syscall (darwin-arm64-cgo), const TCP_MAXSEG = 2
  7803. pkg syscall (darwin-arm64-cgo), const TCP_MAXSEG ideal-int
  7804. pkg syscall (darwin-arm64-cgo), const TCP_MAXWIN = 65535
  7805. pkg syscall (darwin-arm64-cgo), const TCP_MAXWIN ideal-int
  7806. pkg syscall (darwin-arm64-cgo), const TCP_MAX_SACK = 4
  7807. pkg syscall (darwin-arm64-cgo), const TCP_MAX_SACK ideal-int
  7808. pkg syscall (darwin-arm64-cgo), const TCP_MAX_WINSHIFT = 14
  7809. pkg syscall (darwin-arm64-cgo), const TCP_MAX_WINSHIFT ideal-int
  7810. pkg syscall (darwin-arm64-cgo), const TCP_MINMSS = 216
  7811. pkg syscall (darwin-arm64-cgo), const TCP_MINMSS ideal-int
  7812. pkg syscall (darwin-arm64-cgo), const TCP_MSS = 512
  7813. pkg syscall (darwin-arm64-cgo), const TCP_MSS ideal-int
  7814. pkg syscall (darwin-arm64-cgo), const TCP_NOOPT = 8
  7815. pkg syscall (darwin-arm64-cgo), const TCP_NOOPT ideal-int
  7816. pkg syscall (darwin-arm64-cgo), const TCP_NOPUSH = 4
  7817. pkg syscall (darwin-arm64-cgo), const TCP_NOPUSH ideal-int
  7818. pkg syscall (darwin-arm64-cgo), const TCP_NOTSENT_LOWAT = 513
  7819. pkg syscall (darwin-arm64-cgo), const TCP_NOTSENT_LOWAT ideal-int
  7820. pkg syscall (darwin-arm64-cgo), const TCP_RXT_CONNDROPTIME = 128
  7821. pkg syscall (darwin-arm64-cgo), const TCP_RXT_CONNDROPTIME ideal-int
  7822. pkg syscall (darwin-arm64-cgo), const TCP_RXT_FINDROP = 256
  7823. pkg syscall (darwin-arm64-cgo), const TCP_RXT_FINDROP ideal-int
  7824. pkg syscall (darwin-arm64-cgo), const TCP_SENDMOREACKS = 259
  7825. pkg syscall (darwin-arm64-cgo), const TCP_SENDMOREACKS ideal-int
  7826. pkg syscall (darwin-arm64-cgo), const TCSAFLUSH = 2
  7827. pkg syscall (darwin-arm64-cgo), const TCSAFLUSH ideal-int
  7828. pkg syscall (darwin-arm64-cgo), const TIOCCBRK = 536900730
  7829. pkg syscall (darwin-arm64-cgo), const TIOCCBRK ideal-int
  7830. pkg syscall (darwin-arm64-cgo), const TIOCCDTR = 536900728
  7831. pkg syscall (darwin-arm64-cgo), const TIOCCDTR ideal-int
  7832. pkg syscall (darwin-arm64-cgo), const TIOCCONS = 2147775586
  7833. pkg syscall (darwin-arm64-cgo), const TIOCCONS ideal-int
  7834. pkg syscall (darwin-arm64-cgo), const TIOCDCDTIMESTAMP = 1074820184
  7835. pkg syscall (darwin-arm64-cgo), const TIOCDCDTIMESTAMP ideal-int
  7836. pkg syscall (darwin-arm64-cgo), const TIOCDRAIN = 536900702
  7837. pkg syscall (darwin-arm64-cgo), const TIOCDRAIN ideal-int
  7838. pkg syscall (darwin-arm64-cgo), const TIOCDSIMICROCODE = 536900693
  7839. pkg syscall (darwin-arm64-cgo), const TIOCDSIMICROCODE ideal-int
  7840. pkg syscall (darwin-arm64-cgo), const TIOCEXCL = 536900621
  7841. pkg syscall (darwin-arm64-cgo), const TIOCEXCL ideal-int
  7842. pkg syscall (darwin-arm64-cgo), const TIOCEXT = 2147775584
  7843. pkg syscall (darwin-arm64-cgo), const TIOCEXT ideal-int
  7844. pkg syscall (darwin-arm64-cgo), const TIOCFLUSH = 2147775504
  7845. pkg syscall (darwin-arm64-cgo), const TIOCFLUSH ideal-int
  7846. pkg syscall (darwin-arm64-cgo), const TIOCGDRAINWAIT = 1074033750
  7847. pkg syscall (darwin-arm64-cgo), const TIOCGDRAINWAIT ideal-int
  7848. pkg syscall (darwin-arm64-cgo), const TIOCGETA = 1078490131
  7849. pkg syscall (darwin-arm64-cgo), const TIOCGETA ideal-int
  7850. pkg syscall (darwin-arm64-cgo), const TIOCGETD = 1074033690
  7851. pkg syscall (darwin-arm64-cgo), const TIOCGETD ideal-int
  7852. pkg syscall (darwin-arm64-cgo), const TIOCGPGRP = 1074033783
  7853. pkg syscall (darwin-arm64-cgo), const TIOCGPGRP ideal-int
  7854. pkg syscall (darwin-arm64-cgo), const TIOCGWINSZ = 1074295912
  7855. pkg syscall (darwin-arm64-cgo), const TIOCGWINSZ ideal-int
  7856. pkg syscall (darwin-arm64-cgo), const TIOCIXOFF = 536900736
  7857. pkg syscall (darwin-arm64-cgo), const TIOCIXOFF ideal-int
  7858. pkg syscall (darwin-arm64-cgo), const TIOCIXON = 536900737
  7859. pkg syscall (darwin-arm64-cgo), const TIOCIXON ideal-int
  7860. pkg syscall (darwin-arm64-cgo), const TIOCMBIC = 2147775595
  7861. pkg syscall (darwin-arm64-cgo), const TIOCMBIC ideal-int
  7862. pkg syscall (darwin-arm64-cgo), const TIOCMBIS = 2147775596
  7863. pkg syscall (darwin-arm64-cgo), const TIOCMBIS ideal-int
  7864. pkg syscall (darwin-arm64-cgo), const TIOCMGDTRWAIT = 1074033754
  7865. pkg syscall (darwin-arm64-cgo), const TIOCMGDTRWAIT ideal-int
  7866. pkg syscall (darwin-arm64-cgo), const TIOCMGET = 1074033770
  7867. pkg syscall (darwin-arm64-cgo), const TIOCMGET ideal-int
  7868. pkg syscall (darwin-arm64-cgo), const TIOCMODG = 1074033667
  7869. pkg syscall (darwin-arm64-cgo), const TIOCMODG ideal-int
  7870. pkg syscall (darwin-arm64-cgo), const TIOCMODS = 2147775492
  7871. pkg syscall (darwin-arm64-cgo), const TIOCMODS ideal-int
  7872. pkg syscall (darwin-arm64-cgo), const TIOCMSDTRWAIT = 2147775579
  7873. pkg syscall (darwin-arm64-cgo), const TIOCMSDTRWAIT ideal-int
  7874. pkg syscall (darwin-arm64-cgo), const TIOCMSET = 2147775597
  7875. pkg syscall (darwin-arm64-cgo), const TIOCMSET ideal-int
  7876. pkg syscall (darwin-arm64-cgo), const TIOCM_CAR = 64
  7877. pkg syscall (darwin-arm64-cgo), const TIOCM_CAR ideal-int
  7878. pkg syscall (darwin-arm64-cgo), const TIOCM_CD = 64
  7879. pkg syscall (darwin-arm64-cgo), const TIOCM_CD ideal-int
  7880. pkg syscall (darwin-arm64-cgo), const TIOCM_CTS = 32
  7881. pkg syscall (darwin-arm64-cgo), const TIOCM_CTS ideal-int
  7882. pkg syscall (darwin-arm64-cgo), const TIOCM_DSR = 256
  7883. pkg syscall (darwin-arm64-cgo), const TIOCM_DSR ideal-int
  7884. pkg syscall (darwin-arm64-cgo), const TIOCM_DTR = 2
  7885. pkg syscall (darwin-arm64-cgo), const TIOCM_DTR ideal-int
  7886. pkg syscall (darwin-arm64-cgo), const TIOCM_LE = 1
  7887. pkg syscall (darwin-arm64-cgo), const TIOCM_LE ideal-int
  7888. pkg syscall (darwin-arm64-cgo), const TIOCM_RI = 128
  7889. pkg syscall (darwin-arm64-cgo), const TIOCM_RI ideal-int
  7890. pkg syscall (darwin-arm64-cgo), const TIOCM_RNG = 128
  7891. pkg syscall (darwin-arm64-cgo), const TIOCM_RNG ideal-int
  7892. pkg syscall (darwin-arm64-cgo), const TIOCM_RTS = 4
  7893. pkg syscall (darwin-arm64-cgo), const TIOCM_RTS ideal-int
  7894. pkg syscall (darwin-arm64-cgo), const TIOCM_SR = 16
  7895. pkg syscall (darwin-arm64-cgo), const TIOCM_SR ideal-int
  7896. pkg syscall (darwin-arm64-cgo), const TIOCM_ST = 8
  7897. pkg syscall (darwin-arm64-cgo), const TIOCM_ST ideal-int
  7898. pkg syscall (darwin-arm64-cgo), const TIOCNOTTY = 536900721
  7899. pkg syscall (darwin-arm64-cgo), const TIOCNOTTY ideal-int
  7900. pkg syscall (darwin-arm64-cgo), const TIOCNXCL = 536900622
  7901. pkg syscall (darwin-arm64-cgo), const TIOCNXCL ideal-int
  7902. pkg syscall (darwin-arm64-cgo), const TIOCOUTQ = 1074033779
  7903. pkg syscall (darwin-arm64-cgo), const TIOCOUTQ ideal-int
  7904. pkg syscall (darwin-arm64-cgo), const TIOCPKT = 2147775600
  7905. pkg syscall (darwin-arm64-cgo), const TIOCPKT ideal-int
  7906. pkg syscall (darwin-arm64-cgo), const TIOCPKT_DATA = 0
  7907. pkg syscall (darwin-arm64-cgo), const TIOCPKT_DATA ideal-int
  7908. pkg syscall (darwin-arm64-cgo), const TIOCPKT_DOSTOP = 32
  7909. pkg syscall (darwin-arm64-cgo), const TIOCPKT_DOSTOP ideal-int
  7910. pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHREAD = 1
  7911. pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHREAD ideal-int
  7912. pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHWRITE = 2
  7913. pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
  7914. pkg syscall (darwin-arm64-cgo), const TIOCPKT_IOCTL = 64
  7915. pkg syscall (darwin-arm64-cgo), const TIOCPKT_IOCTL ideal-int
  7916. pkg syscall (darwin-arm64-cgo), const TIOCPKT_NOSTOP = 16
  7917. pkg syscall (darwin-arm64-cgo), const TIOCPKT_NOSTOP ideal-int
  7918. pkg syscall (darwin-arm64-cgo), const TIOCPKT_START = 8
  7919. pkg syscall (darwin-arm64-cgo), const TIOCPKT_START ideal-int
  7920. pkg syscall (darwin-arm64-cgo), const TIOCPKT_STOP = 4
  7921. pkg syscall (darwin-arm64-cgo), const TIOCPKT_STOP ideal-int
  7922. pkg syscall (darwin-arm64-cgo), const TIOCPTYGNAME = 1082160211
  7923. pkg syscall (darwin-arm64-cgo), const TIOCPTYGNAME ideal-int
  7924. pkg syscall (darwin-arm64-cgo), const TIOCPTYGRANT = 536900692
  7925. pkg syscall (darwin-arm64-cgo), const TIOCPTYGRANT ideal-int
  7926. pkg syscall (darwin-arm64-cgo), const TIOCPTYUNLK = 536900690
  7927. pkg syscall (darwin-arm64-cgo), const TIOCPTYUNLK ideal-int
  7928. pkg syscall (darwin-arm64-cgo), const TIOCREMOTE = 2147775593
  7929. pkg syscall (darwin-arm64-cgo), const TIOCREMOTE ideal-int
  7930. pkg syscall (darwin-arm64-cgo), const TIOCSBRK = 536900731
  7931. pkg syscall (darwin-arm64-cgo), const TIOCSBRK ideal-int
  7932. pkg syscall (darwin-arm64-cgo), const TIOCSCONS = 536900707
  7933. pkg syscall (darwin-arm64-cgo), const TIOCSCONS ideal-int
  7934. pkg syscall (darwin-arm64-cgo), const TIOCSCTTY = 536900705
  7935. pkg syscall (darwin-arm64-cgo), const TIOCSCTTY ideal-int
  7936. pkg syscall (darwin-arm64-cgo), const TIOCSDRAINWAIT = 2147775575
  7937. pkg syscall (darwin-arm64-cgo), const TIOCSDRAINWAIT ideal-int
  7938. pkg syscall (darwin-arm64-cgo), const TIOCSDTR = 536900729
  7939. pkg syscall (darwin-arm64-cgo), const TIOCSDTR ideal-int
  7940. pkg syscall (darwin-arm64-cgo), const TIOCSETA = 2152231956
  7941. pkg syscall (darwin-arm64-cgo), const TIOCSETA ideal-int
  7942. pkg syscall (darwin-arm64-cgo), const TIOCSETAF = 2152231958
  7943. pkg syscall (darwin-arm64-cgo), const TIOCSETAF ideal-int
  7944. pkg syscall (darwin-arm64-cgo), const TIOCSETAW = 2152231957
  7945. pkg syscall (darwin-arm64-cgo), const TIOCSETAW ideal-int
  7946. pkg syscall (darwin-arm64-cgo), const TIOCSETD = 2147775515
  7947. pkg syscall (darwin-arm64-cgo), const TIOCSETD ideal-int
  7948. pkg syscall (darwin-arm64-cgo), const TIOCSIG = 536900703
  7949. pkg syscall (darwin-arm64-cgo), const TIOCSIG ideal-int
  7950. pkg syscall (darwin-arm64-cgo), const TIOCSPGRP = 2147775606
  7951. pkg syscall (darwin-arm64-cgo), const TIOCSPGRP ideal-int
  7952. pkg syscall (darwin-arm64-cgo), const TIOCSTART = 536900718
  7953. pkg syscall (darwin-arm64-cgo), const TIOCSTART ideal-int
  7954. pkg syscall (darwin-arm64-cgo), const TIOCSTAT = 536900709
  7955. pkg syscall (darwin-arm64-cgo), const TIOCSTAT ideal-int
  7956. pkg syscall (darwin-arm64-cgo), const TIOCSTI = 2147578994
  7957. pkg syscall (darwin-arm64-cgo), const TIOCSTI ideal-int
  7958. pkg syscall (darwin-arm64-cgo), const TIOCSTOP = 536900719
  7959. pkg syscall (darwin-arm64-cgo), const TIOCSTOP ideal-int
  7960. pkg syscall (darwin-arm64-cgo), const TIOCSWINSZ = 2148037735
  7961. pkg syscall (darwin-arm64-cgo), const TIOCSWINSZ ideal-int
  7962. pkg syscall (darwin-arm64-cgo), const TIOCTIMESTAMP = 1074820185
  7963. pkg syscall (darwin-arm64-cgo), const TIOCTIMESTAMP ideal-int
  7964. pkg syscall (darwin-arm64-cgo), const TIOCUCNTL = 2147775590
  7965. pkg syscall (darwin-arm64-cgo), const TIOCUCNTL ideal-int
  7966. pkg syscall (darwin-arm64-cgo), const TOSTOP = 4194304
  7967. pkg syscall (darwin-arm64-cgo), const TOSTOP ideal-int
  7968. pkg syscall (darwin-arm64-cgo), const VDISCARD = 15
  7969. pkg syscall (darwin-arm64-cgo), const VDISCARD ideal-int
  7970. pkg syscall (darwin-arm64-cgo), const VDSUSP = 11
  7971. pkg syscall (darwin-arm64-cgo), const VDSUSP ideal-int
  7972. pkg syscall (darwin-arm64-cgo), const VEOF = 0
  7973. pkg syscall (darwin-arm64-cgo), const VEOF ideal-int
  7974. pkg syscall (darwin-arm64-cgo), const VEOL = 1
  7975. pkg syscall (darwin-arm64-cgo), const VEOL ideal-int
  7976. pkg syscall (darwin-arm64-cgo), const VEOL2 = 2
  7977. pkg syscall (darwin-arm64-cgo), const VEOL2 ideal-int
  7978. pkg syscall (darwin-arm64-cgo), const VERASE = 3
  7979. pkg syscall (darwin-arm64-cgo), const VERASE ideal-int
  7980. pkg syscall (darwin-arm64-cgo), const VINTR = 8
  7981. pkg syscall (darwin-arm64-cgo), const VINTR ideal-int
  7982. pkg syscall (darwin-arm64-cgo), const VKILL = 5
  7983. pkg syscall (darwin-arm64-cgo), const VKILL ideal-int
  7984. pkg syscall (darwin-arm64-cgo), const VLNEXT = 14
  7985. pkg syscall (darwin-arm64-cgo), const VLNEXT ideal-int
  7986. pkg syscall (darwin-arm64-cgo), const VMIN = 16
  7987. pkg syscall (darwin-arm64-cgo), const VMIN ideal-int
  7988. pkg syscall (darwin-arm64-cgo), const VQUIT = 9
  7989. pkg syscall (darwin-arm64-cgo), const VQUIT ideal-int
  7990. pkg syscall (darwin-arm64-cgo), const VREPRINT = 6
  7991. pkg syscall (darwin-arm64-cgo), const VREPRINT ideal-int
  7992. pkg syscall (darwin-arm64-cgo), const VSTART = 12
  7993. pkg syscall (darwin-arm64-cgo), const VSTART ideal-int
  7994. pkg syscall (darwin-arm64-cgo), const VSTATUS = 18
  7995. pkg syscall (darwin-arm64-cgo), const VSTATUS ideal-int
  7996. pkg syscall (darwin-arm64-cgo), const VSTOP = 13
  7997. pkg syscall (darwin-arm64-cgo), const VSTOP ideal-int
  7998. pkg syscall (darwin-arm64-cgo), const VSUSP = 10
  7999. pkg syscall (darwin-arm64-cgo), const VSUSP ideal-int
  8000. pkg syscall (darwin-arm64-cgo), const VT0 = 0
  8001. pkg syscall (darwin-arm64-cgo), const VT0 ideal-int
  8002. pkg syscall (darwin-arm64-cgo), const VT1 = 65536
  8003. pkg syscall (darwin-arm64-cgo), const VT1 ideal-int
  8004. pkg syscall (darwin-arm64-cgo), const VTDLY = 65536
  8005. pkg syscall (darwin-arm64-cgo), const VTDLY ideal-int
  8006. pkg syscall (darwin-arm64-cgo), const VTIME = 17
  8007. pkg syscall (darwin-arm64-cgo), const VTIME ideal-int
  8008. pkg syscall (darwin-arm64-cgo), const VWERASE = 4
  8009. pkg syscall (darwin-arm64-cgo), const VWERASE ideal-int
  8010. pkg syscall (darwin-arm64-cgo), const WCONTINUED = 16
  8011. pkg syscall (darwin-arm64-cgo), const WCONTINUED ideal-int
  8012. pkg syscall (darwin-arm64-cgo), const WCOREFLAG = 128
  8013. pkg syscall (darwin-arm64-cgo), const WCOREFLAG ideal-int
  8014. pkg syscall (darwin-arm64-cgo), const WEXITED = 4
  8015. pkg syscall (darwin-arm64-cgo), const WEXITED ideal-int
  8016. pkg syscall (darwin-arm64-cgo), const WNOHANG = 1
  8017. pkg syscall (darwin-arm64-cgo), const WNOHANG ideal-int
  8018. pkg syscall (darwin-arm64-cgo), const WNOWAIT = 32
  8019. pkg syscall (darwin-arm64-cgo), const WNOWAIT ideal-int
  8020. pkg syscall (darwin-arm64-cgo), const WORDSIZE = 64
  8021. pkg syscall (darwin-arm64-cgo), const WORDSIZE ideal-int
  8022. pkg syscall (darwin-arm64-cgo), const WSTOPPED = 8
  8023. pkg syscall (darwin-arm64-cgo), const WSTOPPED ideal-int
  8024. pkg syscall (darwin-arm64-cgo), const WUNTRACED = 2
  8025. pkg syscall (darwin-arm64-cgo), const WUNTRACED ideal-int
  8026. pkg syscall (darwin-arm64-cgo), func Accept(int) (int, Sockaddr, error)
  8027. pkg syscall (darwin-arm64-cgo), func Access(string, uint32) error
  8028. pkg syscall (darwin-arm64-cgo), func Adjtime(*Timeval, *Timeval) error
  8029. pkg syscall (darwin-arm64-cgo), func Bind(int, Sockaddr) error
  8030. pkg syscall (darwin-arm64-cgo), func BpfBuflen //deprecated
  8031. pkg syscall (darwin-arm64-cgo), func BpfBuflen(int) (int, error)
  8032. pkg syscall (darwin-arm64-cgo), func BpfDatalink //deprecated
  8033. pkg syscall (darwin-arm64-cgo), func BpfDatalink(int) (int, error)
  8034. pkg syscall (darwin-arm64-cgo), func BpfHeadercmpl //deprecated
  8035. pkg syscall (darwin-arm64-cgo), func BpfHeadercmpl(int) (int, error)
  8036. pkg syscall (darwin-arm64-cgo), func BpfInterface //deprecated
  8037. pkg syscall (darwin-arm64-cgo), func BpfInterface(int, string) (string, error)
  8038. pkg syscall (darwin-arm64-cgo), func BpfJump //deprecated
  8039. pkg syscall (darwin-arm64-cgo), func BpfJump(int, int, int, int) *BpfInsn
  8040. pkg syscall (darwin-arm64-cgo), func BpfStats //deprecated
  8041. pkg syscall (darwin-arm64-cgo), func BpfStats(int) (*BpfStat, error)
  8042. pkg syscall (darwin-arm64-cgo), func BpfStmt //deprecated
  8043. pkg syscall (darwin-arm64-cgo), func BpfStmt(int, int) *BpfInsn
  8044. pkg syscall (darwin-arm64-cgo), func BpfTimeout //deprecated
  8045. pkg syscall (darwin-arm64-cgo), func BpfTimeout(int) (*Timeval, error)
  8046. pkg syscall (darwin-arm64-cgo), func CheckBpfVersion //deprecated
  8047. pkg syscall (darwin-arm64-cgo), func CheckBpfVersion(int) error
  8048. pkg syscall (darwin-arm64-cgo), func Chflags(string, int) error
  8049. pkg syscall (darwin-arm64-cgo), func Chroot(string) error
  8050. pkg syscall (darwin-arm64-cgo), func Close(int) error
  8051. pkg syscall (darwin-arm64-cgo), func CloseOnExec(int)
  8052. pkg syscall (darwin-arm64-cgo), func CmsgLen(int) int
  8053. pkg syscall (darwin-arm64-cgo), func CmsgSpace(int) int
  8054. pkg syscall (darwin-arm64-cgo), func Connect(int, Sockaddr) error
  8055. pkg syscall (darwin-arm64-cgo), func Dup(int) (int, error)
  8056. pkg syscall (darwin-arm64-cgo), func Dup2(int, int) error
  8057. pkg syscall (darwin-arm64-cgo), func Exchangedata(string, string, int) error
  8058. pkg syscall (darwin-arm64-cgo), func Fchdir(int) error
  8059. pkg syscall (darwin-arm64-cgo), func Fchflags(int, int) error
  8060. pkg syscall (darwin-arm64-cgo), func Fchmod(int, uint32) error
  8061. pkg syscall (darwin-arm64-cgo), func Fchown(int, int, int) error
  8062. pkg syscall (darwin-arm64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error
  8063. pkg syscall (darwin-arm64-cgo), func Flock(int, int) error
  8064. pkg syscall (darwin-arm64-cgo), func FlushBpf //deprecated
  8065. pkg syscall (darwin-arm64-cgo), func FlushBpf(int) error
  8066. pkg syscall (darwin-arm64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
  8067. pkg syscall (darwin-arm64-cgo), func Fpathconf(int, int) (int, error)
  8068. pkg syscall (darwin-arm64-cgo), func Fstat(int, *Stat_t) error
  8069. pkg syscall (darwin-arm64-cgo), func Fstatfs(int, *Statfs_t) error
  8070. pkg syscall (darwin-arm64-cgo), func Fsync(int) error
  8071. pkg syscall (darwin-arm64-cgo), func Ftruncate(int, int64) error
  8072. pkg syscall (darwin-arm64-cgo), func Futimes(int, []Timeval) error
  8073. pkg syscall (darwin-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
  8074. pkg syscall (darwin-arm64-cgo), func Getdtablesize() int
  8075. pkg syscall (darwin-arm64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
  8076. pkg syscall (darwin-arm64-cgo), func Getpeername(int) (Sockaddr, error)
  8077. pkg syscall (darwin-arm64-cgo), func Getpgid(int) (int, error)
  8078. pkg syscall (darwin-arm64-cgo), func Getpgrp() int
  8079. pkg syscall (darwin-arm64-cgo), func Getpriority(int, int) (int, error)
  8080. pkg syscall (darwin-arm64-cgo), func Getrlimit(int, *Rlimit) error
  8081. pkg syscall (darwin-arm64-cgo), func Getrusage(int, *Rusage) error
  8082. pkg syscall (darwin-arm64-cgo), func Getsid(int) (int, error)
  8083. pkg syscall (darwin-arm64-cgo), func Getsockname(int) (Sockaddr, error)
  8084. pkg syscall (darwin-arm64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
  8085. pkg syscall (darwin-arm64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
  8086. pkg syscall (darwin-arm64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  8087. pkg syscall (darwin-arm64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
  8088. pkg syscall (darwin-arm64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  8089. pkg syscall (darwin-arm64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  8090. pkg syscall (darwin-arm64-cgo), func GetsockoptInt(int, int, int) (int, error)
  8091. pkg syscall (darwin-arm64-cgo), func Issetugid() bool
  8092. pkg syscall (darwin-arm64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  8093. pkg syscall (darwin-arm64-cgo), func Kill(int, Signal) error
  8094. pkg syscall (darwin-arm64-cgo), func Kqueue() (int, error)
  8095. pkg syscall (darwin-arm64-cgo), func Listen(int, int) error
  8096. pkg syscall (darwin-arm64-cgo), func Lstat(string, *Stat_t) error
  8097. pkg syscall (darwin-arm64-cgo), func Mkfifo(string, uint32) error
  8098. pkg syscall (darwin-arm64-cgo), func Mknod(string, uint32, int) error
  8099. pkg syscall (darwin-arm64-cgo), func Mlock([]uint8) error
  8100. pkg syscall (darwin-arm64-cgo), func Mlockall(int) error
  8101. pkg syscall (darwin-arm64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
  8102. pkg syscall (darwin-arm64-cgo), func Mprotect([]uint8, int) error
  8103. pkg syscall (darwin-arm64-cgo), func Munlock([]uint8) error
  8104. pkg syscall (darwin-arm64-cgo), func Munlockall() error
  8105. pkg syscall (darwin-arm64-cgo), func Munmap([]uint8) error
  8106. pkg syscall (darwin-arm64-cgo), func Open(string, int, uint32) (int, error)
  8107. pkg syscall (darwin-arm64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
  8108. pkg syscall (darwin-arm64-cgo), func ParseRoutingMessage //deprecated
  8109. pkg syscall (darwin-arm64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  8110. pkg syscall (darwin-arm64-cgo), func ParseRoutingSockaddr //deprecated
  8111. pkg syscall (darwin-arm64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  8112. pkg syscall (darwin-arm64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  8113. pkg syscall (darwin-arm64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  8114. pkg syscall (darwin-arm64-cgo), func Pathconf(string, int) (int, error)
  8115. pkg syscall (darwin-arm64-cgo), func Pipe([]int) error
  8116. pkg syscall (darwin-arm64-cgo), func Pread(int, []uint8, int64) (int, error)
  8117. pkg syscall (darwin-arm64-cgo), func PtraceAttach(int) error
  8118. pkg syscall (darwin-arm64-cgo), func PtraceDetach(int) error
  8119. pkg syscall (darwin-arm64-cgo), func Pwrite(int, []uint8, int64) (int, error)
  8120. pkg syscall (darwin-arm64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  8121. pkg syscall (darwin-arm64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  8122. pkg syscall (darwin-arm64-cgo), func Read(int, []uint8) (int, error)
  8123. pkg syscall (darwin-arm64-cgo), func ReadDirent(int, []uint8) (int, error)
  8124. pkg syscall (darwin-arm64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  8125. pkg syscall (darwin-arm64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  8126. pkg syscall (darwin-arm64-cgo), func Revoke(string) error
  8127. pkg syscall (darwin-arm64-cgo), func RouteRIB //deprecated
  8128. pkg syscall (darwin-arm64-cgo), func RouteRIB(int, int) ([]uint8, error)
  8129. pkg syscall (darwin-arm64-cgo), func Seek(int, int64, int) (int64, error)
  8130. pkg syscall (darwin-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  8131. pkg syscall (darwin-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error)
  8132. pkg syscall (darwin-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  8133. pkg syscall (darwin-arm64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
  8134. pkg syscall (darwin-arm64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
  8135. pkg syscall (darwin-arm64-cgo), func SetBpf //deprecated
  8136. pkg syscall (darwin-arm64-cgo), func SetBpf(int, []BpfInsn) error
  8137. pkg syscall (darwin-arm64-cgo), func SetBpfBuflen //deprecated
  8138. pkg syscall (darwin-arm64-cgo), func SetBpfBuflen(int, int) (int, error)
  8139. pkg syscall (darwin-arm64-cgo), func SetBpfDatalink //deprecated
  8140. pkg syscall (darwin-arm64-cgo), func SetBpfDatalink(int, int) (int, error)
  8141. pkg syscall (darwin-arm64-cgo), func SetBpfHeadercmpl //deprecated
  8142. pkg syscall (darwin-arm64-cgo), func SetBpfHeadercmpl(int, int) error
  8143. pkg syscall (darwin-arm64-cgo), func SetBpfImmediate //deprecated
  8144. pkg syscall (darwin-arm64-cgo), func SetBpfImmediate(int, int) error
  8145. pkg syscall (darwin-arm64-cgo), func SetBpfInterface //deprecated
  8146. pkg syscall (darwin-arm64-cgo), func SetBpfInterface(int, string) error
  8147. pkg syscall (darwin-arm64-cgo), func SetBpfPromisc //deprecated
  8148. pkg syscall (darwin-arm64-cgo), func SetBpfPromisc(int, int) error
  8149. pkg syscall (darwin-arm64-cgo), func SetBpfTimeout //deprecated
  8150. pkg syscall (darwin-arm64-cgo), func SetBpfTimeout(int, *Timeval) error
  8151. pkg syscall (darwin-arm64-cgo), func SetKevent(*Kevent_t, int, int, int)
  8152. pkg syscall (darwin-arm64-cgo), func SetNonblock(int, bool) error
  8153. pkg syscall (darwin-arm64-cgo), func Setegid(int) error
  8154. pkg syscall (darwin-arm64-cgo), func Seteuid(int) error
  8155. pkg syscall (darwin-arm64-cgo), func Setgid(int) error
  8156. pkg syscall (darwin-arm64-cgo), func Setgroups([]int) error
  8157. pkg syscall (darwin-arm64-cgo), func Setlogin(string) error
  8158. pkg syscall (darwin-arm64-cgo), func Setpgid(int, int) error
  8159. pkg syscall (darwin-arm64-cgo), func Setpriority(int, int, int) error
  8160. pkg syscall (darwin-arm64-cgo), func Setprivexec(int) error
  8161. pkg syscall (darwin-arm64-cgo), func Setregid(int, int) error
  8162. pkg syscall (darwin-arm64-cgo), func Setreuid(int, int) error
  8163. pkg syscall (darwin-arm64-cgo), func Setrlimit(int, *Rlimit) error
  8164. pkg syscall (darwin-arm64-cgo), func Setsid() (int, error)
  8165. pkg syscall (darwin-arm64-cgo), func SetsockoptByte(int, int, int, uint8) error
  8166. pkg syscall (darwin-arm64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
  8167. pkg syscall (darwin-arm64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  8168. pkg syscall (darwin-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  8169. pkg syscall (darwin-arm64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  8170. pkg syscall (darwin-arm64-cgo), func SetsockoptInt(int, int, int, int) error
  8171. pkg syscall (darwin-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
  8172. pkg syscall (darwin-arm64-cgo), func SetsockoptString(int, int, int, string) error
  8173. pkg syscall (darwin-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
  8174. pkg syscall (darwin-arm64-cgo), func Settimeofday(*Timeval) error
  8175. pkg syscall (darwin-arm64-cgo), func Setuid(int) error
  8176. pkg syscall (darwin-arm64-cgo), func Shutdown(int, int) error
  8177. pkg syscall (darwin-arm64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
  8178. pkg syscall (darwin-arm64-cgo), func Socket(int, int, int) (int, error)
  8179. pkg syscall (darwin-arm64-cgo), func Socketpair(int, int, int) ([2]int, error)
  8180. pkg syscall (darwin-arm64-cgo), func Stat(string, *Stat_t) error
  8181. pkg syscall (darwin-arm64-cgo), func Statfs(string, *Statfs_t) error
  8182. pkg syscall (darwin-arm64-cgo), func StringSlicePtr //deprecated
  8183. pkg syscall (darwin-arm64-cgo), func StringSlicePtr([]string) []*uint8
  8184. pkg syscall (darwin-arm64-cgo), func Sync() error
  8185. pkg syscall (darwin-arm64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  8186. pkg syscall (darwin-arm64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  8187. pkg syscall (darwin-arm64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  8188. pkg syscall (darwin-arm64-cgo), func Sysctl(string) (string, error)
  8189. pkg syscall (darwin-arm64-cgo), func SysctlUint32(string) (uint32, error)
  8190. pkg syscall (darwin-arm64-cgo), func TimevalToNsec(Timeval) int64
  8191. pkg syscall (darwin-arm64-cgo), func Truncate(string, int64) error
  8192. pkg syscall (darwin-arm64-cgo), func Umask(int) int
  8193. pkg syscall (darwin-arm64-cgo), func Undelete(string) error
  8194. pkg syscall (darwin-arm64-cgo), func UnixRights(...int) []uint8
  8195. pkg syscall (darwin-arm64-cgo), func Unmount(string, int) error
  8196. pkg syscall (darwin-arm64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  8197. pkg syscall (darwin-arm64-cgo), func Write(int, []uint8) (int, error)
  8198. pkg syscall (darwin-arm64-cgo), method (*Cmsghdr) SetLen(int)
  8199. pkg syscall (darwin-arm64-cgo), method (*Iovec) SetLen(int)
  8200. pkg syscall (darwin-arm64-cgo), method (*Msghdr) SetControllen(int)
  8201. pkg syscall (darwin-arm64-cgo), type BpfHdr struct
  8202. pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Caplen uint32
  8203. pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Datalen uint32
  8204. pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Hdrlen uint16
  8205. pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
  8206. pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Tstamp Timeval32
  8207. pkg syscall (darwin-arm64-cgo), type BpfInsn struct
  8208. pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Code uint16
  8209. pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Jf uint8
  8210. pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Jt uint8
  8211. pkg syscall (darwin-arm64-cgo), type BpfInsn struct, K uint32
  8212. pkg syscall (darwin-arm64-cgo), type BpfProgram struct
  8213. pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Insns *BpfInsn
  8214. pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Len uint32
  8215. pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
  8216. pkg syscall (darwin-arm64-cgo), type BpfStat struct
  8217. pkg syscall (darwin-arm64-cgo), type BpfStat struct, Drop uint32
  8218. pkg syscall (darwin-arm64-cgo), type BpfStat struct, Recv uint32
  8219. pkg syscall (darwin-arm64-cgo), type BpfVersion struct
  8220. pkg syscall (darwin-arm64-cgo), type BpfVersion struct, Major uint16
  8221. pkg syscall (darwin-arm64-cgo), type BpfVersion struct, Minor uint16
  8222. pkg syscall (darwin-arm64-cgo), type Cmsghdr struct
  8223. pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Len uint32
  8224. pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Level int32
  8225. pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Type int32
  8226. pkg syscall (darwin-arm64-cgo), type Credential struct
  8227. pkg syscall (darwin-arm64-cgo), type Credential struct, Gid uint32
  8228. pkg syscall (darwin-arm64-cgo), type Credential struct, Groups []uint32
  8229. pkg syscall (darwin-arm64-cgo), type Credential struct, NoSetGroups bool
  8230. pkg syscall (darwin-arm64-cgo), type Credential struct, Uid uint32
  8231. pkg syscall (darwin-arm64-cgo), type Dirent struct
  8232. pkg syscall (darwin-arm64-cgo), type Dirent struct, Ino uint64
  8233. pkg syscall (darwin-arm64-cgo), type Dirent struct, Name [1024]int8
  8234. pkg syscall (darwin-arm64-cgo), type Dirent struct, Namlen uint16
  8235. pkg syscall (darwin-arm64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
  8236. pkg syscall (darwin-arm64-cgo), type Dirent struct, Reclen uint16
  8237. pkg syscall (darwin-arm64-cgo), type Dirent struct, Seekoff uint64
  8238. pkg syscall (darwin-arm64-cgo), type Dirent struct, Type uint8
  8239. pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct
  8240. pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Buffer *uint8
  8241. pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Length uint64
  8242. pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Offset int64
  8243. pkg syscall (darwin-arm64-cgo), type FdSet struct
  8244. pkg syscall (darwin-arm64-cgo), type FdSet struct, Bits [32]int32
  8245. pkg syscall (darwin-arm64-cgo), type Flock_t struct
  8246. pkg syscall (darwin-arm64-cgo), type Flock_t struct, Len int64
  8247. pkg syscall (darwin-arm64-cgo), type Flock_t struct, Pid int32
  8248. pkg syscall (darwin-arm64-cgo), type Flock_t struct, Start int64
  8249. pkg syscall (darwin-arm64-cgo), type Flock_t struct, Type int16
  8250. pkg syscall (darwin-arm64-cgo), type Flock_t struct, Whence int16
  8251. pkg syscall (darwin-arm64-cgo), type Fsid struct
  8252. pkg syscall (darwin-arm64-cgo), type Fsid struct, Val [2]int32
  8253. pkg syscall (darwin-arm64-cgo), type Fstore_t struct
  8254. pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Bytesalloc int64
  8255. pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Flags uint32
  8256. pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Length int64
  8257. pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Offset int64
  8258. pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Posmode int32
  8259. pkg syscall (darwin-arm64-cgo), type ICMPv6Filter struct
  8260. pkg syscall (darwin-arm64-cgo), type ICMPv6Filter struct, Filt [8]uint32
  8261. pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct
  8262. pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
  8263. pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32
  8264. pkg syscall (darwin-arm64-cgo), type IfData struct
  8265. pkg syscall (darwin-arm64-cgo), type IfData struct, Addrlen uint8
  8266. pkg syscall (darwin-arm64-cgo), type IfData struct, Baudrate uint32
  8267. pkg syscall (darwin-arm64-cgo), type IfData struct, Collisions uint32
  8268. pkg syscall (darwin-arm64-cgo), type IfData struct, Hdrlen uint8
  8269. pkg syscall (darwin-arm64-cgo), type IfData struct, Hwassist uint32
  8270. pkg syscall (darwin-arm64-cgo), type IfData struct, Ibytes uint32
  8271. pkg syscall (darwin-arm64-cgo), type IfData struct, Ierrors uint32
  8272. pkg syscall (darwin-arm64-cgo), type IfData struct, Imcasts uint32
  8273. pkg syscall (darwin-arm64-cgo), type IfData struct, Ipackets uint32
  8274. pkg syscall (darwin-arm64-cgo), type IfData struct, Iqdrops uint32
  8275. pkg syscall (darwin-arm64-cgo), type IfData struct, Lastchange Timeval32
  8276. pkg syscall (darwin-arm64-cgo), type IfData struct, Metric uint32
  8277. pkg syscall (darwin-arm64-cgo), type IfData struct, Mtu uint32
  8278. pkg syscall (darwin-arm64-cgo), type IfData struct, Noproto uint32
  8279. pkg syscall (darwin-arm64-cgo), type IfData struct, Obytes uint32
  8280. pkg syscall (darwin-arm64-cgo), type IfData struct, Oerrors uint32
  8281. pkg syscall (darwin-arm64-cgo), type IfData struct, Omcasts uint32
  8282. pkg syscall (darwin-arm64-cgo), type IfData struct, Opackets uint32
  8283. pkg syscall (darwin-arm64-cgo), type IfData struct, Physical uint8
  8284. pkg syscall (darwin-arm64-cgo), type IfData struct, Recvquota uint8
  8285. pkg syscall (darwin-arm64-cgo), type IfData struct, Recvtiming uint32
  8286. pkg syscall (darwin-arm64-cgo), type IfData struct, Reserved1 uint32
  8287. pkg syscall (darwin-arm64-cgo), type IfData struct, Reserved2 uint32
  8288. pkg syscall (darwin-arm64-cgo), type IfData struct, Type uint8
  8289. pkg syscall (darwin-arm64-cgo), type IfData struct, Typelen uint8
  8290. pkg syscall (darwin-arm64-cgo), type IfData struct, Unused1 uint8
  8291. pkg syscall (darwin-arm64-cgo), type IfData struct, Unused2 uint32
  8292. pkg syscall (darwin-arm64-cgo), type IfData struct, Xmitquota uint8
  8293. pkg syscall (darwin-arm64-cgo), type IfData struct, Xmittiming uint32
  8294. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct
  8295. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Addrs int32
  8296. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Data IfData
  8297. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Flags int32
  8298. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Index uint16
  8299. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Msglen uint16
  8300. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  8301. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Type uint8
  8302. pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Version uint8
  8303. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct
  8304. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Addrs int32
  8305. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Flags int32
  8306. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Index uint16
  8307. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Metric int32
  8308. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Msglen uint16
  8309. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
  8310. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Type uint8
  8311. pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Version uint8
  8312. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct
  8313. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Addrs int32
  8314. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Flags int32
  8315. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Index uint16
  8316. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Msglen uint16
  8317. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
  8318. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Type uint8
  8319. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Version uint8
  8320. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct
  8321. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Addrs int32
  8322. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Flags int32
  8323. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Index uint16
  8324. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Msglen uint16
  8325. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
  8326. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Refcount int32
  8327. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Type uint8
  8328. pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Version uint8
  8329. pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct
  8330. pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Addr [4]uint8
  8331. pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Ifindex uint32
  8332. pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8
  8333. pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct
  8334. pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
  8335. pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32
  8336. pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage //deprecated
  8337. pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct
  8338. pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8
  8339. pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
  8340. pkg syscall (darwin-arm64-cgo), type InterfaceMessage //deprecated
  8341. pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct
  8342. pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct, Data []uint8
  8343. pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct, Header IfMsghdr
  8344. pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage //deprecated
  8345. pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct
  8346. pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
  8347. pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
  8348. pkg syscall (darwin-arm64-cgo), type Iovec struct
  8349. pkg syscall (darwin-arm64-cgo), type Iovec struct, Base *uint8
  8350. pkg syscall (darwin-arm64-cgo), type Iovec struct, Len uint64
  8351. pkg syscall (darwin-arm64-cgo), type Kevent_t struct
  8352. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Data int64
  8353. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Fflags uint32
  8354. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Filter int16
  8355. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Flags uint16
  8356. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Ident uint64
  8357. pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Udata *uint8
  8358. pkg syscall (darwin-arm64-cgo), type Log2phys_t struct
  8359. pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Contigbytes int64
  8360. pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Devoffset int64
  8361. pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Flags uint32
  8362. pkg syscall (darwin-arm64-cgo), type Msghdr struct
  8363. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Control *uint8
  8364. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Controllen uint32
  8365. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Flags int32
  8366. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Iov *Iovec
  8367. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Iovlen int32
  8368. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Name *uint8
  8369. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Namelen uint32
  8370. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
  8371. pkg syscall (darwin-arm64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
  8372. pkg syscall (darwin-arm64-cgo), type Radvisory_t struct
  8373. pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Count int32
  8374. pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Offset int64
  8375. pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Pad_cgo_0 [4]uint8
  8376. pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Data [14]int8
  8377. pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Family uint8
  8378. pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Len uint8
  8379. pkg syscall (darwin-arm64-cgo), type RawSockaddrAny struct, Pad [92]int8
  8380. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct
  8381. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Alen uint8
  8382. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Data [12]int8
  8383. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Family uint8
  8384. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Index uint16
  8385. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Len uint8
  8386. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Nlen uint8
  8387. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Slen uint8
  8388. pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Type uint8
  8389. pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Family uint8
  8390. pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Len uint8
  8391. pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
  8392. pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Family uint8
  8393. pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Len uint8
  8394. pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Family uint8
  8395. pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Len uint8
  8396. pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Path [104]int8
  8397. pkg syscall (darwin-arm64-cgo), type Rlimit struct
  8398. pkg syscall (darwin-arm64-cgo), type Rlimit struct, Cur uint64
  8399. pkg syscall (darwin-arm64-cgo), type Rlimit struct, Max uint64
  8400. pkg syscall (darwin-arm64-cgo), type RouteMessage //deprecated
  8401. pkg syscall (darwin-arm64-cgo), type RouteMessage struct
  8402. pkg syscall (darwin-arm64-cgo), type RouteMessage struct, Data []uint8
  8403. pkg syscall (darwin-arm64-cgo), type RouteMessage struct, Header RtMsghdr
  8404. pkg syscall (darwin-arm64-cgo), type RoutingMessage //deprecated
  8405. pkg syscall (darwin-arm64-cgo), type RoutingMessage interface, unexported methods
  8406. pkg syscall (darwin-arm64-cgo), type RtMetrics struct
  8407. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Expire int32
  8408. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Filler [4]uint32
  8409. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Hopcount uint32
  8410. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Locks uint32
  8411. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Mtu uint32
  8412. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Pksent uint32
  8413. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Recvpipe uint32
  8414. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Rtt uint32
  8415. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Rttvar uint32
  8416. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Sendpipe uint32
  8417. pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Ssthresh uint32
  8418. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct
  8419. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Addrs int32
  8420. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Errno int32
  8421. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Flags int32
  8422. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Index uint16
  8423. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Inits uint32
  8424. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Msglen uint16
  8425. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  8426. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Pid int32
  8427. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Rmx RtMetrics
  8428. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Seq int32
  8429. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Type uint8
  8430. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Use int32
  8431. pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Version uint8
  8432. pkg syscall (darwin-arm64-cgo), type Rusage struct, Idrss int64
  8433. pkg syscall (darwin-arm64-cgo), type Rusage struct, Inblock int64
  8434. pkg syscall (darwin-arm64-cgo), type Rusage struct, Isrss int64
  8435. pkg syscall (darwin-arm64-cgo), type Rusage struct, Ixrss int64
  8436. pkg syscall (darwin-arm64-cgo), type Rusage struct, Majflt int64
  8437. pkg syscall (darwin-arm64-cgo), type Rusage struct, Maxrss int64
  8438. pkg syscall (darwin-arm64-cgo), type Rusage struct, Minflt int64
  8439. pkg syscall (darwin-arm64-cgo), type Rusage struct, Msgrcv int64
  8440. pkg syscall (darwin-arm64-cgo), type Rusage struct, Msgsnd int64
  8441. pkg syscall (darwin-arm64-cgo), type Rusage struct, Nivcsw int64
  8442. pkg syscall (darwin-arm64-cgo), type Rusage struct, Nsignals int64
  8443. pkg syscall (darwin-arm64-cgo), type Rusage struct, Nswap int64
  8444. pkg syscall (darwin-arm64-cgo), type Rusage struct, Nvcsw int64
  8445. pkg syscall (darwin-arm64-cgo), type Rusage struct, Oublock int64
  8446. pkg syscall (darwin-arm64-cgo), type Rusage struct, Stime Timeval
  8447. pkg syscall (darwin-arm64-cgo), type Rusage struct, Utime Timeval
  8448. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct
  8449. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Alen uint8
  8450. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Data [12]int8
  8451. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Family uint8
  8452. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Index uint16
  8453. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Len uint8
  8454. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Nlen uint8
  8455. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Slen uint8
  8456. pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Type uint8
  8457. pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct
  8458. pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct, Data []uint8
  8459. pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct, Header Cmsghdr
  8460. pkg syscall (darwin-arm64-cgo), type Stat_t struct
  8461. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Atimespec Timespec
  8462. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Birthtimespec Timespec
  8463. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Blksize int32
  8464. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Blocks int64
  8465. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Ctimespec Timespec
  8466. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Dev int32
  8467. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Flags uint32
  8468. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gen uint32
  8469. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gid uint32
  8470. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Ino uint64
  8471. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Lspare int32
  8472. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Mode uint16
  8473. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Mtimespec Timespec
  8474. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Nlink uint16
  8475. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
  8476. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Qspare [2]int64
  8477. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Rdev int32
  8478. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Size int64
  8479. pkg syscall (darwin-arm64-cgo), type Stat_t struct, Uid uint32
  8480. pkg syscall (darwin-arm64-cgo), type Statfs_t struct
  8481. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bavail uint64
  8482. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bfree uint64
  8483. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Blocks uint64
  8484. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bsize uint32
  8485. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Ffree uint64
  8486. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Files uint64
  8487. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Flags uint32
  8488. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fsid Fsid
  8489. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fssubtype uint32
  8490. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fstypename [16]int8
  8491. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Iosize int32
  8492. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Mntfromname [1024]int8
  8493. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Mntonname [1024]int8
  8494. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Owner uint32
  8495. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Reserved [8]uint32
  8496. pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Type uint32
  8497. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Chroot string
  8498. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Credential *Credential
  8499. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Ctty int
  8500. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Foreground bool
  8501. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Noctty bool
  8502. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Pgid int
  8503. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Ptrace bool
  8504. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setctty bool
  8505. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setpgid bool
  8506. pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setsid bool
  8507. pkg syscall (darwin-arm64-cgo), type Termios struct
  8508. pkg syscall (darwin-arm64-cgo), type Termios struct, Cc [20]uint8
  8509. pkg syscall (darwin-arm64-cgo), type Termios struct, Cflag uint64
  8510. pkg syscall (darwin-arm64-cgo), type Termios struct, Iflag uint64
  8511. pkg syscall (darwin-arm64-cgo), type Termios struct, Ispeed uint64
  8512. pkg syscall (darwin-arm64-cgo), type Termios struct, Lflag uint64
  8513. pkg syscall (darwin-arm64-cgo), type Termios struct, Oflag uint64
  8514. pkg syscall (darwin-arm64-cgo), type Termios struct, Ospeed uint64
  8515. pkg syscall (darwin-arm64-cgo), type Termios struct, Pad_cgo_0 [4]uint8
  8516. pkg syscall (darwin-arm64-cgo), type Timespec struct, Nsec int64
  8517. pkg syscall (darwin-arm64-cgo), type Timespec struct, Sec int64
  8518. pkg syscall (darwin-arm64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8
  8519. pkg syscall (darwin-arm64-cgo), type Timeval struct, Sec int64
  8520. pkg syscall (darwin-arm64-cgo), type Timeval struct, Usec int32
  8521. pkg syscall (darwin-arm64-cgo), type Timeval32 struct
  8522. pkg syscall (darwin-arm64-cgo), type Timeval32 struct, Sec int32
  8523. pkg syscall (darwin-arm64-cgo), type Timeval32 struct, Usec int32
  8524. pkg syscall (darwin-arm64-cgo), type WaitStatus uint32
  8525. pkg syscall (darwin-arm64-cgo), var Stderr int
  8526. pkg syscall (darwin-arm64-cgo), var Stdin int
  8527. pkg syscall (darwin-arm64-cgo), var Stdout int