├── .cirrus.yml ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android.yml │ ├── c-cpp.yml │ └── static.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .vscode ├── launch.json └── tasks.json ├── CMakeLists.txt ├── CVS2_Sample_Mapping_for_XInput_Controllers.png ├── FlycastDojoFoxlum.png ├── LICENSE ├── README.md ├── contentsettings.png ├── controls.png ├── core ├── .gitignore ├── README.md ├── archive │ ├── 7zArchive.cpp │ ├── 7zArchive.h │ ├── ZipArchive.cpp │ ├── ZipArchive.h │ ├── archive.cpp │ ├── archive.h │ ├── rzip.cpp │ └── rzip.h ├── build.h ├── cfg │ ├── cfg.cpp │ ├── cfg.h │ ├── cl.cpp │ ├── ini.cpp │ ├── ini.h │ ├── option.cpp │ └── option.h ├── cheats.cpp ├── cheats.h ├── debug │ ├── debug_agent.h │ ├── gdb_server.cpp │ └── gdb_server.h ├── deps │ ├── chdpsr │ │ ├── cdipsr.cpp │ │ └── cdipsr.h │ ├── dirent │ │ └── dirent.h │ ├── ggpo │ │ ├── include │ │ │ └── ggponet.h │ │ └── lib │ │ │ └── ggpo │ │ │ ├── backends │ │ │ ├── backend.h │ │ │ ├── p2p.cpp │ │ │ ├── p2p.h │ │ │ ├── spectator.cpp │ │ │ ├── spectator.h │ │ │ ├── synctest.cpp │ │ │ └── synctest.h │ │ │ ├── bitvector.cpp │ │ │ ├── bitvector.h │ │ │ ├── game_input.cpp │ │ │ ├── game_input.h │ │ │ ├── ggpo_poll.h │ │ │ ├── ggpo_types.h │ │ │ ├── input_queue.cpp │ │ │ ├── input_queue.h │ │ │ ├── main.cpp │ │ │ ├── network │ │ │ ├── udp.cpp │ │ │ ├── udp.h │ │ │ ├── udp_msg.h │ │ │ ├── udp_proto.cpp │ │ │ └── udp_proto.h │ │ │ ├── platform_linux.cpp │ │ │ ├── platform_linux.h │ │ │ ├── platform_windows.cpp │ │ │ ├── platform_windows.h │ │ │ ├── poll.cpp │ │ │ ├── ring_buffer.h │ │ │ ├── static_buffer.h │ │ │ ├── sync.cpp │ │ │ ├── sync.h │ │ │ ├── timesync.cpp │ │ │ └── timesync.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── copying.txt │ │ ├── doc │ │ │ ├── api │ │ │ │ ├── a00001_source.html │ │ │ │ ├── a00002_source.html │ │ │ │ ├── a00003_source.html │ │ │ │ ├── a00004_source.html │ │ │ │ ├── a00005_source.html │ │ │ │ ├── a00006_source.html │ │ │ │ ├── a00007.html │ │ │ │ ├── a00007_source.html │ │ │ │ ├── a00008.html │ │ │ │ ├── a00008_source.html │ │ │ │ ├── a00009.html │ │ │ │ ├── a00009_source.html │ │ │ │ ├── a00010.html │ │ │ │ ├── a00010_source.html │ │ │ │ ├── a00011.html │ │ │ │ ├── a00011_source.html │ │ │ │ ├── a00012.html │ │ │ │ ├── a00012_source.html │ │ │ │ ├── a00013.html │ │ │ │ ├── a00013_source.html │ │ │ │ ├── a00014.html │ │ │ │ ├── a00014_source.html │ │ │ │ ├── a00015.html │ │ │ │ ├── a00015_source.html │ │ │ │ ├── a00016.html │ │ │ │ ├── a00016_source.html │ │ │ │ ├── a00017.html │ │ │ │ ├── a00017_source.html │ │ │ │ ├── a00018.html │ │ │ │ ├── a00018_source.html │ │ │ │ ├── a00019_source.html │ │ │ │ ├── a00020_source.html │ │ │ │ ├── a00021.html │ │ │ │ ├── a00021_source.html │ │ │ │ ├── a00022.html │ │ │ │ ├── a00022_source.html │ │ │ │ ├── a00023.html │ │ │ │ ├── a00023_source.html │ │ │ │ ├── a00024.html │ │ │ │ ├── a00024_source.html │ │ │ │ ├── a00025.html │ │ │ │ ├── a00025_source.html │ │ │ │ ├── a00026.html │ │ │ │ ├── a00026_source.html │ │ │ │ ├── a00027.html │ │ │ │ ├── a00027_source.html │ │ │ │ ├── a00028.html │ │ │ │ ├── a00028_source.html │ │ │ │ ├── a00029.html │ │ │ │ ├── a00029_source.html │ │ │ │ ├── a00030.html │ │ │ │ ├── a00030_source.html │ │ │ │ ├── a00031.html │ │ │ │ ├── a00031_source.html │ │ │ │ ├── a00032.html │ │ │ │ ├── a00032_source.html │ │ │ │ ├── a00033.html │ │ │ │ ├── a00033_source.html │ │ │ │ ├── a00034.html │ │ │ │ ├── a00034_source.html │ │ │ │ ├── a00035_source.html │ │ │ │ ├── a00036.html │ │ │ │ ├── a00036_source.html │ │ │ │ ├── a00037.html │ │ │ │ ├── a00037_source.html │ │ │ │ ├── a00038.html │ │ │ │ ├── a00038_source.html │ │ │ │ ├── a00039.html │ │ │ │ ├── a00039_source.html │ │ │ │ ├── a00040.html │ │ │ │ ├── a00040_source.html │ │ │ │ ├── a00041.html │ │ │ │ ├── a00041_source.html │ │ │ │ ├── a00042.html │ │ │ │ ├── a00042_source.html │ │ │ │ ├── a00043.html │ │ │ │ ├── a00043_source.html │ │ │ │ ├── a00044.html │ │ │ │ ├── a00044_source.html │ │ │ │ ├── a00045.html │ │ │ │ ├── a00045_source.html │ │ │ │ ├── a00046.html │ │ │ │ ├── a00046_source.html │ │ │ │ ├── a00047_source.html │ │ │ │ ├── a00048.html │ │ │ │ ├── a00048_source.html │ │ │ │ ├── a00049.html │ │ │ │ ├── a00049_source.html │ │ │ │ ├── a00050.html │ │ │ │ ├── a00050_source.html │ │ │ │ ├── a00051.html │ │ │ │ ├── a00051_source.html │ │ │ │ ├── a00052.html │ │ │ │ ├── a00052_source.html │ │ │ │ ├── a00053.html │ │ │ │ ├── a00053_source.html │ │ │ │ ├── a00054.html │ │ │ │ ├── a00054_source.html │ │ │ │ ├── a00055.html │ │ │ │ ├── a00055_source.html │ │ │ │ ├── a00056.html │ │ │ │ ├── a00056_source.html │ │ │ │ ├── a00057.html │ │ │ │ ├── a00057_source.html │ │ │ │ ├── a00058.html │ │ │ │ ├── a00058_source.html │ │ │ │ ├── a00059.html │ │ │ │ ├── a00059_source.html │ │ │ │ ├── a00060.html │ │ │ │ ├── a00060_source.html │ │ │ │ ├── a00061.html │ │ │ │ ├── a00061_source.html │ │ │ │ ├── a00062.html │ │ │ │ ├── a00062_source.html │ │ │ │ ├── a00063.html │ │ │ │ ├── a00063_source.html │ │ │ │ ├── a00064.html │ │ │ │ ├── a00064_source.html │ │ │ │ ├── a00065.html │ │ │ │ ├── a00065_source.html │ │ │ │ ├── a00066.html │ │ │ │ ├── a00066_source.html │ │ │ │ ├── a00067.html │ │ │ │ ├── a00067_source.html │ │ │ │ ├── a00068.html │ │ │ │ ├── a00068_source.html │ │ │ │ ├── a00069.html │ │ │ │ ├── a00069_source.html │ │ │ │ ├── a00070.html │ │ │ │ ├── a00070_source.html │ │ │ │ ├── a00071.html │ │ │ │ ├── a00071_source.html │ │ │ │ ├── a00072.html │ │ │ │ ├── a00072_source.html │ │ │ │ ├── a00073.html │ │ │ │ ├── a00073_source.html │ │ │ │ ├── a00074.html │ │ │ │ ├── a00074_source.html │ │ │ │ ├── a00075.html │ │ │ │ ├── a00075_source.html │ │ │ │ ├── a00076.html │ │ │ │ ├── a00076_source.html │ │ │ │ ├── a00077.html │ │ │ │ ├── a00077_source.html │ │ │ │ ├── a00078.html │ │ │ │ ├── a00078_source.html │ │ │ │ ├── a00079.html │ │ │ │ ├── a00079_source.html │ │ │ │ ├── a00080.html │ │ │ │ ├── a00080_source.html │ │ │ │ ├── a00081.html │ │ │ │ ├── a00081_source.html │ │ │ │ ├── a00082.html │ │ │ │ ├── a00082_source.html │ │ │ │ ├── a00083.html │ │ │ │ ├── a00083_source.html │ │ │ │ ├── a00084.html │ │ │ │ ├── a00084_source.html │ │ │ │ ├── a00085.html │ │ │ │ ├── a00085_source.html │ │ │ │ ├── a00086.html │ │ │ │ ├── a00086_source.html │ │ │ │ ├── a00087.html │ │ │ │ ├── a00087_source.html │ │ │ │ ├── a00088.html │ │ │ │ ├── a00088_source.html │ │ │ │ ├── a00089.html │ │ │ │ ├── a00089_source.html │ │ │ │ ├── a00090.html │ │ │ │ ├── a00090_source.html │ │ │ │ ├── a00091.html │ │ │ │ ├── a00091_source.html │ │ │ │ ├── a00092.html │ │ │ │ ├── a00092_source.html │ │ │ │ ├── a00093.html │ │ │ │ ├── a00093_source.html │ │ │ │ ├── a00094.html │ │ │ │ ├── a00094_source.html │ │ │ │ ├── a00095_source.html │ │ │ │ ├── a00096.html │ │ │ │ ├── a00096_source.html │ │ │ │ ├── a00097.html │ │ │ │ ├── a00097_source.html │ │ │ │ ├── a00098.html │ │ │ │ ├── a00098_source.html │ │ │ │ ├── a00099.html │ │ │ │ ├── a00099_source.html │ │ │ │ ├── a00100.html │ │ │ │ ├── a00100_source.html │ │ │ │ ├── a00101.html │ │ │ │ ├── a00101_source.html │ │ │ │ ├── a00102.html │ │ │ │ ├── a00102_source.html │ │ │ │ ├── a00103.html │ │ │ │ ├── a00103_source.html │ │ │ │ ├── a00104.html │ │ │ │ ├── a00104_source.html │ │ │ │ ├── a00105.html │ │ │ │ ├── a00105_source.html │ │ │ │ ├── a00106.html │ │ │ │ ├── a00106_source.html │ │ │ │ ├── a00107.html │ │ │ │ ├── a00107_source.html │ │ │ │ ├── a00108.html │ │ │ │ ├── a00108_source.html │ │ │ │ ├── a00109.html │ │ │ │ ├── a00109_source.html │ │ │ │ ├── a00110.html │ │ │ │ ├── a00110_source.html │ │ │ │ ├── a00111.html │ │ │ │ ├── a00111_source.html │ │ │ │ ├── a00112.html │ │ │ │ ├── a00112_source.html │ │ │ │ ├── a00113.html │ │ │ │ ├── a00113_source.html │ │ │ │ ├── a00114.html │ │ │ │ ├── a00114_source.html │ │ │ │ ├── a00115.html │ │ │ │ ├── a00115_source.html │ │ │ │ ├── a00116.html │ │ │ │ ├── a00116_source.html │ │ │ │ ├── a00117.html │ │ │ │ ├── a00117_source.html │ │ │ │ ├── a00118.html │ │ │ │ ├── a00118_source.html │ │ │ │ ├── a00119.html │ │ │ │ ├── a00119_source.html │ │ │ │ ├── a00120.html │ │ │ │ ├── a00120_source.html │ │ │ │ ├── a00121.html │ │ │ │ ├── a00121_source.html │ │ │ │ ├── a00122.html │ │ │ │ ├── a00122_source.html │ │ │ │ ├── a00123.html │ │ │ │ ├── a00123_source.html │ │ │ │ ├── a00124_source.html │ │ │ │ ├── a00125.html │ │ │ │ ├── a00125_source.html │ │ │ │ ├── a00126.html │ │ │ │ ├── a00126_source.html │ │ │ │ ├── a00127.html │ │ │ │ ├── a00127_source.html │ │ │ │ ├── a00128.html │ │ │ │ ├── a00128_source.html │ │ │ │ ├── a00129.html │ │ │ │ ├── a00129_source.html │ │ │ │ ├── a00130.html │ │ │ │ ├── a00130_source.html │ │ │ │ ├── a00131.html │ │ │ │ ├── a00131_source.html │ │ │ │ ├── a00132.html │ │ │ │ ├── a00132_source.html │ │ │ │ ├── a00133.html │ │ │ │ ├── a00133_source.html │ │ │ │ ├── a00134.html │ │ │ │ ├── a00134_source.html │ │ │ │ ├── a00135.html │ │ │ │ ├── a00135_source.html │ │ │ │ ├── a00136.html │ │ │ │ ├── a00136_source.html │ │ │ │ ├── a00137.html │ │ │ │ ├── a00137_source.html │ │ │ │ ├── a00138.html │ │ │ │ ├── a00138_source.html │ │ │ │ ├── a00139.html │ │ │ │ ├── a00139_source.html │ │ │ │ ├── a00140.html │ │ │ │ ├── a00140_source.html │ │ │ │ ├── a00141.html │ │ │ │ ├── a00141_source.html │ │ │ │ ├── a00142.html │ │ │ │ ├── a00142_source.html │ │ │ │ ├── a00143.html │ │ │ │ ├── a00143_source.html │ │ │ │ ├── a00144.html │ │ │ │ ├── a00144_source.html │ │ │ │ ├── a00145.html │ │ │ │ ├── a00145_source.html │ │ │ │ ├── a00146.html │ │ │ │ ├── a00146_source.html │ │ │ │ ├── a00147.html │ │ │ │ ├── a00147_source.html │ │ │ │ ├── a00148.html │ │ │ │ ├── a00148_source.html │ │ │ │ ├── a00149.html │ │ │ │ ├── a00149_source.html │ │ │ │ ├── a00150.html │ │ │ │ ├── a00150_source.html │ │ │ │ ├── a00151.html │ │ │ │ ├── a00151_source.html │ │ │ │ ├── a00152.html │ │ │ │ ├── a00152_source.html │ │ │ │ ├── a00153_source.html │ │ │ │ ├── a00154.html │ │ │ │ ├── a00154_source.html │ │ │ │ ├── a00155.html │ │ │ │ ├── a00155_source.html │ │ │ │ ├── a00156.html │ │ │ │ ├── a00156_source.html │ │ │ │ ├── a00157.html │ │ │ │ ├── a00157_source.html │ │ │ │ ├── a00158.html │ │ │ │ ├── a00158_source.html │ │ │ │ ├── a00159.html │ │ │ │ ├── a00159_source.html │ │ │ │ ├── a00160.html │ │ │ │ ├── a00160_source.html │ │ │ │ ├── a00161.html │ │ │ │ ├── a00161_source.html │ │ │ │ ├── a00162.html │ │ │ │ ├── a00162_source.html │ │ │ │ ├── a00163_source.html │ │ │ │ ├── a00164_source.html │ │ │ │ ├── a00165.html │ │ │ │ ├── a00165_source.html │ │ │ │ ├── a00166.html │ │ │ │ ├── a00166_source.html │ │ │ │ ├── a00167.html │ │ │ │ ├── a00167_source.html │ │ │ │ ├── a00168.html │ │ │ │ ├── a00168_source.html │ │ │ │ ├── a00169.html │ │ │ │ ├── a00169_source.html │ │ │ │ ├── a00170.html │ │ │ │ ├── a00170_source.html │ │ │ │ ├── a00171.html │ │ │ │ ├── a00171_source.html │ │ │ │ ├── a00172.html │ │ │ │ ├── a00172_source.html │ │ │ │ ├── a00173.html │ │ │ │ ├── a00173_source.html │ │ │ │ ├── a00174.html │ │ │ │ ├── a00174_source.html │ │ │ │ ├── a00175.html │ │ │ │ ├── a00175_source.html │ │ │ │ ├── a00176.html │ │ │ │ ├── a00176_source.html │ │ │ │ ├── a00177.html │ │ │ │ ├── a00177_source.html │ │ │ │ ├── a00178.html │ │ │ │ ├── a00178_source.html │ │ │ │ ├── a00179.html │ │ │ │ ├── a00179_source.html │ │ │ │ ├── a00180.html │ │ │ │ ├── a00180_source.html │ │ │ │ ├── a00181.html │ │ │ │ ├── a00181_source.html │ │ │ │ ├── a00182.html │ │ │ │ ├── a00182_source.html │ │ │ │ ├── a00183.html │ │ │ │ ├── a00183_source.html │ │ │ │ ├── a00184.html │ │ │ │ ├── a00184_source.html │ │ │ │ ├── a00185.html │ │ │ │ ├── a00185_source.html │ │ │ │ ├── a00186.html │ │ │ │ ├── a00186_source.html │ │ │ │ ├── a00187.html │ │ │ │ ├── a00187_source.html │ │ │ │ ├── a00188.html │ │ │ │ ├── a00188_source.html │ │ │ │ ├── a00189.html │ │ │ │ ├── a00189_source.html │ │ │ │ ├── a00190.html │ │ │ │ ├── a00190_source.html │ │ │ │ ├── a00191.html │ │ │ │ ├── a00191_source.html │ │ │ │ ├── a00192.html │ │ │ │ ├── a00192_source.html │ │ │ │ ├── a00193.html │ │ │ │ ├── a00193_source.html │ │ │ │ ├── a00194.html │ │ │ │ ├── a00194_source.html │ │ │ │ ├── a00195.html │ │ │ │ ├── a00195_source.html │ │ │ │ ├── a00196.html │ │ │ │ ├── a00196_source.html │ │ │ │ ├── a00197.html │ │ │ │ ├── a00197_source.html │ │ │ │ ├── a00198.html │ │ │ │ ├── a00198_source.html │ │ │ │ ├── a00199.html │ │ │ │ ├── a00199_source.html │ │ │ │ ├── a00200.html │ │ │ │ ├── a00200_source.html │ │ │ │ ├── a00201.html │ │ │ │ ├── a00201_source.html │ │ │ │ ├── a00202.html │ │ │ │ ├── a00202_source.html │ │ │ │ ├── a00203.html │ │ │ │ ├── a00203_source.html │ │ │ │ ├── a00204.html │ │ │ │ ├── a00204_source.html │ │ │ │ ├── a00205.html │ │ │ │ ├── a00205_source.html │ │ │ │ ├── a00206.html │ │ │ │ ├── a00206_source.html │ │ │ │ ├── a00207.html │ │ │ │ ├── a00207_source.html │ │ │ │ ├── a00208.html │ │ │ │ ├── a00208_source.html │ │ │ │ ├── a00209.html │ │ │ │ ├── a00209_source.html │ │ │ │ ├── a00210.html │ │ │ │ ├── a00210_source.html │ │ │ │ ├── a00211.html │ │ │ │ ├── a00211_source.html │ │ │ │ ├── a00212.html │ │ │ │ ├── a00212_source.html │ │ │ │ ├── a00213.html │ │ │ │ ├── a00213_source.html │ │ │ │ ├── a00214.html │ │ │ │ ├── a00214_source.html │ │ │ │ ├── a00215.html │ │ │ │ ├── a00215_source.html │ │ │ │ ├── a00216.html │ │ │ │ ├── a00216_source.html │ │ │ │ ├── a00217.html │ │ │ │ ├── a00217_source.html │ │ │ │ ├── a00218.html │ │ │ │ ├── a00218_source.html │ │ │ │ ├── a00219.html │ │ │ │ ├── a00219_source.html │ │ │ │ ├── a00220.html │ │ │ │ ├── a00220_source.html │ │ │ │ ├── a00221.html │ │ │ │ ├── a00221_source.html │ │ │ │ ├── a00222.html │ │ │ │ ├── a00222_source.html │ │ │ │ ├── a00223.html │ │ │ │ ├── a00223_source.html │ │ │ │ ├── a00224.html │ │ │ │ ├── a00224_source.html │ │ │ │ ├── a00225.html │ │ │ │ ├── a00225_source.html │ │ │ │ ├── a00226.html │ │ │ │ ├── a00226_source.html │ │ │ │ ├── a00227.html │ │ │ │ ├── a00227_source.html │ │ │ │ ├── a00228.html │ │ │ │ ├── a00228_source.html │ │ │ │ ├── a00229.html │ │ │ │ ├── a00229_source.html │ │ │ │ ├── a00230.html │ │ │ │ ├── a00230_source.html │ │ │ │ ├── a00231.html │ │ │ │ ├── a00231_source.html │ │ │ │ ├── a00232.html │ │ │ │ ├── a00232_source.html │ │ │ │ ├── a00233.html │ │ │ │ ├── a00233_source.html │ │ │ │ ├── a00234.html │ │ │ │ ├── a00234_source.html │ │ │ │ ├── a00235.html │ │ │ │ ├── a00235_source.html │ │ │ │ ├── a00241.html │ │ │ │ ├── a00242.html │ │ │ │ ├── a00243.html │ │ │ │ ├── a00244.html │ │ │ │ ├── a00245.html │ │ │ │ ├── a00246.html │ │ │ │ ├── a00247.html │ │ │ │ ├── a00248.html │ │ │ │ ├── a00249.html │ │ │ │ ├── a00250.html │ │ │ │ ├── a00251.html │ │ │ │ ├── a00252.html │ │ │ │ ├── a00253.html │ │ │ │ ├── a00254.html │ │ │ │ ├── a00255.html │ │ │ │ ├── a00256.html │ │ │ │ ├── a00257.html │ │ │ │ ├── a00258.html │ │ │ │ ├── a00259.html │ │ │ │ ├── a00260.html │ │ │ │ ├── a00261.html │ │ │ │ ├── a00262.html │ │ │ │ ├── a00263.html │ │ │ │ ├── a00264.html │ │ │ │ ├── a00265.html │ │ │ │ ├── a00266.html │ │ │ │ ├── a00267.html │ │ │ │ ├── a00268.html │ │ │ │ ├── a00269.html │ │ │ │ ├── a00270.html │ │ │ │ ├── a00271.html │ │ │ │ ├── a00272.html │ │ │ │ ├── a00273.html │ │ │ │ ├── a00274.html │ │ │ │ ├── a00275.html │ │ │ │ ├── a00276.html │ │ │ │ ├── a00277.html │ │ │ │ ├── a00278.html │ │ │ │ ├── a00279.html │ │ │ │ ├── a00280.html │ │ │ │ ├── a00281.html │ │ │ │ ├── a00282.html │ │ │ │ ├── a00283.html │ │ │ │ ├── a00284.html │ │ │ │ ├── a00285.html │ │ │ │ ├── a00286.html │ │ │ │ ├── a00287.html │ │ │ │ ├── a00288.html │ │ │ │ ├── a00289.html │ │ │ │ ├── a00290.html │ │ │ │ ├── a00291.html │ │ │ │ ├── a00292.html │ │ │ │ ├── a00293.html │ │ │ │ ├── a00294.html │ │ │ │ ├── a00295.html │ │ │ │ ├── a00296.html │ │ │ │ ├── a00297.html │ │ │ │ ├── a00298.html │ │ │ │ ├── a00299.html │ │ │ │ ├── a00300.html │ │ │ │ ├── a00301.html │ │ │ │ ├── a00302.html │ │ │ │ ├── a00303.html │ │ │ │ ├── a00304.html │ │ │ │ ├── a00305.html │ │ │ │ ├── a00306.html │ │ │ │ ├── a00307.html │ │ │ │ ├── a00308.html │ │ │ │ ├── a00309.html │ │ │ │ ├── a00310.html │ │ │ │ ├── a00311.html │ │ │ │ ├── a00312.html │ │ │ │ ├── a00313.html │ │ │ │ ├── a00314.html │ │ │ │ ├── a00315.html │ │ │ │ ├── a00316.html │ │ │ │ ├── a00317.html │ │ │ │ ├── a00318.html │ │ │ │ ├── a00319.html │ │ │ │ ├── a00320.html │ │ │ │ ├── a00321.html │ │ │ │ ├── a00322.html │ │ │ │ ├── a00323.html │ │ │ │ ├── a00324.html │ │ │ │ ├── a00325.html │ │ │ │ ├── a00326.html │ │ │ │ ├── a00327.html │ │ │ │ ├── a00328.html │ │ │ │ ├── a00329.html │ │ │ │ ├── a00330.html │ │ │ │ ├── a00331.html │ │ │ │ ├── a00332.html │ │ │ │ ├── a00333.html │ │ │ │ ├── a00334.html │ │ │ │ ├── a00335.html │ │ │ │ ├── a00336.html │ │ │ │ ├── a00337.html │ │ │ │ ├── a00338.html │ │ │ │ ├── a00339.html │ │ │ │ ├── a00340.html │ │ │ │ ├── a00341.html │ │ │ │ ├── a00342.html │ │ │ │ ├── a00343.html │ │ │ │ ├── a00344.html │ │ │ │ ├── a00345.html │ │ │ │ ├── a00346.html │ │ │ │ ├── a00347.html │ │ │ │ ├── a00348.html │ │ │ │ ├── a00349.html │ │ │ │ ├── a00350.html │ │ │ │ ├── a00351.html │ │ │ │ ├── a00352.html │ │ │ │ ├── a00353.html │ │ │ │ ├── a00354.html │ │ │ │ ├── a00355.html │ │ │ │ ├── a00356.html │ │ │ │ ├── a00357.html │ │ │ │ ├── a00358.html │ │ │ │ ├── a00359.html │ │ │ │ ├── a00360.html │ │ │ │ ├── a00361.html │ │ │ │ ├── a00362.html │ │ │ │ ├── a00363.html │ │ │ │ ├── a00364.html │ │ │ │ ├── a00365.html │ │ │ │ ├── a00366.html │ │ │ │ ├── a00367.html │ │ │ │ ├── a00368.html │ │ │ │ ├── a00369.html │ │ │ │ ├── a00370.html │ │ │ │ ├── a00371.html │ │ │ │ ├── a00372.html │ │ │ │ ├── a00373.html │ │ │ │ ├── a00374.html │ │ │ │ ├── arrowdown.png │ │ │ │ ├── arrowright.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── logo-mini.png │ │ │ │ ├── modules.html │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── search │ │ │ │ │ ├── all_0.html │ │ │ │ │ ├── all_0.js │ │ │ │ │ ├── all_1.html │ │ │ │ │ ├── all_1.js │ │ │ │ │ ├── all_10.html │ │ │ │ │ ├── all_10.js │ │ │ │ │ ├── all_11.html │ │ │ │ │ ├── all_11.js │ │ │ │ │ ├── all_12.html │ │ │ │ │ ├── all_12.js │ │ │ │ │ ├── all_13.html │ │ │ │ │ ├── all_13.js │ │ │ │ │ ├── all_14.html │ │ │ │ │ ├── all_14.js │ │ │ │ │ ├── all_15.html │ │ │ │ │ ├── all_15.js │ │ │ │ │ ├── all_16.html │ │ │ │ │ ├── all_16.js │ │ │ │ │ ├── all_2.html │ │ │ │ │ ├── all_2.js │ │ │ │ │ ├── all_3.html │ │ │ │ │ ├── all_3.js │ │ │ │ │ ├── all_4.html │ │ │ │ │ ├── all_4.js │ │ │ │ │ ├── all_5.html │ │ │ │ │ ├── all_5.js │ │ │ │ │ ├── all_6.html │ │ │ │ │ ├── all_6.js │ │ │ │ │ ├── all_7.html │ │ │ │ │ ├── all_7.js │ │ │ │ │ ├── all_8.html │ │ │ │ │ ├── all_8.js │ │ │ │ │ ├── all_9.html │ │ │ │ │ ├── all_9.js │ │ │ │ │ ├── all_a.html │ │ │ │ │ ├── all_a.js │ │ │ │ │ ├── all_b.html │ │ │ │ │ ├── all_b.js │ │ │ │ │ ├── all_c.html │ │ │ │ │ ├── all_c.js │ │ │ │ │ ├── all_d.html │ │ │ │ │ ├── all_d.js │ │ │ │ │ ├── all_e.html │ │ │ │ │ ├── all_e.js │ │ │ │ │ ├── all_f.html │ │ │ │ │ ├── all_f.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── files_0.html │ │ │ │ │ ├── files_0.js │ │ │ │ │ ├── files_1.html │ │ │ │ │ ├── files_1.js │ │ │ │ │ ├── files_10.html │ │ │ │ │ ├── files_10.js │ │ │ │ │ ├── files_11.html │ │ │ │ │ ├── files_11.js │ │ │ │ │ ├── files_12.html │ │ │ │ │ ├── files_12.js │ │ │ │ │ ├── files_13.html │ │ │ │ │ ├── files_13.js │ │ │ │ │ ├── files_14.html │ │ │ │ │ ├── files_14.js │ │ │ │ │ ├── files_2.html │ │ │ │ │ ├── files_2.js │ │ │ │ │ ├── files_3.html │ │ │ │ │ ├── files_3.js │ │ │ │ │ ├── files_4.html │ │ │ │ │ ├── files_4.js │ │ │ │ │ ├── files_5.html │ │ │ │ │ ├── files_5.js │ │ │ │ │ ├── files_6.html │ │ │ │ │ ├── files_6.js │ │ │ │ │ ├── files_7.html │ │ │ │ │ ├── files_7.js │ │ │ │ │ ├── files_8.html │ │ │ │ │ ├── files_8.js │ │ │ │ │ ├── files_9.html │ │ │ │ │ ├── files_9.js │ │ │ │ │ ├── files_a.html │ │ │ │ │ ├── files_a.js │ │ │ │ │ ├── files_b.html │ │ │ │ │ ├── files_b.js │ │ │ │ │ ├── files_c.html │ │ │ │ │ ├── files_c.js │ │ │ │ │ ├── files_d.html │ │ │ │ │ ├── files_d.js │ │ │ │ │ ├── files_e.html │ │ │ │ │ ├── files_e.js │ │ │ │ │ ├── files_f.html │ │ │ │ │ ├── files_f.js │ │ │ │ │ ├── functions_0.html │ │ │ │ │ ├── functions_0.js │ │ │ │ │ ├── functions_1.html │ │ │ │ │ ├── functions_1.js │ │ │ │ │ ├── functions_10.html │ │ │ │ │ ├── functions_10.js │ │ │ │ │ ├── functions_11.html │ │ │ │ │ ├── functions_11.js │ │ │ │ │ ├── functions_12.html │ │ │ │ │ ├── functions_12.js │ │ │ │ │ ├── functions_13.html │ │ │ │ │ ├── functions_13.js │ │ │ │ │ ├── functions_14.html │ │ │ │ │ ├── functions_14.js │ │ │ │ │ ├── functions_15.html │ │ │ │ │ ├── functions_15.js │ │ │ │ │ ├── functions_16.html │ │ │ │ │ ├── functions_16.js │ │ │ │ │ ├── functions_2.html │ │ │ │ │ ├── functions_2.js │ │ │ │ │ ├── functions_3.html │ │ │ │ │ ├── functions_3.js │ │ │ │ │ ├── functions_4.html │ │ │ │ │ ├── functions_4.js │ │ │ │ │ ├── functions_5.html │ │ │ │ │ ├── functions_5.js │ │ │ │ │ ├── functions_6.html │ │ │ │ │ ├── functions_6.js │ │ │ │ │ ├── functions_7.html │ │ │ │ │ ├── functions_7.js │ │ │ │ │ ├── functions_8.html │ │ │ │ │ ├── functions_8.js │ │ │ │ │ ├── functions_9.html │ │ │ │ │ ├── functions_9.js │ │ │ │ │ ├── functions_a.html │ │ │ │ │ ├── functions_a.js │ │ │ │ │ ├── functions_b.html │ │ │ │ │ ├── functions_b.js │ │ │ │ │ ├── functions_c.html │ │ │ │ │ ├── functions_c.js │ │ │ │ │ ├── functions_d.html │ │ │ │ │ ├── functions_d.js │ │ │ │ │ ├── functions_e.html │ │ │ │ │ ├── functions_e.js │ │ │ │ │ ├── functions_f.html │ │ │ │ │ ├── functions_f.js │ │ │ │ │ ├── groups_0.html │ │ │ │ │ ├── groups_0.js │ │ │ │ │ ├── groups_1.html │ │ │ │ │ ├── groups_1.js │ │ │ │ │ ├── groups_2.html │ │ │ │ │ ├── groups_2.js │ │ │ │ │ ├── groups_3.html │ │ │ │ │ ├── groups_3.js │ │ │ │ │ ├── groups_4.html │ │ │ │ │ ├── groups_4.js │ │ │ │ │ ├── groups_5.html │ │ │ │ │ ├── groups_5.js │ │ │ │ │ ├── groups_6.html │ │ │ │ │ ├── groups_6.js │ │ │ │ │ ├── groups_7.html │ │ │ │ │ ├── groups_7.js │ │ │ │ │ ├── groups_8.html │ │ │ │ │ ├── groups_8.js │ │ │ │ │ ├── groups_9.html │ │ │ │ │ ├── groups_9.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_0.html │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── searchdata.js │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ └── typedefs_d.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ │ ├── man.doxy │ │ │ ├── manual.pdf │ │ │ ├── manual │ │ │ │ ├── frontpage1.png │ │ │ │ ├── frontpage2.png │ │ │ │ ├── g-truc.png │ │ │ │ ├── logo-mini.png │ │ │ │ ├── noise-perlin1.jpg │ │ │ │ ├── noise-perlin2.jpg │ │ │ │ ├── noise-perlin3.jpg │ │ │ │ ├── noise-perlin4.png │ │ │ │ ├── noise-perlin5.png │ │ │ │ ├── noise-perlin6.png │ │ │ │ ├── noise-simplex1.jpg │ │ │ │ ├── noise-simplex2.jpg │ │ │ │ ├── noise-simplex3.jpg │ │ │ │ ├── random-ballrand.png │ │ │ │ ├── random-circularrand.png │ │ │ │ ├── random-diskrand.png │ │ │ │ ├── random-gaussrand.png │ │ │ │ ├── random-linearrand.png │ │ │ │ ├── random-sphericalrand.png │ │ │ │ ├── references-cinder.png │ │ │ │ ├── references-glsl4book.jpg │ │ │ │ ├── references-leosfortune.jpeg │ │ │ │ ├── references-leosfortune2.jpg │ │ │ │ ├── references-opencloth1.png │ │ │ │ ├── references-opencloth3.png │ │ │ │ ├── references-outerra1.jpg │ │ │ │ ├── references-outerra2.jpg │ │ │ │ ├── references-outerra3.jpg │ │ │ │ └── references-outerra4.jpg │ │ │ └── theme │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── logo-mini.png │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ └── tab_s.png │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── compute_common.hpp │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_common_simd.inl │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_integer_simd.inl │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_packing_simd.inl │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── qualifier.hpp │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ ├── type_mat2x2.inl │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ ├── type_mat2x3.inl │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ ├── type_mat2x4.inl │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ ├── type_mat3x2.inl │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ ├── type_mat3x3.inl │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ ├── type_mat3x4.inl │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ ├── type_mat4x2.inl │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ ├── type_mat4x3.inl │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ ├── type_mat4x4.inl │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ ├── type_quat.hpp │ │ │ │ ├── type_quat.inl │ │ │ │ ├── type_quat_simd.inl │ │ │ │ ├── type_vec1.hpp │ │ │ │ ├── type_vec1.inl │ │ │ │ ├── type_vec2.hpp │ │ │ │ ├── type_vec2.inl │ │ │ │ ├── type_vec3.hpp │ │ │ │ ├── type_vec3.inl │ │ │ │ ├── type_vec4.hpp │ │ │ │ ├── type_vec4.inl │ │ │ │ └── type_vec4_simd.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── ext │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ ├── matrix_common.hpp │ │ │ │ ├── matrix_common.inl │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ ├── matrix_projection.hpp │ │ │ │ ├── matrix_projection.inl │ │ │ │ ├── matrix_relational.hpp │ │ │ │ ├── matrix_relational.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── quaternion_common.hpp │ │ │ │ ├── quaternion_common.inl │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ ├── quaternion_double.hpp │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ ├── quaternion_float.hpp │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ ├── quaternion_relational.inl │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ ├── quaternion_transform.inl │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ ├── scalar_common.hpp │ │ │ │ ├── scalar_common.inl │ │ │ │ ├── scalar_constants.hpp │ │ │ │ ├── scalar_constants.inl │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ ├── scalar_integer.hpp │ │ │ │ ├── scalar_integer.inl │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ ├── scalar_ulp.inl │ │ │ │ ├── vector_bool1.hpp │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ ├── vector_bool2.hpp │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ ├── vector_bool3.hpp │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ ├── vector_bool4.hpp │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ ├── vector_common.hpp │ │ │ │ ├── vector_common.inl │ │ │ │ ├── vector_double1.hpp │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ ├── vector_double2.hpp │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ ├── vector_double3.hpp │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ ├── vector_double4.hpp │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ ├── vector_float1.hpp │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ ├── vector_float2.hpp │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ ├── vector_float3.hpp │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ ├── vector_float4.hpp │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ ├── vector_int1.hpp │ │ │ │ ├── vector_int1_precision.hpp │ │ │ │ ├── vector_int2.hpp │ │ │ │ ├── vector_int2_precision.hpp │ │ │ │ ├── vector_int3.hpp │ │ │ │ ├── vector_int3_precision.hpp │ │ │ │ ├── vector_int4.hpp │ │ │ │ ├── vector_int4_precision.hpp │ │ │ │ ├── vector_integer.hpp │ │ │ │ ├── vector_integer.inl │ │ │ │ ├── vector_relational.hpp │ │ │ │ ├── vector_relational.inl │ │ │ │ ├── vector_uint1.hpp │ │ │ │ ├── vector_uint1_precision.hpp │ │ │ │ ├── vector_uint2.hpp │ │ │ │ ├── vector_uint2_precision.hpp │ │ │ │ ├── vector_uint3.hpp │ │ │ │ ├── vector_uint3_precision.hpp │ │ │ │ ├── vector_uint4.hpp │ │ │ │ ├── vector_uint4_precision.hpp │ │ │ │ ├── vector_ulp.hpp │ │ │ │ └── vector_ulp.inl │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── bitfield.hpp │ │ │ │ ├── bitfield.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── matrix_access.hpp │ │ │ │ ├── matrix_access.inl │ │ │ │ ├── matrix_integer.hpp │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ ├── matrix_inverse.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── noise.inl │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── quaternion_simd.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── round.hpp │ │ │ │ ├── round.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── ulp.inl │ │ │ │ └── vec1.hpp │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_encoding.hpp │ │ │ │ ├── color_encoding.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── common.hpp │ │ │ │ ├── common.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── easing.hpp │ │ │ │ ├── easing.inl │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extended_min_max.hpp │ │ │ │ ├── extended_min_max.inl │ │ │ │ ├── exterior_product.hpp │ │ │ │ ├── exterior_product.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── float_notmalize.inl │ │ │ │ ├── functions.hpp │ │ │ │ ├── functions.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── intersect.hpp │ │ │ │ ├── intersect.inl │ │ │ │ ├── io.hpp │ │ │ │ ├── io.inl │ │ │ │ ├── log_base.hpp │ │ │ │ ├── log_base.inl │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ ├── matrix_decompose.inl │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ ├── matrix_operation.hpp │ │ │ │ ├── matrix_operation.inl │ │ │ │ ├── matrix_query.hpp │ │ │ │ ├── matrix_query.inl │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── norm.hpp │ │ │ │ ├── norm.inl │ │ │ │ ├── normal.hpp │ │ │ │ ├── normal.inl │ │ │ │ ├── normalize_dot.hpp │ │ │ │ ├── normalize_dot.inl │ │ │ │ ├── number_precision.hpp │ │ │ │ ├── number_precision.inl │ │ │ │ ├── optimum_pow.hpp │ │ │ │ ├── optimum_pow.inl │ │ │ │ ├── orthonormalize.hpp │ │ │ │ ├── orthonormalize.inl │ │ │ │ ├── perpendicular.hpp │ │ │ │ ├── perpendicular.inl │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ ├── polar_coordinates.inl │ │ │ │ ├── projection.hpp │ │ │ │ ├── projection.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── range.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── texture.hpp │ │ │ │ ├── texture.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_aligned.inl │ │ │ │ ├── type_trait.hpp │ │ │ │ ├── type_trait.inl │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ ├── vector_angle.hpp │ │ │ │ ├── vector_angle.inl │ │ │ │ ├── vector_query.hpp │ │ │ │ ├── vector_query.inl │ │ │ │ ├── wrap.hpp │ │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── simd │ │ │ │ ├── common.h │ │ │ │ ├── exponential.h │ │ │ │ ├── geometric.h │ │ │ │ ├── integer.h │ │ │ │ ├── matrix.h │ │ │ │ ├── neon.h │ │ │ │ ├── packing.h │ │ │ │ ├── platform.h │ │ │ │ ├── trigonometric.h │ │ │ │ └── vector_relational.h │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ └── vector_relational.hpp │ │ ├── manual.md │ │ ├── readme.md │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── bug │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ ├── core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ ├── core_force_inline.cpp │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ ├── core_force_pure.cpp │ │ │ │ ├── core_force_quat_wxyz.cpp │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ ├── core_func_common.cpp │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ ├── core_func_integer.cpp │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ ├── core_func_noise.cpp │ │ │ │ ├── core_func_packing.cpp │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ ├── core_setup_message.cpp │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ ├── core_type_cast.cpp │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ ├── core_type_int.cpp │ │ │ │ ├── core_type_length.cpp │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ └── core_type_vec4.cpp │ │ │ ├── ext │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ ├── ext_vec1.cpp │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ └── ext_vector_ulp.cpp │ │ │ ├── glm.cppcheck │ │ │ ├── gtc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ ├── gtc_constants.cpp │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ ├── gtc_integer.cpp │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ ├── gtc_noise.cpp │ │ │ │ ├── gtc_packing.cpp │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ ├── gtc_random.cpp │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ ├── gtc_round.cpp │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ └── gtc_vec1.cpp │ │ │ ├── gtx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gtx.cpp │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ ├── gtx_common.cpp │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ ├── gtx_easing.cpp │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ ├── gtx_extend.cpp │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ ├── gtx_functions.cpp │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ ├── gtx_integer.cpp │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ ├── gtx_io.cpp │ │ │ │ ├── gtx_load.cpp │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ ├── gtx_norm.cpp │ │ │ │ ├── gtx_normal.cpp │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ ├── gtx_projection.cpp │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ ├── gtx_random.cpp │ │ │ │ ├── gtx_range.cpp │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ ├── gtx_spline.cpp │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ ├── gtx_texture.cpp │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ └── gtx_wrap.cpp │ │ │ └── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ └── util │ │ │ ├── autoexp.txt │ │ │ ├── autoexp.vc2010.dat │ │ │ ├── glm.natvis │ │ │ └── usertype.dat │ ├── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-matchers.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ ├── internal │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-matchers.cc │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── roboto_medium.h │ ├── implot │ │ ├── LICENSE │ │ ├── implot.cpp │ │ ├── implot.h │ │ ├── implot_internal.h │ │ └── implot_items.cpp │ ├── json │ │ └── json.hpp │ ├── libelf │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── elf │ │ │ │ ├── elf.h │ │ │ │ ├── elf32.h │ │ │ │ ├── elf64.h │ │ │ │ └── exec_elf.h │ │ └── src │ │ │ ├── elf.c │ │ │ ├── elf32.c │ │ │ └── elf64.c │ ├── libretro-common │ │ ├── compat │ │ │ ├── compat_strcasestr.c │ │ │ ├── compat_strl.c │ │ │ └── fopen_utf8.c │ │ ├── encodings │ │ │ └── encoding_utf.c │ │ ├── file │ │ │ ├── file_path.c │ │ │ └── retro_dirent.c │ │ ├── glsm │ │ │ └── glsm.c │ │ ├── glsym │ │ │ ├── README.md │ │ │ ├── glgen.py │ │ │ ├── glsym_es2.c │ │ │ ├── glsym_es3.c │ │ │ ├── glsym_gl.c │ │ │ ├── rglgen.c │ │ │ ├── rglgen.py │ │ │ └── xglgen.py │ │ ├── include │ │ │ ├── boolean.h │ │ │ ├── cdrom │ │ │ │ └── cdrom.h │ │ │ ├── clamping.h │ │ │ ├── compat │ │ │ │ ├── apple_compat.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fopen_utf8.h │ │ │ │ ├── getopt.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── intrinsics.h │ │ │ │ ├── msvc.h │ │ │ │ ├── msvc │ │ │ │ │ └── stdint.h │ │ │ │ ├── posix_string.h │ │ │ │ ├── strcasestr.h │ │ │ │ ├── strl.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zconf.h.in │ │ │ │ │ ├── zlib.h │ │ │ │ │ └── zutil.h │ │ │ │ └── zutil.h │ │ │ ├── encodings │ │ │ │ ├── utf.h │ │ │ │ └── win32.h │ │ │ ├── file │ │ │ │ └── file_path.h │ │ │ ├── glsm │ │ │ │ ├── glsm.h │ │ │ │ └── glsmsym.h │ │ │ ├── glsym │ │ │ │ ├── glsym.h │ │ │ │ ├── glsym_es2.h │ │ │ │ ├── glsym_es3.h │ │ │ │ ├── glsym_gl.h │ │ │ │ ├── rglgen.h │ │ │ │ ├── rglgen_headers.h │ │ │ │ └── switch │ │ │ │ │ ├── nx_gl.h │ │ │ │ │ └── nx_glsym.h │ │ │ ├── libchdr │ │ │ │ ├── bitstream.h │ │ │ │ ├── cdrom.h │ │ │ │ ├── chd.h │ │ │ │ ├── coretypes.h │ │ │ │ ├── flac.h │ │ │ │ ├── huffman.h │ │ │ │ ├── libchdr_zlib.h │ │ │ │ ├── lzma.h │ │ │ │ └── minmax.h │ │ │ ├── libco.h │ │ │ ├── libretro.h │ │ │ ├── libretro_d3d.h │ │ │ ├── libretro_dspfilter.h │ │ │ ├── libretro_gskit_ps2.h │ │ │ ├── libretro_vulkan.h │ │ │ ├── memalign.h │ │ │ ├── memmap.h │ │ │ ├── retro_assert.h │ │ │ ├── retro_common.h │ │ │ ├── retro_common_api.h │ │ │ ├── retro_dirent.h │ │ │ ├── retro_endianness.h │ │ │ ├── retro_environment.h │ │ │ ├── retro_inline.h │ │ │ ├── retro_math.h │ │ │ ├── retro_miscellaneous.h │ │ │ ├── retro_stat.h │ │ │ ├── retro_timers.h │ │ │ ├── rthreads │ │ │ │ ├── async_job.h │ │ │ │ ├── rsemaphore.h │ │ │ │ └── rthreads.h │ │ │ ├── string │ │ │ │ └── stdstring.h │ │ │ ├── vfs │ │ │ │ ├── vfs.h │ │ │ │ ├── vfs_implementation.h │ │ │ │ └── vfs_implementation_cdrom.h │ │ │ └── vulkan │ │ │ │ └── vulkan_symbol_wrapper.h │ │ ├── memmap │ │ │ └── memalign.c │ │ ├── string │ │ │ └── stdstring.c │ │ ├── vfs │ │ │ └── vfs_implementation.c │ │ └── vulkan │ │ │ └── vulkan_symbol_wrapper.c │ ├── lzma │ │ ├── 7z.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── Precomp.h │ │ ├── Sort.c │ │ └── Sort.h │ ├── md5 │ │ ├── md5.cpp │ │ └── md5.h │ ├── miniupnpc │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Changelog.txt │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── Makefile.mingw │ │ ├── README │ │ ├── VERSION │ │ ├── apiversions.txt │ │ ├── external-ip.sh │ │ ├── include │ │ │ ├── igd_desc_parse.h │ │ │ ├── miniupnpc.h │ │ │ ├── miniupnpc_declspec.h │ │ │ ├── miniupnpctypes.h │ │ │ ├── miniwget.h │ │ │ ├── portlistingparse.h │ │ │ ├── upnpcommands.h │ │ │ ├── upnpdev.h │ │ │ ├── upnperrors.h │ │ │ └── upnpreplyparse.h │ │ ├── java │ │ │ ├── .gitignore │ │ │ ├── JavaBridgeTest.java │ │ │ ├── testjava.bat │ │ │ └── testjava.sh │ │ ├── man3 │ │ │ └── miniupnpc.3 │ │ ├── mingw32make.bat │ │ ├── miniupnpc-config.cmake │ │ ├── miniupnpc.def │ │ ├── miniupnpc.rc │ │ ├── miniupnpcstrings.h.cmake │ │ ├── miniupnpcstrings.h.in │ │ ├── msvc │ │ │ ├── .gitignore │ │ │ ├── genminiupnpcstrings.vbs │ │ │ ├── miniupnpc.sln │ │ │ ├── miniupnpc.vcproj │ │ │ ├── miniupnpc.vcxproj │ │ │ ├── miniupnpc.vcxproj.filters │ │ │ ├── miniupnpc_vs2010.sln │ │ │ ├── miniupnpc_vs2010.vcxproj │ │ │ ├── miniupnpc_vs2010.vcxproj.filters │ │ │ ├── miniupnpc_vs2015.sln │ │ │ ├── upnpc-static.vcproj │ │ │ ├── upnpc-static.vcxproj │ │ │ ├── upnpc-static.vcxproj.filters │ │ │ └── upnpc-static_vs2010.vcxproj │ │ ├── pymoduletest.py │ │ ├── pymoduletest3.py │ │ ├── setup.py │ │ ├── setupmingw32.py │ │ ├── src │ │ │ ├── addr_is_reserved.c │ │ │ ├── addr_is_reserved.h │ │ │ ├── codelength.h │ │ │ ├── connecthostport.c │ │ │ ├── connecthostport.h │ │ │ ├── igd_desc_parse.c │ │ │ ├── listdevices.c │ │ │ ├── minihttptestserver.c │ │ │ ├── minisoap.c │ │ │ ├── minisoap.h │ │ │ ├── minissdpc.c │ │ │ ├── minissdpc.h │ │ │ ├── miniupnpc.c │ │ │ ├── miniupnpc_socketdef.h │ │ │ ├── miniupnpcmodule.c │ │ │ ├── miniwget.c │ │ │ ├── miniwget_private.h │ │ │ ├── minixml.c │ │ │ ├── minixml.h │ │ │ ├── minixmlvalid.c │ │ │ ├── portlistingparse.c │ │ │ ├── receivedata.c │ │ │ ├── receivedata.h │ │ │ ├── testaddr_is_reserved.c │ │ │ ├── testigddescparse.c │ │ │ ├── testminiwget.c │ │ │ ├── testminixml.c │ │ │ ├── testportlistingparse.c │ │ │ ├── testupnpreplyparse.c │ │ │ ├── upnpc.c │ │ │ ├── upnpcommands.c │ │ │ ├── upnpdev.c │ │ │ ├── upnperrors.c │ │ │ ├── upnpreplyparse.c │ │ │ └── win32_snprintf.h │ │ ├── testdesc │ │ │ ├── linksys_WAG200G_desc.values │ │ │ ├── linksys_WAG200G_desc.xml │ │ │ ├── new_LiveBox_desc.values │ │ │ └── new_LiveBox_desc.xml │ │ ├── testminiwget.sh │ │ ├── testreplyparse │ │ │ ├── DeletePortMapping.namevalue │ │ │ ├── DeletePortMapping.xml │ │ │ ├── GetExternalIPAddress.namevalue │ │ │ ├── GetExternalIPAddress.xml │ │ │ ├── GetSpecificPortMappingEntryReq.namevalue │ │ │ ├── GetSpecificPortMappingEntryReq.xml │ │ │ ├── GetSpecificPortMappingEntryResp.namevalue │ │ │ ├── GetSpecificPortMappingEntryResp.xml │ │ │ ├── SetDefaultConnectionService.namevalue │ │ │ ├── SetDefaultConnectionService.xml │ │ │ └── readme.txt │ │ ├── testupnpigd.py │ │ ├── testupnpreplyparse.sh │ │ ├── updateminiupnpcstrings.sh │ │ └── wingenminiupnpcstrings.c │ ├── nowide │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile.in │ │ ├── README.md │ │ ├── contrib │ │ │ ├── CMake │ │ │ │ └── modules │ │ │ │ │ └── FindHHC.cmake │ │ │ └── MSVC │ │ │ │ ├── NoWide-Android.vcxproj │ │ │ │ ├── NoWide-Android.vcxproj.filters │ │ │ │ ├── NoWide-Windows.vcxproj │ │ │ │ ├── NoWide-Windows.vcxproj.filters │ │ │ │ └── NoWide.sln │ │ ├── include │ │ │ └── nowide │ │ │ │ ├── args.hpp │ │ │ │ ├── cenv.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── cstdio.hpp │ │ │ │ ├── cstdlib.hpp │ │ │ │ ├── encoding_errors.hpp │ │ │ │ ├── encoding_utf.hpp │ │ │ │ ├── filebuf.hpp │ │ │ │ ├── fstream.hpp │ │ │ │ ├── iostream.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── stackstring.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── utf.hpp │ │ │ │ └── windows.hpp │ │ ├── src │ │ │ └── iostream.cpp │ │ └── test │ │ │ ├── test.hpp │ │ │ ├── test_convert.cpp │ │ │ ├── test_env.cpp │ │ │ ├── test_fstream.cpp │ │ │ ├── test_iostream.cpp │ │ │ ├── test_stdio.cpp │ │ │ └── test_system.cpp │ ├── picotcp │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── LICENSE.GPLv2 │ │ ├── LICENSE.GPLv3 │ │ ├── MODTREE │ │ ├── Makefile │ │ ├── README.md │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── pico_arm9.h │ │ │ │ ├── pico_atsamd21j18.h │ │ │ │ ├── pico_avr.h │ │ │ │ ├── pico_cortex_m.h │ │ │ │ ├── pico_dos.h │ │ │ │ ├── pico_esp8266.h │ │ │ │ ├── pico_generic_gcc.h │ │ │ │ ├── pico_linux.h │ │ │ │ ├── pico_mbed.h │ │ │ │ ├── pico_msp430.h │ │ │ │ ├── pico_msvc.h │ │ │ │ ├── pico_none.h │ │ │ │ ├── pico_pic24.h │ │ │ │ ├── pico_pic32.h │ │ │ │ └── pico_posix.h │ │ │ ├── heap.h │ │ │ ├── pico_addressing.h │ │ │ ├── pico_config.h │ │ │ ├── pico_constants.h │ │ │ ├── pico_defines.h │ │ │ ├── pico_defines_msvc.h │ │ │ ├── pico_device.h │ │ │ ├── pico_eth.h │ │ │ ├── pico_frame.h │ │ │ ├── pico_md5.h │ │ │ ├── pico_module_eth.h │ │ │ ├── pico_protocol.h │ │ │ ├── pico_queue.h │ │ │ ├── pico_socket.h │ │ │ ├── pico_socket_multicast.h │ │ │ ├── pico_stack.h │ │ │ └── pico_tree.h │ │ ├── mkdeps.sh │ │ ├── modules │ │ │ ├── pico_6lowpan.h │ │ │ ├── pico_6lowpan_ll.h │ │ │ ├── pico_802154.h │ │ │ ├── pico_aodv.h │ │ │ ├── pico_arp.c │ │ │ ├── pico_arp.h │ │ │ ├── pico_dev_ipc.h │ │ │ ├── pico_dev_null.h │ │ │ ├── pico_dev_ppp.c │ │ │ ├── pico_dev_ppp.h │ │ │ ├── pico_dhcp_client.h │ │ │ ├── pico_dhcp_common.c │ │ │ ├── pico_dhcp_common.h │ │ │ ├── pico_dhcp_server.c │ │ │ ├── pico_dhcp_server.h │ │ │ ├── pico_dns_client.c │ │ │ ├── pico_dns_client.h │ │ │ ├── pico_dns_common.c │ │ │ ├── pico_dns_common.h │ │ │ ├── pico_ethernet.c │ │ │ ├── pico_ethernet.h │ │ │ ├── pico_fragments.c │ │ │ ├── pico_fragments.h │ │ │ ├── pico_icmp4.c │ │ │ ├── pico_icmp4.h │ │ │ ├── pico_icmp6.h │ │ │ ├── pico_igmp.h │ │ │ ├── pico_ipfilter.h │ │ │ ├── pico_ipv4.c │ │ │ ├── pico_ipv4.h │ │ │ ├── pico_ipv6.h │ │ │ ├── pico_ipv6_nd.h │ │ │ ├── pico_mcast.h │ │ │ ├── pico_mld.h │ │ │ ├── pico_mm.h │ │ │ ├── pico_nat.h │ │ │ ├── pico_olsr.h │ │ │ ├── pico_socket_tcp.c │ │ │ ├── pico_socket_tcp.h │ │ │ ├── pico_socket_udp.c │ │ │ ├── pico_socket_udp.h │ │ │ ├── pico_strings.c │ │ │ ├── pico_strings.h │ │ │ ├── pico_tcp.c │ │ │ ├── pico_tcp.h │ │ │ ├── pico_udp.c │ │ │ └── pico_udp.h │ │ ├── rules │ │ │ ├── crc.mk │ │ │ ├── debug.mk │ │ │ ├── dhcp_client.mk │ │ │ ├── dhcp_server.mk │ │ │ ├── dns_client.mk │ │ │ ├── eth.mk │ │ │ ├── icmp4.mk │ │ │ ├── ipv4.mk │ │ │ ├── ipv4frag.mk │ │ │ ├── ppp.mk │ │ │ ├── tap.mk │ │ │ ├── tcp.mk │ │ │ ├── tun.mk │ │ │ └── udp.mk │ │ └── stack │ │ │ ├── pico_device.c │ │ │ ├── pico_frame.c │ │ │ ├── pico_md5.c │ │ │ ├── pico_protocol.c │ │ │ ├── pico_socket.c │ │ │ ├── pico_socket_multicast.c │ │ │ ├── pico_stack.c │ │ │ └── pico_tree.c │ ├── stb │ │ ├── stb_image.h │ │ └── stb_image_write.h │ ├── vixl │ │ ├── aarch32 │ │ │ ├── assembler-aarch32.cc │ │ │ ├── assembler-aarch32.h │ │ │ ├── constants-aarch32.cc │ │ │ ├── constants-aarch32.h │ │ │ ├── disasm-aarch32.cc │ │ │ ├── disasm-aarch32.h │ │ │ ├── instructions-aarch32.cc │ │ │ ├── instructions-aarch32.h │ │ │ ├── location-aarch32.cc │ │ │ ├── location-aarch32.h │ │ │ ├── macro-assembler-aarch32.cc │ │ │ ├── macro-assembler-aarch32.h │ │ │ ├── operands-aarch32.cc │ │ │ └── operands-aarch32.h │ │ ├── aarch64 │ │ │ ├── abi-aarch64.h │ │ │ ├── assembler-aarch64.cc │ │ │ ├── assembler-aarch64.h │ │ │ ├── constants-aarch64.h │ │ │ ├── cpu-aarch64.cc │ │ │ ├── cpu-aarch64.h │ │ │ ├── cpu-features-auditor-aarch64.cc │ │ │ ├── cpu-features-auditor-aarch64.h │ │ │ ├── decoder-aarch64.cc │ │ │ ├── decoder-aarch64.h │ │ │ ├── disasm-aarch64.cc │ │ │ ├── disasm-aarch64.h │ │ │ ├── instructions-aarch64.cc │ │ │ ├── instructions-aarch64.h │ │ │ ├── instrument-aarch64.cc │ │ │ ├── instrument-aarch64.h │ │ │ ├── logic-aarch64.cc │ │ │ ├── macro-assembler-aarch64.cc │ │ │ ├── macro-assembler-aarch64.h │ │ │ ├── operands-aarch64.cc │ │ │ ├── operands-aarch64.h │ │ │ ├── pointer-auth-aarch64.cc │ │ │ ├── simulator-aarch64.cc │ │ │ ├── simulator-aarch64.h │ │ │ └── simulator-constants-aarch64.h │ │ ├── assembler-base-vixl.h │ │ ├── code-buffer-vixl.cc │ │ ├── code-buffer-vixl.h │ │ ├── code-generation-scopes-vixl.h │ │ ├── compiler-intrinsics-vixl.cc │ │ ├── compiler-intrinsics-vixl.h │ │ ├── cpu-features.cc │ │ ├── cpu-features.h │ │ ├── globals-vixl.h │ │ ├── invalset-vixl.h │ │ ├── macro-assembler-interface.h │ │ ├── platform-vixl.h │ │ ├── pool-manager-impl.h │ │ ├── pool-manager.h │ │ ├── utils-vixl.cc │ │ └── utils-vixl.h │ ├── xbrz │ │ ├── Changelog.txt │ │ ├── License.txt │ │ ├── xbrz.cpp │ │ ├── xbrz.h │ │ ├── xbrz_config.h │ │ └── xbrz_tools.h │ ├── xbyak │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── main.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ ├── cmake │ │ │ └── config.cmake.in │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── avx_type.hpp │ │ │ ├── b2hex.cpp │ │ │ ├── gen_avx512.cpp │ │ │ ├── gen_code.cpp │ │ │ ├── sortline.cpp │ │ │ └── update.bat │ │ ├── readme.md │ │ ├── readme.txt │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── bf.cpp │ │ │ ├── bf.vcxproj │ │ │ ├── calc.cpp │ │ │ ├── calc.vcxproj │ │ │ ├── calc2.cpp │ │ │ ├── echo.bf │ │ │ ├── fizzbuzz.bf │ │ │ ├── hello.bf │ │ │ ├── jmp_table.cpp │ │ │ ├── memfunc.cpp │ │ │ ├── profiler.cpp │ │ │ ├── protect-re.cpp │ │ │ ├── quantize.cpp │ │ │ ├── quantize.vcxproj │ │ │ ├── stackframe.cpp │ │ │ ├── static_buf.cpp │ │ │ ├── test0.cpp │ │ │ ├── test0.vcxproj │ │ │ ├── test_util.cpp │ │ │ ├── test_util.vcxproj │ │ │ ├── toyvm.cpp │ │ │ └── toyvm.vcxproj │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── a.bat │ │ │ ├── address.cpp │ │ │ ├── bad_address.cpp │ │ │ ├── cvt_test.cpp │ │ │ ├── cybozu │ │ │ │ ├── inttype.hpp │ │ │ │ └── test.hpp │ │ │ ├── jmp.cpp │ │ │ ├── jmp.sln │ │ │ ├── jmp.vcproj │ │ │ ├── lib.h │ │ │ ├── lib_min.cpp │ │ │ ├── lib_run.cpp │ │ │ ├── lib_test.cpp │ │ │ ├── make_512.cpp │ │ │ ├── make_nm.cpp │ │ │ ├── misc.cpp │ │ │ ├── mprotect_test.cpp │ │ │ ├── nm_frame.cpp │ │ │ ├── noexception.cpp │ │ │ ├── normalize_prefix.cpp │ │ │ ├── readme.txt │ │ │ ├── rip-label-imm.cpp │ │ │ ├── set_opt.bat │ │ │ ├── sf_test.cpp │ │ │ ├── state.pptx │ │ │ ├── test_address.bat │ │ │ ├── test_address.sh │ │ │ ├── test_all.bat │ │ │ ├── test_avx.bat │ │ │ ├── test_avx.sh │ │ │ ├── test_avx512.bat │ │ │ ├── test_avx512.sh │ │ │ ├── test_avx_all.bat │ │ │ ├── test_jmp.bat │ │ │ ├── test_misc.bat │ │ │ ├── test_mmx.cpp │ │ │ ├── test_nm.bat │ │ │ ├── test_nm.sh │ │ │ └── test_nm_all.bat │ │ ├── xbyak.sln │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_bin2hex.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ └── xxHash │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cmake_unofficial │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── xxHashConfig.cmake.in │ │ ├── doc │ │ ├── README.md │ │ └── xxhash_spec.md │ │ ├── libxxhash.pc.in │ │ ├── tests │ │ ├── Makefile │ │ ├── bench │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── benchHash.c │ │ │ ├── benchHash.h │ │ │ ├── benchfn.c │ │ │ ├── benchfn.h │ │ │ ├── bhDisplay.c │ │ │ ├── bhDisplay.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── timefn.c │ │ │ └── timefn.h │ │ ├── collisions │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allcodecs │ │ │ │ ├── README.md │ │ │ │ ├── dummy.c │ │ │ │ └── dummy.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── sort.cc │ │ │ ├── sort.hh │ │ │ ├── threading.c │ │ │ └── threading.h │ │ ├── generate_unicode_test.c │ │ └── multiInclude.c │ │ ├── xxh3.h │ │ ├── xxhash.c │ │ ├── xxhash.h │ │ ├── xxhsum.1 │ │ ├── xxhsum.1.md │ │ └── xxhsum.c ├── dojo │ ├── AsyncTcpServer.cpp │ ├── AsyncTcpServer.hpp │ ├── DojoFile.cpp │ ├── DojoFile.hpp │ ├── DojoGui.cpp │ ├── DojoGui.hpp │ ├── DojoLobby.cpp │ ├── DojoLobby.hpp │ ├── DojoSession.cpp │ ├── DojoSession.hpp │ ├── EmulatorHooks.cpp │ ├── IconsFontAwesome6.h │ ├── LobbyClient.cpp │ ├── LobbyClient.hpp │ ├── MessageReader.hpp │ ├── MessageWriter.hpp │ ├── RelayClient.cpp │ ├── RelayClient.hpp │ ├── UDP.hpp │ ├── UDPClient.cpp │ ├── deps │ │ ├── Base64.h │ │ ├── StringFix │ │ │ ├── StringFix.cpp │ │ │ └── StringFix.h │ │ ├── asio-1.22.0 │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── LICENSE_1_0.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── doc │ │ │ │ ├── asio.png │ │ │ │ ├── asio │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── cpp03_examples.html │ │ │ │ │ │ ├── cpp11_examples.html │ │ │ │ │ │ ├── cpp14_examples.html │ │ │ │ │ │ ├── cpp17_examples.html │ │ │ │ │ │ └── cpp20_examples.html │ │ │ │ │ ├── history.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── net_ts.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── core.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── allocation.html │ │ │ │ │ │ │ ├── async.html │ │ │ │ │ │ │ ├── basics.html │ │ │ │ │ │ │ ├── buffers.html │ │ │ │ │ │ │ ├── cancellation.html │ │ │ │ │ │ │ ├── concurrency_hint.html │ │ │ │ │ │ │ ├── coro.html │ │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ │ ├── cpp20_coroutines.html │ │ │ │ │ │ │ ├── handler_tracking.html │ │ │ │ │ │ │ ├── line_based.html │ │ │ │ │ │ │ ├── reactor.html │ │ │ │ │ │ │ ├── spawn.html │ │ │ │ │ │ │ ├── strands.html │ │ │ │ │ │ │ ├── streams.html │ │ │ │ │ │ │ └── threads.html │ │ │ │ │ │ ├── cpp2011.html │ │ │ │ │ │ ├── cpp2011 │ │ │ │ │ │ │ ├── array.html │ │ │ │ │ │ │ ├── atomic.html │ │ │ │ │ │ │ ├── chrono.html │ │ │ │ │ │ │ ├── futures.html │ │ │ │ │ │ │ ├── move_handlers.html │ │ │ │ │ │ │ ├── move_objects.html │ │ │ │ │ │ │ ├── shared_ptr.html │ │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ │ └── variadic.html │ │ │ │ │ │ ├── implementation.html │ │ │ │ │ │ ├── networking.html │ │ │ │ │ │ ├── networking │ │ │ │ │ │ │ ├── bsd_sockets.html │ │ │ │ │ │ │ ├── iostreams.html │ │ │ │ │ │ │ ├── other_protocols.html │ │ │ │ │ │ │ └── protocols.html │ │ │ │ │ │ ├── posix.html │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── fork.html │ │ │ │ │ │ │ ├── local.html │ │ │ │ │ │ │ └── stream_descriptor.html │ │ │ │ │ │ ├── rationale.html │ │ │ │ │ │ ├── serial_ports.html │ │ │ │ │ │ ├── signals.html │ │ │ │ │ │ ├── ssl.html │ │ │ │ │ │ ├── timers.html │ │ │ │ │ │ ├── windows.html │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ ├── object_handle.html │ │ │ │ │ │ │ ├── random_access_handle.html │ │ │ │ │ │ │ └── stream_handle.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── AcceptHandler.html │ │ │ │ │ │ ├── AcceptableProtocol.html │ │ │ │ │ │ ├── AsyncRandomAccessReadDevice.html │ │ │ │ │ │ ├── AsyncRandomAccessWriteDevice.html │ │ │ │ │ │ ├── AsyncReadStream.html │ │ │ │ │ │ ├── AsyncWriteStream.html │ │ │ │ │ │ ├── BufferedHandshakeHandler.html │ │ │ │ │ │ ├── CancellationHandler.html │ │ │ │ │ │ ├── CancellationSlot.html │ │ │ │ │ │ ├── CompletionCondition.html │ │ │ │ │ │ ├── CompletionHandler.html │ │ │ │ │ │ ├── ConnectCondition.html │ │ │ │ │ │ ├── ConnectHandler.html │ │ │ │ │ │ ├── ConstBufferSequence.html │ │ │ │ │ │ ├── DynamicBuffer.html │ │ │ │ │ │ ├── DynamicBuffer_v1.html │ │ │ │ │ │ ├── DynamicBuffer_v2.html │ │ │ │ │ │ ├── Endpoint.html │ │ │ │ │ │ ├── EndpointSequence.html │ │ │ │ │ │ ├── ExecutionContext.html │ │ │ │ │ │ ├── Executor1.html │ │ │ │ │ │ ├── GettableSerialPortOption.html │ │ │ │ │ │ ├── GettableSocketOption.html │ │ │ │ │ │ ├── Handler.html │ │ │ │ │ │ ├── HandshakeHandler.html │ │ │ │ │ │ ├── InternetProtocol.html │ │ │ │ │ │ ├── IoControlCommand.html │ │ │ │ │ │ ├── IoObjectService.html │ │ │ │ │ │ ├── IteratorConnectHandler.html │ │ │ │ │ │ ├── LegacyCompletionHandler.html │ │ │ │ │ │ ├── MoveAcceptHandler.html │ │ │ │ │ │ ├── MutableBufferSequence.html │ │ │ │ │ │ ├── OperationState.html │ │ │ │ │ │ ├── ProtoAllocator.html │ │ │ │ │ │ ├── Protocol.html │ │ │ │ │ │ ├── RangeConnectHandler.html │ │ │ │ │ │ ├── ReadHandler.html │ │ │ │ │ │ ├── Receiver.html │ │ │ │ │ │ ├── ResolveHandler.html │ │ │ │ │ │ ├── Scheduler.html │ │ │ │ │ │ ├── Sender.html │ │ │ │ │ │ ├── Service.html │ │ │ │ │ │ ├── SettableSerialPortOption.html │ │ │ │ │ │ ├── SettableSocketOption.html │ │ │ │ │ │ ├── ShutdownHandler.html │ │ │ │ │ │ ├── SignalHandler.html │ │ │ │ │ │ ├── SyncRandomAccessReadDevice.html │ │ │ │ │ │ ├── SyncRandomAccessWriteDevice.html │ │ │ │ │ │ ├── SyncReadStream.html │ │ │ │ │ │ ├── SyncWriteStream.html │ │ │ │ │ │ ├── TimeTraits.html │ │ │ │ │ │ ├── WaitHandler.html │ │ │ │ │ │ ├── WaitTraits.html │ │ │ │ │ │ ├── WriteHandler.html │ │ │ │ │ │ ├── any_io_executor.html │ │ │ │ │ │ ├── any_io_executor │ │ │ │ │ │ │ ├── _any_io_executor.html │ │ │ │ │ │ │ ├── any_io_executor.html │ │ │ │ │ │ │ ├── any_io_executor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── operator_bool.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── prefer.html │ │ │ │ │ │ │ ├── prefer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ └── overload7.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ ├── require │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── swap.html │ │ │ │ │ │ │ ├── swap │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── target.html │ │ │ │ │ │ │ ├── target │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── target_type.html │ │ │ │ │ │ ├── asio_handler_allocate.html │ │ │ │ │ │ ├── asio_handler_deallocate.html │ │ │ │ │ │ ├── asio_handler_invoke.html │ │ │ │ │ │ ├── asio_handler_invoke │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── asio_handler_is_continuation.html │ │ │ │ │ │ ├── associated_allocator.html │ │ │ │ │ │ ├── associated_allocator │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associated_allocator_lt__reference_wrapper_lt__T__gt__comma__Allocator__gt_.html │ │ │ │ │ │ ├── associated_allocator_lt__reference_wrapper_lt__T__gt__comma__Allocator__gt_ │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associated_cancellation_slot.html │ │ │ │ │ │ ├── associated_cancellation_slot │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associated_executor.html │ │ │ │ │ │ ├── associated_executor │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associated_executor_lt__reference_wrapper_lt__T__gt__comma__Executor__gt_.html │ │ │ │ │ │ ├── associated_executor_lt__reference_wrapper_lt__T__gt__comma__Executor__gt_ │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── associator.html │ │ │ │ │ │ ├── async_completion.html │ │ │ │ │ │ ├── async_completion │ │ │ │ │ │ │ ├── async_completion.html │ │ │ │ │ │ │ ├── completion_handler.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ └── result.html │ │ │ │ │ │ ├── async_compose.html │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ ├── async_connect │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── async_initiate.html │ │ │ │ │ │ ├── async_read.html │ │ │ │ │ │ ├── async_read │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ ├── async_read_at.html │ │ │ │ │ │ ├── async_read_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── async_read_until.html │ │ │ │ │ │ ├── async_read_until │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ ├── async_result │ │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── initiate.html │ │ │ │ │ │ │ └── return_type.html │ │ │ │ │ │ ├── async_result_lt__std__packaged_task_lt__Result_lp_Args_ellipsis__rp__gt__comma__Signature__gt_.html │ │ │ │ │ │ ├── async_result_lt__std__packaged_task_lt__Result_lp_Args_ellipsis__rp__gt__comma__Signature__gt_ │ │ │ │ │ │ │ ├── async_result.html │ │ │ │ │ │ │ ├── completion_handler_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ └── return_type.html │ │ │ │ │ │ ├── async_write.html │ │ │ │ │ │ ├── async_write │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ ├── async_write_at.html │ │ │ │ │ │ ├── async_write_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── asynchronous_operations.html │ │ │ │ │ │ ├── asynchronous_socket_operations.html │ │ │ │ │ │ ├── awaitable.html │ │ │ │ │ │ ├── awaitable │ │ │ │ │ │ │ ├── _awaitable.html │ │ │ │ │ │ │ ├── awaitable.html │ │ │ │ │ │ │ ├── awaitable │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── valid.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── bad_executor.html │ │ │ │ │ │ ├── bad_executor │ │ │ │ │ │ │ ├── bad_executor.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── basic_datagram_socket.html │ │ │ │ │ │ ├── basic_datagram_socket │ │ │ │ │ │ │ ├── _basic_datagram_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_receive_from.html │ │ │ │ │ │ │ ├── async_receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send_to.html │ │ │ │ │ │ │ ├── async_send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_datagram_socket.html │ │ │ │ │ │ │ ├── basic_datagram_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_from.html │ │ │ │ │ │ │ ├── receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── send_to.html │ │ │ │ │ │ │ ├── send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_datagram_socket__rebind_executor.html │ │ │ │ │ │ ├── basic_datagram_socket__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_deadline_timer.html │ │ │ │ │ │ ├── basic_deadline_timer │ │ │ │ │ │ │ ├── _basic_deadline_timer.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_deadline_timer.html │ │ │ │ │ │ │ ├── basic_deadline_timer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ └── overload7.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel_one.html │ │ │ │ │ │ │ ├── cancel_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_deadline_timer__rebind_executor.html │ │ │ │ │ │ ├── basic_deadline_timer__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_file.html │ │ │ │ │ │ ├── basic_file │ │ │ │ │ │ │ ├── _basic_file.html │ │ │ │ │ │ │ ├── append.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_file.html │ │ │ │ │ │ │ ├── basic_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── exclusive.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_only.html │ │ │ │ │ │ │ ├── read_write.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ ├── resize │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── seek_basis.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ ├── size │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_all.html │ │ │ │ │ │ │ ├── sync_all │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_data.html │ │ │ │ │ │ │ ├── sync_data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── truncate.html │ │ │ │ │ │ │ └── write_only.html │ │ │ │ │ │ ├── basic_file__rebind_executor.html │ │ │ │ │ │ ├── basic_file__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_io_object.html │ │ │ │ │ │ ├── basic_io_object │ │ │ │ │ │ │ ├── _basic_io_object.html │ │ │ │ │ │ │ ├── basic_io_object.html │ │ │ │ │ │ │ ├── basic_io_object │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_implementation.html │ │ │ │ │ │ │ ├── get_implementation │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── get_io_service.html │ │ │ │ │ │ │ ├── get_service.html │ │ │ │ │ │ │ ├── get_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── implementation_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ └── service_type.html │ │ │ │ │ │ ├── basic_random_access_file.html │ │ │ │ │ │ ├── basic_random_access_file │ │ │ │ │ │ │ ├── _basic_random_access_file.html │ │ │ │ │ │ │ ├── append.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some_at.html │ │ │ │ │ │ │ ├── async_write_some_at.html │ │ │ │ │ │ │ ├── basic_random_access_file.html │ │ │ │ │ │ │ ├── basic_random_access_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── exclusive.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_only.html │ │ │ │ │ │ │ ├── read_some_at.html │ │ │ │ │ │ │ ├── read_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_write.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ ├── resize │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── seek_basis.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ ├── size │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_all.html │ │ │ │ │ │ │ ├── sync_all │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_data.html │ │ │ │ │ │ │ ├── sync_data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── truncate.html │ │ │ │ │ │ │ ├── write_only.html │ │ │ │ │ │ │ ├── write_some_at.html │ │ │ │ │ │ │ └── write_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_random_access_file__rebind_executor.html │ │ │ │ │ │ ├── basic_random_access_file__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_raw_socket.html │ │ │ │ │ │ ├── basic_raw_socket │ │ │ │ │ │ │ ├── _basic_raw_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_receive_from.html │ │ │ │ │ │ │ ├── async_receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send_to.html │ │ │ │ │ │ │ ├── async_send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_raw_socket.html │ │ │ │ │ │ │ ├── basic_raw_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_from.html │ │ │ │ │ │ │ ├── receive_from │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── send_to.html │ │ │ │ │ │ │ ├── send_to │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_raw_socket__rebind_executor.html │ │ │ │ │ │ ├── basic_raw_socket__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_readable_pipe.html │ │ │ │ │ │ ├── basic_readable_pipe │ │ │ │ │ │ │ ├── _basic_readable_pipe.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── basic_readable_pipe.html │ │ │ │ │ │ │ ├── basic_readable_pipe │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ └── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_readable_pipe__rebind_executor.html │ │ │ │ │ │ ├── basic_readable_pipe__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_seq_packet_socket.html │ │ │ │ │ │ ├── basic_seq_packet_socket │ │ │ │ │ │ │ ├── _basic_seq_packet_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_seq_packet_socket.html │ │ │ │ │ │ │ ├── basic_seq_packet_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_seq_packet_socket__rebind_executor.html │ │ │ │ │ │ ├── basic_seq_packet_socket__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_serial_port.html │ │ │ │ │ │ ├── basic_serial_port │ │ │ │ │ │ │ ├── _basic_serial_port.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── basic_serial_port.html │ │ │ │ │ │ │ ├── basic_serial_port │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── send_break.html │ │ │ │ │ │ │ ├── send_break │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_serial_port__rebind_executor.html │ │ │ │ │ │ ├── basic_serial_port__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_signal_set.html │ │ │ │ │ │ ├── basic_signal_set │ │ │ │ │ │ │ ├── _basic_signal_set.html │ │ │ │ │ │ │ ├── add.html │ │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_signal_set.html │ │ │ │ │ │ │ ├── basic_signal_set │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ ├── clear │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── remove.html │ │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_signal_set__rebind_executor.html │ │ │ │ │ │ ├── basic_signal_set__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_socket.html │ │ │ │ │ │ ├── basic_socket │ │ │ │ │ │ │ ├── _basic_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_socket.html │ │ │ │ │ │ │ ├── basic_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_socket__rebind_executor.html │ │ │ │ │ │ ├── basic_socket__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_socket_acceptor.html │ │ │ │ │ │ ├── basic_socket_acceptor │ │ │ │ │ │ │ ├── _basic_socket_acceptor.html │ │ │ │ │ │ │ ├── accept.html │ │ │ │ │ │ │ ├── accept │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_accept.html │ │ │ │ │ │ │ ├── async_accept │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_socket_acceptor.html │ │ │ │ │ │ │ ├── basic_socket_acceptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── listen.html │ │ │ │ │ │ │ ├── listen │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── basic_socket_acceptor__rebind_executor.html │ │ │ │ │ │ ├── basic_socket_acceptor__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_socket_iostream.html │ │ │ │ │ │ ├── basic_socket_iostream │ │ │ │ │ │ │ ├── basic_socket_iostream.html │ │ │ │ │ │ │ ├── basic_socket_iostream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── error.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── rdbuf.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ └── time_type.html │ │ │ │ │ │ ├── basic_socket_streambuf.html │ │ │ │ │ │ ├── basic_socket_streambuf │ │ │ │ │ │ │ ├── _basic_socket_streambuf.html │ │ │ │ │ │ │ ├── basic_socket_streambuf.html │ │ │ │ │ │ │ ├── basic_socket_streambuf │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── error.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── overflow.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── puberror.html │ │ │ │ │ │ │ ├── setbuf.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── sync.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ └── underflow.html │ │ │ │ │ │ ├── basic_stream_file.html │ │ │ │ │ │ ├── basic_stream_file │ │ │ │ │ │ │ ├── _basic_stream_file.html │ │ │ │ │ │ │ ├── append.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── basic_stream_file.html │ │ │ │ │ │ │ ├── basic_stream_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── exclusive.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_only.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_write.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ ├── resize │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── seek.html │ │ │ │ │ │ │ ├── seek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── seek_basis.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ ├── size │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_all.html │ │ │ │ │ │ │ ├── sync_all │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── sync_data.html │ │ │ │ │ │ │ ├── sync_data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── truncate.html │ │ │ │ │ │ │ ├── write_only.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_stream_file__rebind_executor.html │ │ │ │ │ │ ├── basic_stream_file__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_stream_socket.html │ │ │ │ │ │ ├── basic_stream_socket │ │ │ │ │ │ │ ├── _basic_stream_socket.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_connect.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── async_send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── at_mark.html │ │ │ │ │ │ │ ├── at_mark │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── available.html │ │ │ │ │ │ │ ├── available │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_stream_socket.html │ │ │ │ │ │ │ ├── basic_stream_socket │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── bind.html │ │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── get_option.html │ │ │ │ │ │ │ ├── get_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── local_endpoint.html │ │ │ │ │ │ │ ├── local_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── receive.html │ │ │ │ │ │ │ ├── receive │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── remote_endpoint.html │ │ │ │ │ │ │ ├── remote_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send.html │ │ │ │ │ │ │ ├── send │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── set_option.html │ │ │ │ │ │ │ ├── set_option │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── wait_type.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_stream_socket__rebind_executor.html │ │ │ │ │ │ ├── basic_stream_socket__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_streambuf.html │ │ │ │ │ │ ├── basic_streambuf │ │ │ │ │ │ │ ├── basic_streambuf.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── overflow.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ ├── reserve.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── underflow.html │ │ │ │ │ │ ├── basic_streambuf_ref.html │ │ │ │ │ │ ├── basic_streambuf_ref │ │ │ │ │ │ │ ├── basic_streambuf_ref.html │ │ │ │ │ │ │ ├── basic_streambuf_ref │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── basic_system_executor.html │ │ │ │ │ │ ├── basic_system_executor │ │ │ │ │ │ │ ├── basic_system_executor.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── query__static.html │ │ │ │ │ │ │ ├── query__static │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ └── require │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ └── overload7.html │ │ │ │ │ │ ├── basic_waitable_timer.html │ │ │ │ │ │ ├── basic_waitable_timer │ │ │ │ │ │ │ ├── _basic_waitable_timer.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_waitable_timer.html │ │ │ │ │ │ │ ├── basic_waitable_timer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── cancel_one.html │ │ │ │ │ │ │ ├── cancel_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clock_type.html │ │ │ │ │ │ │ ├── duration.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── expires_after.html │ │ │ │ │ │ │ ├── expires_at.html │ │ │ │ │ │ │ ├── expires_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expires_from_now.html │ │ │ │ │ │ │ ├── expires_from_now │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── expiry.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── time_point.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_waitable_timer__rebind_executor.html │ │ │ │ │ │ ├── basic_waitable_timer__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_writable_pipe.html │ │ │ │ │ │ ├── basic_writable_pipe │ │ │ │ │ │ │ ├── _basic_writable_pipe.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── basic_writable_pipe.html │ │ │ │ │ │ │ ├── basic_writable_pipe │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── basic_writable_pipe__rebind_executor.html │ │ │ │ │ │ ├── basic_writable_pipe__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── basic_yield_context.html │ │ │ │ │ │ ├── basic_yield_context │ │ │ │ │ │ │ ├── basic_yield_context.html │ │ │ │ │ │ │ ├── basic_yield_context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── callee_type.html │ │ │ │ │ │ │ ├── caller_type.html │ │ │ │ │ │ │ └── operator_lb__rb_.html │ │ │ │ │ │ ├── bind_cancellation_slot.html │ │ │ │ │ │ ├── bind_executor.html │ │ │ │ │ │ ├── bind_executor │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer.html │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload17.html │ │ │ │ │ │ │ ├── overload18.html │ │ │ │ │ │ │ ├── overload19.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload20.html │ │ │ │ │ │ │ ├── overload21.html │ │ │ │ │ │ │ ├── overload22.html │ │ │ │ │ │ │ ├── overload23.html │ │ │ │ │ │ │ ├── overload24.html │ │ │ │ │ │ │ ├── overload25.html │ │ │ │ │ │ │ ├── overload26.html │ │ │ │ │ │ │ ├── overload27.html │ │ │ │ │ │ │ ├── overload28.html │ │ │ │ │ │ │ ├── overload29.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload30.html │ │ │ │ │ │ │ ├── overload31.html │ │ │ │ │ │ │ ├── overload32.html │ │ │ │ │ │ │ ├── overload33.html │ │ │ │ │ │ │ ├── overload34.html │ │ │ │ │ │ │ ├── overload35.html │ │ │ │ │ │ │ ├── overload36.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── buffer_cast.html │ │ │ │ │ │ ├── buffer_cast │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer_copy.html │ │ │ │ │ │ ├── buffer_copy │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffer_registration.html │ │ │ │ │ │ ├── buffer_registration │ │ │ │ │ │ │ ├── _buffer_registration.html │ │ │ │ │ │ │ ├── allocator_type.html │ │ │ │ │ │ │ ├── at.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── buffer_registration.html │ │ │ │ │ │ │ ├── buffer_registration │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── cbegin.html │ │ │ │ │ │ │ ├── cend.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_lb__rb_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── buffer_sequence_begin.html │ │ │ │ │ │ ├── buffer_sequence_begin │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── buffer_sequence_end.html │ │ │ │ │ │ ├── buffer_sequence_end │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── buffer_size.html │ │ │ │ │ │ ├── buffered_read_stream.html │ │ │ │ │ │ ├── buffered_read_stream │ │ │ │ │ │ │ ├── async_fill.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_read_stream.html │ │ │ │ │ │ │ ├── buffered_read_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── default_buffer_size.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fill.html │ │ │ │ │ │ │ ├── fill │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffered_stream.html │ │ │ │ │ │ ├── buffered_stream │ │ │ │ │ │ │ ├── async_fill.html │ │ │ │ │ │ │ ├── async_flush.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_stream.html │ │ │ │ │ │ │ ├── buffered_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fill.html │ │ │ │ │ │ │ ├── fill │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── flush.html │ │ │ │ │ │ │ ├── flush │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffered_write_stream.html │ │ │ │ │ │ ├── buffered_write_stream │ │ │ │ │ │ │ ├── async_flush.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── buffered_write_stream.html │ │ │ │ │ │ │ ├── buffered_write_stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── default_buffer_size.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flush.html │ │ │ │ │ │ │ ├── flush │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── in_avail.html │ │ │ │ │ │ │ ├── in_avail │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── peek.html │ │ │ │ │ │ │ ├── peek │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── buffers_begin.html │ │ │ │ │ │ ├── buffers_end.html │ │ │ │ │ │ ├── buffers_iterator.html │ │ │ │ │ │ ├── buffers_iterator │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── buffers_iterator.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lb__rb_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_minus_.html │ │ │ │ │ │ │ ├── operator_minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_minus__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── can_prefer.html │ │ │ │ │ │ ├── can_query.html │ │ │ │ │ │ ├── can_require.html │ │ │ │ │ │ ├── can_require_concept.html │ │ │ │ │ │ ├── cancellation_filter.html │ │ │ │ │ │ ├── cancellation_filter │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── cancellation_signal.html │ │ │ │ │ │ ├── cancellation_signal │ │ │ │ │ │ │ ├── _cancellation_signal.html │ │ │ │ │ │ │ ├── cancellation_signal.html │ │ │ │ │ │ │ ├── emit.html │ │ │ │ │ │ │ └── slot.html │ │ │ │ │ │ ├── cancellation_slot.html │ │ │ │ │ │ ├── cancellation_slot │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── cancellation_slot.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ ├── emplace.html │ │ │ │ │ │ │ ├── has_handler.html │ │ │ │ │ │ │ ├── is_connected.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ └── operator_not__eq_.html │ │ │ │ │ │ ├── cancellation_slot_binder.html │ │ │ │ │ │ ├── cancellation_slot_binder │ │ │ │ │ │ │ ├── _cancellation_slot_binder.html │ │ │ │ │ │ │ ├── argument_type.html │ │ │ │ │ │ │ ├── cancellation_slot_binder.html │ │ │ │ │ │ │ ├── cancellation_slot_binder │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── cancellation_slot_type.html │ │ │ │ │ │ │ ├── first_argument_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_cancellation_slot.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── result_type.html │ │ │ │ │ │ │ ├── second_argument_type.html │ │ │ │ │ │ │ └── target_type.html │ │ │ │ │ │ ├── cancellation_state.html │ │ │ │ │ │ ├── cancellation_state │ │ │ │ │ │ │ ├── cancellation_state.html │ │ │ │ │ │ │ ├── cancellation_state │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancelled.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ └── slot.html │ │ │ │ │ │ ├── cancellation_type.html │ │ │ │ │ │ ├── cancellation_type_t.html │ │ │ │ │ │ ├── co_spawn.html │ │ │ │ │ │ ├── co_spawn │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ ├── connect │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── connect_pipe.html │ │ │ │ │ │ ├── connect_pipe │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── const_buffer.html │ │ │ │ │ │ ├── const_buffer │ │ │ │ │ │ │ ├── const_buffer.html │ │ │ │ │ │ │ ├── const_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── const_buffers_1.html │ │ │ │ │ │ ├── const_buffers_1 │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_buffers_1.html │ │ │ │ │ │ │ ├── const_buffers_1 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── const_registered_buffer.html │ │ │ │ │ │ ├── const_registered_buffer │ │ │ │ │ │ │ ├── buffer.html │ │ │ │ │ │ │ ├── const_registered_buffer.html │ │ │ │ │ │ │ ├── const_registered_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── id.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ ├── coroutine │ │ │ │ │ │ │ ├── coroutine.html │ │ │ │ │ │ │ ├── is_child.html │ │ │ │ │ │ │ ├── is_complete.html │ │ │ │ │ │ │ └── is_parent.html │ │ │ │ │ │ ├── deadline_timer.html │ │ │ │ │ │ ├── default_completion_token.html │ │ │ │ │ │ ├── default_completion_token │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ ├── defer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── detached.html │ │ │ │ │ │ ├── detached_t.html │ │ │ │ │ │ ├── detached_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ └── detached_t.html │ │ │ │ │ │ ├── detached_t__executor_with_default.html │ │ │ │ │ │ ├── detached_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ ├── executor_with_default.html │ │ │ │ │ │ │ └── executor_with_default │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── disable_cancellation.html │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ ├── dispatch │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── dynamic_buffer.html │ │ │ │ │ │ ├── dynamic_buffer │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── dynamic_string_buffer.html │ │ │ │ │ │ ├── dynamic_string_buffer │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── dynamic_string_buffer.html │ │ │ │ │ │ │ ├── dynamic_string_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── grow.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ ├── shrink.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── dynamic_vector_buffer.html │ │ │ │ │ │ ├── dynamic_vector_buffer │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── commit.html │ │ │ │ │ │ │ ├── const_buffers_type.html │ │ │ │ │ │ │ ├── consume.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── dynamic_vector_buffer.html │ │ │ │ │ │ │ ├── dynamic_vector_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── grow.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── mutable_buffers_type.html │ │ │ │ │ │ │ ├── prepare.html │ │ │ │ │ │ │ ├── shrink.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── enable_partial_cancellation.html │ │ │ │ │ │ ├── enable_terminal_cancellation.html │ │ │ │ │ │ ├── enable_total_cancellation.html │ │ │ │ │ │ ├── error__addrinfo_category.html │ │ │ │ │ │ ├── error__addrinfo_errors.html │ │ │ │ │ │ ├── error__basic_errors.html │ │ │ │ │ │ ├── error__get_addrinfo_category.html │ │ │ │ │ │ ├── error__get_misc_category.html │ │ │ │ │ │ ├── error__get_netdb_category.html │ │ │ │ │ │ ├── error__get_ssl_category.html │ │ │ │ │ │ ├── error__get_system_category.html │ │ │ │ │ │ ├── error__make_error_code.html │ │ │ │ │ │ ├── error__make_error_code │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ ├── error__misc_category.html │ │ │ │ │ │ ├── error__misc_errors.html │ │ │ │ │ │ ├── error__netdb_category.html │ │ │ │ │ │ ├── error__netdb_errors.html │ │ │ │ │ │ ├── error__ssl_category.html │ │ │ │ │ │ ├── error__ssl_errors.html │ │ │ │ │ │ ├── error__system_category.html │ │ │ │ │ │ ├── error_category.html │ │ │ │ │ │ ├── error_category │ │ │ │ │ │ │ ├── _error_category.html │ │ │ │ │ │ │ ├── message.html │ │ │ │ │ │ │ ├── name.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ └── operator_not__eq_.html │ │ │ │ │ │ ├── error_code.html │ │ │ │ │ │ ├── error_code │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ │ ├── clear.html │ │ │ │ │ │ │ ├── error_code.html │ │ │ │ │ │ │ ├── error_code │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── message.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_unspecified_bool_type.html │ │ │ │ │ │ │ ├── unspecified_bool_true.html │ │ │ │ │ │ │ ├── unspecified_bool_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── error_code__unspecified_bool_type_t.html │ │ │ │ │ │ ├── execution__allocator.html │ │ │ │ │ │ ├── execution__allocator_t.html │ │ │ │ │ │ ├── execution__allocator_t │ │ │ │ │ │ │ ├── allocator_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__any_executor.html │ │ │ │ │ │ ├── execution__any_executor │ │ │ │ │ │ │ ├── _any_executor.html │ │ │ │ │ │ │ ├── any_executor.html │ │ │ │ │ │ │ ├── any_executor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── operator_bool.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── prefer.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ ├── swap.html │ │ │ │ │ │ │ ├── target.html │ │ │ │ │ │ │ ├── target │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── target_type.html │ │ │ │ │ │ ├── execution__bad_executor.html │ │ │ │ │ │ ├── execution__bad_executor │ │ │ │ │ │ │ ├── bad_executor.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── execution__blocking.html │ │ │ │ │ │ ├── execution__blocking_adaptation.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t │ │ │ │ │ │ │ ├── allowed.html │ │ │ │ │ │ │ ├── blocking_adaptation_t.html │ │ │ │ │ │ │ ├── blocking_adaptation_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── disallowed.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ └── polymorphic_query_result_type.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t__allowed_t.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t__allowed_t │ │ │ │ │ │ │ ├── allowed_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t__disallowed_t.html │ │ │ │ │ │ ├── execution__blocking_adaptation_t__disallowed_t │ │ │ │ │ │ │ ├── disallowed_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__blocking_t.html │ │ │ │ │ │ ├── execution__blocking_t │ │ │ │ │ │ │ ├── always.html │ │ │ │ │ │ │ ├── blocking_t.html │ │ │ │ │ │ │ ├── blocking_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── never.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── possibly.html │ │ │ │ │ │ ├── execution__blocking_t__always_t.html │ │ │ │ │ │ ├── execution__blocking_t__always_t │ │ │ │ │ │ │ ├── always_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__blocking_t__never_t.html │ │ │ │ │ │ ├── execution__blocking_t__never_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── never_t.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__blocking_t__possibly_t.html │ │ │ │ │ │ ├── execution__blocking_t__possibly_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── possibly_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__bulk_execute.html │ │ │ │ │ │ ├── execution__bulk_guarantee.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t │ │ │ │ │ │ │ ├── bulk_guarantee_t.html │ │ │ │ │ │ │ ├── bulk_guarantee_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── parallel.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── sequenced.html │ │ │ │ │ │ │ └── unsequenced.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__parallel_t.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__parallel_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── parallel_t.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__sequenced_t.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__sequenced_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── sequenced_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__unsequenced_t.html │ │ │ │ │ │ ├── execution__bulk_guarantee_t__unsequenced_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── unsequenced_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__can_bulk_execute.html │ │ │ │ │ │ ├── execution__can_connect.html │ │ │ │ │ │ ├── execution__can_execute.html │ │ │ │ │ │ ├── execution__can_schedule.html │ │ │ │ │ │ ├── execution__can_set_done.html │ │ │ │ │ │ ├── execution__can_set_error.html │ │ │ │ │ │ ├── execution__can_set_value.html │ │ │ │ │ │ ├── execution__can_start.html │ │ │ │ │ │ ├── execution__can_submit.html │ │ │ │ │ │ ├── execution__connect.html │ │ │ │ │ │ ├── execution__connect_result.html │ │ │ │ │ │ ├── execution__connect_result │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── execution__context.html │ │ │ │ │ │ ├── execution__context_as.html │ │ │ │ │ │ ├── execution__context_as_t.html │ │ │ │ │ │ ├── execution__context_as_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ └── polymorphic_query_result_type.html │ │ │ │ │ │ ├── execution__context_t.html │ │ │ │ │ │ ├── execution__context_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ └── polymorphic_query_result_type.html │ │ │ │ │ │ ├── execution__execute.html │ │ │ │ │ │ ├── execution__executor_index.html │ │ │ │ │ │ ├── execution__executor_index │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── execution__executor_shape.html │ │ │ │ │ │ ├── execution__executor_shape │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── execution__invocable_archetype.html │ │ │ │ │ │ ├── execution__invocable_archetype │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── execution__is_executor.html │ │ │ │ │ │ ├── execution__is_executor_of.html │ │ │ │ │ │ ├── execution__is_nothrow_receiver_of.html │ │ │ │ │ │ ├── execution__is_operation_state.html │ │ │ │ │ │ ├── execution__is_receiver.html │ │ │ │ │ │ ├── execution__is_receiver_of.html │ │ │ │ │ │ ├── execution__is_scheduler.html │ │ │ │ │ │ ├── execution__is_sender.html │ │ │ │ │ │ ├── execution__is_sender_to.html │ │ │ │ │ │ ├── execution__is_typed_sender.html │ │ │ │ │ │ ├── execution__mapping.html │ │ │ │ │ │ ├── execution__mapping_t.html │ │ │ │ │ │ ├── execution__mapping_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── mapping_t.html │ │ │ │ │ │ │ ├── mapping_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── new_thread.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── other.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── thread.html │ │ │ │ │ │ ├── execution__mapping_t__new_thread_t.html │ │ │ │ │ │ ├── execution__mapping_t__new_thread_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── new_thread_t.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__mapping_t__other_t.html │ │ │ │ │ │ ├── execution__mapping_t__other_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── other_t.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__mapping_t__thread_t.html │ │ │ │ │ │ ├── execution__mapping_t__thread_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── thread_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__occupancy.html │ │ │ │ │ │ ├── execution__occupancy_t.html │ │ │ │ │ │ ├── execution__occupancy_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ └── polymorphic_query_result_type.html │ │ │ │ │ │ ├── execution__outstanding_work.html │ │ │ │ │ │ ├── execution__outstanding_work_t.html │ │ │ │ │ │ ├── execution__outstanding_work_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── outstanding_work_t.html │ │ │ │ │ │ │ ├── outstanding_work_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── tracked.html │ │ │ │ │ │ │ └── untracked.html │ │ │ │ │ │ ├── execution__outstanding_work_t__tracked_t.html │ │ │ │ │ │ ├── execution__outstanding_work_t__tracked_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── tracked_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__outstanding_work_t__untracked_t.html │ │ │ │ │ │ ├── execution__outstanding_work_t__untracked_t │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── untracked_t.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__prefer_only.html │ │ │ │ │ │ ├── execution__prefer_only │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ └── polymorphic_query_result_type.html │ │ │ │ │ │ ├── execution__receiver_invocation_error.html │ │ │ │ │ │ ├── execution__receiver_invocation_error │ │ │ │ │ │ │ └── receiver_invocation_error.html │ │ │ │ │ │ ├── execution__relationship.html │ │ │ │ │ │ ├── execution__relationship_t.html │ │ │ │ │ │ ├── execution__relationship_t │ │ │ │ │ │ │ ├── continuation.html │ │ │ │ │ │ │ ├── fork.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ ├── relationship_t.html │ │ │ │ │ │ │ └── relationship_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── execution__relationship_t__continuation_t.html │ │ │ │ │ │ ├── execution__relationship_t__continuation_t │ │ │ │ │ │ │ ├── continuation_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__relationship_t__fork_t.html │ │ │ │ │ │ ├── execution__relationship_t__fork_t │ │ │ │ │ │ │ ├── fork_t.html │ │ │ │ │ │ │ ├── is_applicable_property_v.html │ │ │ │ │ │ │ ├── is_preferable.html │ │ │ │ │ │ │ ├── is_requirable.html │ │ │ │ │ │ │ ├── polymorphic_query_result_type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── execution__schedule.html │ │ │ │ │ │ ├── execution__sender_base.html │ │ │ │ │ │ ├── execution__sender_traits.html │ │ │ │ │ │ ├── execution__set_done.html │ │ │ │ │ │ ├── execution__set_error.html │ │ │ │ │ │ ├── execution__set_value.html │ │ │ │ │ │ ├── execution__start.html │ │ │ │ │ │ ├── execution__submit.html │ │ │ │ │ │ ├── execution_context.html │ │ │ │ │ │ ├── execution_context │ │ │ │ │ │ │ ├── _execution_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── execution_context.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ └── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── execution_context__id.html │ │ │ │ │ │ ├── execution_context__id │ │ │ │ │ │ │ └── id.html │ │ │ │ │ │ ├── execution_context__service.html │ │ │ │ │ │ ├── execution_context__service │ │ │ │ │ │ │ ├── _service.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ │ └── shutdown.html │ │ │ │ │ │ ├── executor.html │ │ │ │ │ │ ├── executor │ │ │ │ │ │ │ ├── _executor.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── executor.html │ │ │ │ │ │ │ ├── executor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_unspecified_bool_type.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── target.html │ │ │ │ │ │ │ ├── target │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── target_type.html │ │ │ │ │ │ │ ├── unspecified_bool_true.html │ │ │ │ │ │ │ └── unspecified_bool_type.html │ │ │ │ │ │ ├── executor__unspecified_bool_type_t.html │ │ │ │ │ │ ├── executor_arg.html │ │ │ │ │ │ ├── executor_arg_t.html │ │ │ │ │ │ ├── executor_arg_t │ │ │ │ │ │ │ └── executor_arg_t.html │ │ │ │ │ │ ├── executor_binder.html │ │ │ │ │ │ ├── executor_binder │ │ │ │ │ │ │ ├── _executor_binder.html │ │ │ │ │ │ │ ├── argument_type.html │ │ │ │ │ │ │ ├── executor_binder.html │ │ │ │ │ │ │ ├── executor_binder │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── first_argument_type.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── result_type.html │ │ │ │ │ │ │ ├── second_argument_type.html │ │ │ │ │ │ │ └── target_type.html │ │ │ │ │ │ ├── executor_work_guard.html │ │ │ │ │ │ ├── executor_work_guard │ │ │ │ │ │ │ ├── _executor_work_guard.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── executor_work_guard.html │ │ │ │ │ │ │ ├── executor_work_guard │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── owns_work.html │ │ │ │ │ │ │ └── reset.html │ │ │ │ │ │ ├── experimental__append.html │ │ │ │ │ │ ├── experimental__append_t.html │ │ │ │ │ │ ├── experimental__append_t │ │ │ │ │ │ │ ├── append_t.html │ │ │ │ │ │ │ ├── token_.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── experimental__as_single.html │ │ │ │ │ │ ├── experimental__as_single_t.html │ │ │ │ │ │ ├── experimental__as_single_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ ├── as_single_t.html │ │ │ │ │ │ │ ├── as_single_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── token_.html │ │ │ │ │ │ ├── experimental__as_single_t__default_constructor_tag.html │ │ │ │ │ │ ├── experimental__as_single_t__executor_with_default.html │ │ │ │ │ │ ├── experimental__as_single_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ ├── executor_with_default.html │ │ │ │ │ │ │ └── executor_with_default │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── experimental__as_tuple.html │ │ │ │ │ │ ├── experimental__as_tuple_t.html │ │ │ │ │ │ ├── experimental__as_tuple_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ ├── as_tuple_t.html │ │ │ │ │ │ │ ├── as_tuple_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── token_.html │ │ │ │ │ │ ├── experimental__as_tuple_t__default_constructor_tag.html │ │ │ │ │ │ ├── experimental__as_tuple_t__executor_with_default.html │ │ │ │ │ │ ├── experimental__as_tuple_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ └── executor_with_default.html │ │ │ │ │ │ ├── experimental__awaitable_operators__operator__amp__amp_.html │ │ │ │ │ │ ├── experimental__awaitable_operators__operator__amp__amp_ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── experimental__awaitable_operators__operator_pipe__pipe_.html │ │ │ │ │ │ ├── experimental__awaitable_operators__operator_pipe__pipe_ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── experimental__basic_channel.html │ │ │ │ │ │ ├── experimental__basic_channel │ │ │ │ │ │ │ ├── _basic_channel.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── basic_channel.html │ │ │ │ │ │ │ ├── basic_channel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── ready.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── try_receive.html │ │ │ │ │ │ │ ├── try_send.html │ │ │ │ │ │ │ └── try_send_n.html │ │ │ │ │ │ ├── experimental__basic_channel__rebind_executor.html │ │ │ │ │ │ ├── experimental__basic_channel__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── experimental__basic_concurrent_channel.html │ │ │ │ │ │ ├── experimental__basic_concurrent_channel │ │ │ │ │ │ │ ├── _basic_concurrent_channel.html │ │ │ │ │ │ │ ├── async_receive.html │ │ │ │ │ │ │ ├── async_send.html │ │ │ │ │ │ │ ├── basic_concurrent_channel.html │ │ │ │ │ │ │ ├── basic_concurrent_channel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── ready.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── traits_type.html │ │ │ │ │ │ │ ├── try_receive.html │ │ │ │ │ │ │ ├── try_send.html │ │ │ │ │ │ │ └── try_send_n.html │ │ │ │ │ │ ├── experimental__basic_concurrent_channel__rebind_executor.html │ │ │ │ │ │ ├── experimental__basic_concurrent_channel__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── experimental__channel_traits.html │ │ │ │ │ │ ├── experimental__channel_traits │ │ │ │ │ │ │ ├── invoke_receive_cancelled.html │ │ │ │ │ │ │ ├── invoke_receive_closed.html │ │ │ │ │ │ │ ├── receive_cancelled_signature.html │ │ │ │ │ │ │ └── receive_closed_signature.html │ │ │ │ │ │ ├── experimental__channel_traits__container.html │ │ │ │ │ │ ├── experimental__channel_traits__container │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── experimental__channel_traits__rebind.html │ │ │ │ │ │ ├── experimental__channel_traits__rebind │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── experimental__co_spawn.html │ │ │ │ │ │ ├── experimental__co_spawn │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── experimental__coro.html │ │ │ │ │ │ ├── experimental__coro │ │ │ │ │ │ │ ├── _coro.html │ │ │ │ │ │ │ ├── async_resume.html │ │ │ │ │ │ │ ├── async_resume │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── coro.html │ │ │ │ │ │ │ ├── coro │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_noexcept.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── operator_bool.html │ │ │ │ │ │ │ ├── operator_co_await.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── experimental__coro_traits.html │ │ │ │ │ │ ├── experimental__coro_traits │ │ │ │ │ │ │ └── is_noexcept.html │ │ │ │ │ │ ├── experimental__deferred.html │ │ │ │ │ │ ├── experimental__deferred_async_operation.html │ │ │ │ │ │ ├── experimental__deferred_conditional.html │ │ │ │ │ │ ├── experimental__deferred_conditional │ │ │ │ │ │ │ ├── deferred_conditional.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── otherwise.html │ │ │ │ │ │ │ └── then.html │ │ │ │ │ │ ├── experimental__deferred_function.html │ │ │ │ │ │ ├── experimental__deferred_function │ │ │ │ │ │ │ ├── decltype.html │ │ │ │ │ │ │ ├── deferred_function.html │ │ │ │ │ │ │ └── function_.html │ │ │ │ │ │ ├── experimental__deferred_init_tag.html │ │ │ │ │ │ ├── experimental__deferred_noop.html │ │ │ │ │ │ ├── experimental__deferred_noop │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── experimental__deferred_sequence.html │ │ │ │ │ │ ├── experimental__deferred_sequence │ │ │ │ │ │ │ ├── decltype.html │ │ │ │ │ │ │ └── deferred_sequence.html │ │ │ │ │ │ ├── experimental__deferred_sequence__initiate.html │ │ │ │ │ │ ├── experimental__deferred_sequence__initiate │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── experimental__deferred_t.html │ │ │ │ │ │ ├── experimental__deferred_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ ├── deferred_t.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── values.html │ │ │ │ │ │ │ └── when.html │ │ │ │ │ │ ├── experimental__deferred_t__executor_with_default.html │ │ │ │ │ │ ├── experimental__deferred_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ └── executor_with_default.html │ │ │ │ │ │ ├── experimental__deferred_values.html │ │ │ │ │ │ ├── experimental__deferred_values__initiate.html │ │ │ │ │ │ ├── experimental__deferred_values__initiate │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── experimental__error__channel_category.html │ │ │ │ │ │ ├── experimental__error__channel_errors.html │ │ │ │ │ │ ├── experimental__error__get_channel_category.html │ │ │ │ │ │ ├── experimental__error__make_error_code.html │ │ │ │ │ │ ├── experimental__is_deferred.html │ │ │ │ │ │ ├── experimental__is_promise.html │ │ │ │ │ │ ├── experimental__is_promise_c.html │ │ │ │ │ │ ├── experimental__is_promise_lt__promise_lt__Ts_ellipsis__gt__gt_.html │ │ │ │ │ │ ├── experimental__is_promise_v.html │ │ │ │ │ │ ├── experimental__make_parallel_group.html │ │ │ │ │ │ ├── experimental__operator_pipe_.html │ │ │ │ │ │ ├── experimental__parallel_group.html │ │ │ │ │ │ ├── experimental__parallel_group │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── parallel_group.html │ │ │ │ │ │ │ └── signature.html │ │ │ │ │ │ ├── experimental__prepend.html │ │ │ │ │ │ ├── experimental__prepend_t.html │ │ │ │ │ │ ├── experimental__prepend_t │ │ │ │ │ │ │ ├── prepend_t.html │ │ │ │ │ │ │ ├── token_.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── experimental__promise.html │ │ │ │ │ │ ├── experimental__promise_lt__void_lp_Ts_ellipsis__rp__comma__Executor__gt_.html │ │ │ │ │ │ ├── experimental__promise_lt__void_lp_Ts_ellipsis__rp__comma__Executor__gt_ │ │ │ │ │ │ │ ├── _promise.html │ │ │ │ │ │ │ ├── all.html │ │ │ │ │ │ │ ├── all │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── complete.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── promise.html │ │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── race.html │ │ │ │ │ │ │ └── race │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── experimental__promise_value_type.html │ │ │ │ │ │ ├── experimental__promise_value_type_lt__T__gt_.html │ │ │ │ │ │ ├── experimental__promise_value_type_lt__gt_.html │ │ │ │ │ │ ├── experimental__use_coro.html │ │ │ │ │ │ ├── experimental__use_coro_t.html │ │ │ │ │ │ ├── experimental__use_coro_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ ├── use_coro_t.html │ │ │ │ │ │ │ └── use_coro_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── experimental__use_coro_t__executor_with_default.html │ │ │ │ │ │ ├── experimental__use_coro_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ └── executor_with_default.html │ │ │ │ │ │ ├── experimental__use_promise.html │ │ │ │ │ │ ├── experimental__use_promise_t.html │ │ │ │ │ │ ├── experimental__wait_for_all.html │ │ │ │ │ │ ├── experimental__wait_for_all │ │ │ │ │ │ │ └── operator_lp__rp_.html │ │ │ │ │ │ ├── experimental__wait_for_one.html │ │ │ │ │ │ ├── experimental__wait_for_one │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ └── wait_for_one.html │ │ │ │ │ │ ├── experimental__wait_for_one_error.html │ │ │ │ │ │ ├── experimental__wait_for_one_error │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ └── wait_for_one_error.html │ │ │ │ │ │ ├── experimental__wait_for_one_success.html │ │ │ │ │ │ ├── experimental__wait_for_one_success │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── operator_lp__rp_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ └── wait_for_one_success.html │ │ │ │ │ │ ├── file_base.html │ │ │ │ │ │ ├── file_base │ │ │ │ │ │ │ ├── _file_base.html │ │ │ │ │ │ │ ├── append.html │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── exclusive.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── read_only.html │ │ │ │ │ │ │ ├── read_write.html │ │ │ │ │ │ │ ├── seek_basis.html │ │ │ │ │ │ │ ├── truncate.html │ │ │ │ │ │ │ └── write_only.html │ │ │ │ │ │ ├── generic__basic_endpoint.html │ │ │ │ │ │ ├── generic__basic_endpoint │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── generic__datagram_protocol.html │ │ │ │ │ │ ├── generic__datagram_protocol │ │ │ │ │ │ │ ├── datagram_protocol.html │ │ │ │ │ │ │ ├── datagram_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__raw_protocol.html │ │ │ │ │ │ ├── generic__raw_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── raw_protocol.html │ │ │ │ │ │ │ ├── raw_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__seq_packet_protocol.html │ │ │ │ │ │ ├── generic__seq_packet_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── seq_packet_protocol.html │ │ │ │ │ │ │ ├── seq_packet_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── generic__stream_protocol.html │ │ │ │ │ │ ├── generic__stream_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── stream_protocol.html │ │ │ │ │ │ │ ├── stream_protocol │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── get_associated_allocator.html │ │ │ │ │ │ ├── get_associated_allocator │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── get_associated_cancellation_slot.html │ │ │ │ │ │ ├── get_associated_cancellation_slot │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── get_associated_executor.html │ │ │ │ │ │ ├── get_associated_executor │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── high_resolution_timer.html │ │ │ │ │ │ ├── invalid_service_owner.html │ │ │ │ │ │ ├── invalid_service_owner │ │ │ │ │ │ │ └── invalid_service_owner.html │ │ │ │ │ │ ├── io_context.html │ │ │ │ │ │ ├── io_context │ │ │ │ │ │ │ ├── _io_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── count_type.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── io_context.html │ │ │ │ │ │ │ ├── io_context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── poll.html │ │ │ │ │ │ │ ├── poll │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── poll_one.html │ │ │ │ │ │ │ ├── poll_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── restart.html │ │ │ │ │ │ │ ├── run.html │ │ │ │ │ │ │ ├── run │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── run_for.html │ │ │ │ │ │ │ ├── run_one.html │ │ │ │ │ │ │ ├── run_one │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── run_one_for.html │ │ │ │ │ │ │ ├── run_one_until.html │ │ │ │ │ │ │ ├── run_until.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── stopped.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ ├── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wrap.html │ │ │ │ │ │ ├── io_context__basic_executor_type.html │ │ │ │ │ │ ├── io_context__basic_executor_type │ │ │ │ │ │ │ ├── _basic_executor_type.html │ │ │ │ │ │ │ ├── basic_executor_type.html │ │ │ │ │ │ │ ├── basic_executor_type │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── query__static.html │ │ │ │ │ │ │ ├── query__static │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ ├── require │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ └── running_in_this_thread.html │ │ │ │ │ │ ├── io_context__service.html │ │ │ │ │ │ ├── io_context__service │ │ │ │ │ │ │ ├── _service.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ └── service.html │ │ │ │ │ │ ├── io_context__strand.html │ │ │ │ │ │ ├── io_context__strand │ │ │ │ │ │ │ ├── _strand.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── dispatch │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── post │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── running_in_this_thread.html │ │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ │ └── wrap.html │ │ │ │ │ │ ├── io_context__work.html │ │ │ │ │ │ ├── io_context__work │ │ │ │ │ │ │ ├── _work.html │ │ │ │ │ │ │ ├── get_io_context.html │ │ │ │ │ │ │ ├── work.html │ │ │ │ │ │ │ └── work │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── io_service.html │ │ │ │ │ │ ├── ip__address.html │ │ │ │ │ │ ├── ip__address │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── is_v4.html │ │ │ │ │ │ │ ├── is_v6.html │ │ │ │ │ │ │ ├── make_address.html │ │ │ │ │ │ │ ├── make_address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_v4.html │ │ │ │ │ │ │ └── to_v6.html │ │ │ │ │ │ ├── ip__address_v4.html │ │ │ │ │ │ ├── ip__address_v4 │ │ │ │ │ │ │ ├── address_v4.html │ │ │ │ │ │ │ ├── address_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── any.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── broadcast │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── bytes_type.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_class_a.html │ │ │ │ │ │ │ ├── is_class_b.html │ │ │ │ │ │ │ ├── is_class_c.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── loopback.html │ │ │ │ │ │ │ ├── make_address_v4.html │ │ │ │ │ │ │ ├── make_address_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── make_network_v4.html │ │ │ │ │ │ │ ├── make_network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── netmask.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_lt__lt_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── to_bytes.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_uint.html │ │ │ │ │ │ │ ├── to_ulong.html │ │ │ │ │ │ │ └── uint_type.html │ │ │ │ │ │ ├── ip__address_v4_iterator.html │ │ │ │ │ │ ├── ip__address_v4_range.html │ │ │ │ │ │ ├── ip__address_v6.html │ │ │ │ │ │ ├── ip__address_v6 │ │ │ │ │ │ │ ├── address_v6.html │ │ │ │ │ │ │ ├── address_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── any.html │ │ │ │ │ │ │ ├── bytes_type.html │ │ │ │ │ │ │ ├── from_string.html │ │ │ │ │ │ │ ├── from_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── is_link_local.html │ │ │ │ │ │ │ ├── is_loopback.html │ │ │ │ │ │ │ ├── is_multicast.html │ │ │ │ │ │ │ ├── is_multicast_global.html │ │ │ │ │ │ │ ├── is_multicast_link_local.html │ │ │ │ │ │ │ ├── is_multicast_node_local.html │ │ │ │ │ │ │ ├── is_multicast_org_local.html │ │ │ │ │ │ │ ├── is_multicast_site_local.html │ │ │ │ │ │ │ ├── is_site_local.html │ │ │ │ │ │ │ ├── is_unspecified.html │ │ │ │ │ │ │ ├── is_v4_compatible.html │ │ │ │ │ │ │ ├── is_v4_mapped.html │ │ │ │ │ │ │ ├── loopback.html │ │ │ │ │ │ │ ├── make_address_v6.html │ │ │ │ │ │ │ ├── make_address_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ │ ├── make_network_v6.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_lt__lt_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── scope_id.html │ │ │ │ │ │ │ ├── scope_id │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_bytes.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ ├── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── to_v4.html │ │ │ │ │ │ │ ├── v4_compatible.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__address_v6_iterator.html │ │ │ │ │ │ ├── ip__address_v6_range.html │ │ │ │ │ │ ├── ip__bad_address_cast.html │ │ │ │ │ │ ├── ip__bad_address_cast │ │ │ │ │ │ │ ├── _bad_address_cast.html │ │ │ │ │ │ │ ├── bad_address_cast.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v4__gt_.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v4__gt_ │ │ │ │ │ │ │ ├── basic_address_iterator.html │ │ │ │ │ │ │ ├── basic_address_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v6__gt_.html │ │ │ │ │ │ ├── ip__basic_address_iterator_lt__address_v6__gt_ │ │ │ │ │ │ │ ├── basic_address_iterator.html │ │ │ │ │ │ │ ├── basic_address_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_minus__minus_.html │ │ │ │ │ │ │ ├── operator_minus__minus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v4__gt_.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v4__gt_ │ │ │ │ │ │ │ ├── basic_address_range.html │ │ │ │ │ │ │ ├── basic_address_range │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── find.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v6__gt_.html │ │ │ │ │ │ ├── ip__basic_address_range_lt__address_v6__gt_ │ │ │ │ │ │ │ ├── basic_address_range.html │ │ │ │ │ │ │ ├── basic_address_range │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── find.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ └── operator_eq_.html │ │ │ │ │ │ ├── ip__basic_endpoint.html │ │ │ │ │ │ ├── ip__basic_endpoint │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── port.html │ │ │ │ │ │ │ ├── port │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── ip__basic_resolver.html │ │ │ │ │ │ ├── ip__basic_resolver │ │ │ │ │ │ │ ├── _basic_resolver.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── async_resolve.html │ │ │ │ │ │ │ ├── async_resolve │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── basic_resolver.html │ │ │ │ │ │ │ ├── basic_resolver │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── resolve.html │ │ │ │ │ │ │ ├── resolve │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── results_type.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__basic_resolver__rebind_executor.html │ │ │ │ │ │ ├── ip__basic_resolver__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── ip__basic_resolver_entry.html │ │ │ │ │ │ ├── ip__basic_resolver_entry │ │ │ │ │ │ │ ├── basic_resolver_entry.html │ │ │ │ │ │ │ ├── basic_resolver_entry │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── host_name.html │ │ │ │ │ │ │ ├── host_name │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_endpoint_type.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── service_name.html │ │ │ │ │ │ │ └── service_name │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__basic_resolver_iterator.html │ │ │ │ │ │ ├── ip__basic_resolver_iterator │ │ │ │ │ │ │ ├── basic_resolver_iterator.html │ │ │ │ │ │ │ ├── basic_resolver_iterator │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── dereference.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── equal.html │ │ │ │ │ │ │ ├── increment.html │ │ │ │ │ │ │ ├── index_.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ ├── value_type.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── ip__basic_resolver_query.html │ │ │ │ │ │ ├── ip__basic_resolver_query │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── basic_resolver_query.html │ │ │ │ │ │ │ ├── basic_resolver_query │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── hints.html │ │ │ │ │ │ │ ├── host_name.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── service_name.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__basic_resolver_results.html │ │ │ │ │ │ ├── ip__basic_resolver_results │ │ │ │ │ │ │ ├── basic_resolver_results.html │ │ │ │ │ │ │ ├── basic_resolver_results │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── cbegin.html │ │ │ │ │ │ │ ├── cend.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── const_reference.html │ │ │ │ │ │ │ ├── dereference.html │ │ │ │ │ │ │ ├── difference_type.html │ │ │ │ │ │ │ ├── empty.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── endpoint_type.html │ │ │ │ │ │ │ ├── equal.html │ │ │ │ │ │ │ ├── increment.html │ │ │ │ │ │ │ ├── index_.html │ │ │ │ │ │ │ ├── iterator.html │ │ │ │ │ │ │ ├── iterator_category.html │ │ │ │ │ │ │ ├── max_size.html │ │ │ │ │ │ │ ├── operator__star_.html │ │ │ │ │ │ │ ├── operator_arrow_.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__plus_.html │ │ │ │ │ │ │ ├── operator_plus__plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── pointer.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ ├── size_type.html │ │ │ │ │ │ │ ├── swap.html │ │ │ │ │ │ │ ├── value_type.html │ │ │ │ │ │ │ └── values_.html │ │ │ │ │ │ ├── ip__host_name.html │ │ │ │ │ │ ├── ip__host_name │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__icmp.html │ │ │ │ │ │ ├── ip__icmp │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__multicast__enable_loopback.html │ │ │ │ │ │ ├── ip__multicast__hops.html │ │ │ │ │ │ ├── ip__multicast__join_group.html │ │ │ │ │ │ ├── ip__multicast__leave_group.html │ │ │ │ │ │ ├── ip__multicast__outbound_interface.html │ │ │ │ │ │ ├── ip__network_v4.html │ │ │ │ │ │ ├── ip__network_v4 │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── canonical.html │ │ │ │ │ │ │ ├── hosts.html │ │ │ │ │ │ │ ├── is_host.html │ │ │ │ │ │ │ ├── is_subnet_of.html │ │ │ │ │ │ │ ├── make_network_v4.html │ │ │ │ │ │ │ ├── make_network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── netmask.html │ │ │ │ │ │ │ ├── network.html │ │ │ │ │ │ │ ├── network_v4.html │ │ │ │ │ │ │ ├── network_v4 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── prefix_length.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ └── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__network_v6.html │ │ │ │ │ │ ├── ip__network_v6 │ │ │ │ │ │ │ ├── address.html │ │ │ │ │ │ │ ├── canonical.html │ │ │ │ │ │ │ ├── hosts.html │ │ │ │ │ │ │ ├── is_host.html │ │ │ │ │ │ │ ├── is_subnet_of.html │ │ │ │ │ │ │ ├── make_network_v6.html │ │ │ │ │ │ │ ├── make_network_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── network.html │ │ │ │ │ │ │ ├── network_v6.html │ │ │ │ │ │ │ ├── network_v6 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── prefix_length.html │ │ │ │ │ │ │ ├── to_string.html │ │ │ │ │ │ │ └── to_string │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ip__port_type.html │ │ │ │ │ │ ├── ip__resolver_base.html │ │ │ │ │ │ ├── ip__resolver_base │ │ │ │ │ │ │ ├── _resolver_base.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__resolver_query_base.html │ │ │ │ │ │ ├── ip__resolver_query_base │ │ │ │ │ │ │ ├── _resolver_query_base.html │ │ │ │ │ │ │ ├── address_configured.html │ │ │ │ │ │ │ ├── all_matching.html │ │ │ │ │ │ │ ├── canonical_name.html │ │ │ │ │ │ │ ├── flags.html │ │ │ │ │ │ │ ├── numeric_host.html │ │ │ │ │ │ │ ├── numeric_service.html │ │ │ │ │ │ │ ├── passive.html │ │ │ │ │ │ │ └── v4_mapped.html │ │ │ │ │ │ ├── ip__scope_id_type.html │ │ │ │ │ │ ├── ip__tcp.html │ │ │ │ │ │ ├── ip__tcp │ │ │ │ │ │ │ ├── acceptor.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── no_delay.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__udp.html │ │ │ │ │ │ ├── ip__udp │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── resolver.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ ├── v4.html │ │ │ │ │ │ │ └── v6.html │ │ │ │ │ │ ├── ip__unicast__hops.html │ │ │ │ │ │ ├── ip__v4_mapped_t.html │ │ │ │ │ │ ├── ip__v6_only.html │ │ │ │ │ │ ├── is_applicable_property.html │ │ │ │ │ │ ├── is_const_buffer_sequence.html │ │ │ │ │ │ ├── is_dynamic_buffer.html │ │ │ │ │ │ ├── is_dynamic_buffer_v1.html │ │ │ │ │ │ ├── is_dynamic_buffer_v2.html │ │ │ │ │ │ ├── is_endpoint_sequence.html │ │ │ │ │ │ ├── is_endpoint_sequence │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_executor.html │ │ │ │ │ │ ├── is_match_condition.html │ │ │ │ │ │ ├── is_match_condition │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_mutable_buffer_sequence.html │ │ │ │ │ │ ├── is_nothrow_prefer.html │ │ │ │ │ │ ├── is_nothrow_query.html │ │ │ │ │ │ ├── is_nothrow_require.html │ │ │ │ │ │ ├── is_nothrow_require_concept.html │ │ │ │ │ │ ├── is_read_buffered.html │ │ │ │ │ │ ├── is_read_buffered │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── is_write_buffered.html │ │ │ │ │ │ ├── is_write_buffered │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── local__basic_endpoint.html │ │ │ │ │ │ ├── local__basic_endpoint │ │ │ │ │ │ │ ├── basic_endpoint.html │ │ │ │ │ │ │ ├── basic_endpoint │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── capacity.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── data_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_gt_.html │ │ │ │ │ │ │ ├── operator_gt__eq_.html │ │ │ │ │ │ │ ├── operator_lt_.html │ │ │ │ │ │ │ ├── operator_lt__eq_.html │ │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── path.html │ │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── protocol_type.html │ │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── local__connect_pair.html │ │ │ │ │ │ ├── local__connect_pair │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── local__datagram_protocol.html │ │ │ │ │ │ ├── local__datagram_protocol │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── local__stream_protocol.html │ │ │ │ │ │ ├── local__stream_protocol │ │ │ │ │ │ │ ├── acceptor.html │ │ │ │ │ │ │ ├── endpoint.html │ │ │ │ │ │ │ ├── family.html │ │ │ │ │ │ │ ├── iostream.html │ │ │ │ │ │ │ ├── protocol.html │ │ │ │ │ │ │ ├── socket.html │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── make_strand.html │ │ │ │ │ │ ├── make_strand │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── make_work_guard.html │ │ │ │ │ │ ├── make_work_guard │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ ├── multiple_exceptions.html │ │ │ │ │ │ ├── multiple_exceptions │ │ │ │ │ │ │ ├── first_exception.html │ │ │ │ │ │ │ ├── multiple_exceptions.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── mutable_buffer.html │ │ │ │ │ │ ├── mutable_buffer │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── mutable_buffer.html │ │ │ │ │ │ │ ├── mutable_buffer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── mutable_buffers_1.html │ │ │ │ │ │ ├── mutable_buffers_1 │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ ├── mutable_buffers_1.html │ │ │ │ │ │ │ ├── mutable_buffers_1 │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ ├── size.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── mutable_registered_buffer.html │ │ │ │ │ │ ├── mutable_registered_buffer │ │ │ │ │ │ │ ├── buffer.html │ │ │ │ │ │ │ ├── data.html │ │ │ │ │ │ │ ├── id.html │ │ │ │ │ │ │ ├── mutable_registered_buffer.html │ │ │ │ │ │ │ ├── operator_plus_.html │ │ │ │ │ │ │ ├── operator_plus_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_plus__eq_.html │ │ │ │ │ │ │ └── size.html │ │ │ │ │ │ ├── null_buffers.html │ │ │ │ │ │ ├── null_buffers │ │ │ │ │ │ │ ├── begin.html │ │ │ │ │ │ │ ├── const_iterator.html │ │ │ │ │ │ │ ├── end.html │ │ │ │ │ │ │ └── value_type.html │ │ │ │ │ │ ├── operator_lt__lt_.html │ │ │ │ │ │ ├── placeholders__bytes_transferred.html │ │ │ │ │ │ ├── placeholders__endpoint.html │ │ │ │ │ │ ├── placeholders__error.html │ │ │ │ │ │ ├── placeholders__iterator.html │ │ │ │ │ │ ├── placeholders__results.html │ │ │ │ │ │ ├── placeholders__signal_number.html │ │ │ │ │ │ ├── posix__basic_descriptor.html │ │ │ │ │ │ ├── posix__basic_descriptor │ │ │ │ │ │ │ ├── _basic_descriptor.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_descriptor.html │ │ │ │ │ │ │ ├── basic_descriptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── posix__basic_descriptor__rebind_executor.html │ │ │ │ │ │ ├── posix__basic_descriptor__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── posix__basic_stream_descriptor.html │ │ │ │ │ │ ├── posix__basic_stream_descriptor │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── basic_stream_descriptor.html │ │ │ │ │ │ │ ├── basic_stream_descriptor │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── io_control.html │ │ │ │ │ │ │ ├── io_control │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── native_non_blocking.html │ │ │ │ │ │ │ ├── native_non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── non_blocking.html │ │ │ │ │ │ │ ├── non_blocking │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── wait_type.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── posix__basic_stream_descriptor__rebind_executor.html │ │ │ │ │ │ ├── posix__basic_stream_descriptor__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── posix__descriptor.html │ │ │ │ │ │ ├── posix__descriptor_base.html │ │ │ │ │ │ ├── posix__descriptor_base │ │ │ │ │ │ │ ├── _descriptor_base.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── posix__stream_descriptor.html │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ ├── post │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── prefer.html │ │ │ │ │ │ ├── prefer_result.html │ │ │ │ │ │ ├── prefer_result │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ ├── query_result.html │ │ │ │ │ │ ├── query_result │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── random_access_file.html │ │ │ │ │ │ ├── read.html │ │ │ │ │ │ ├── read │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── read_at.html │ │ │ │ │ │ ├── read_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ ├── read_until.html │ │ │ │ │ │ ├── read_until │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload17.html │ │ │ │ │ │ │ ├── overload18.html │ │ │ │ │ │ │ ├── overload19.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload20.html │ │ │ │ │ │ │ ├── overload21.html │ │ │ │ │ │ │ ├── overload22.html │ │ │ │ │ │ │ ├── overload23.html │ │ │ │ │ │ │ ├── overload24.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── read_write_operations.html │ │ │ │ │ │ ├── readable_pipe.html │ │ │ │ │ │ ├── redirect_error.html │ │ │ │ │ │ ├── redirect_error_t.html │ │ │ │ │ │ ├── redirect_error_t │ │ │ │ │ │ │ ├── ec_.html │ │ │ │ │ │ │ ├── redirect_error_t.html │ │ │ │ │ │ │ └── token_.html │ │ │ │ │ │ ├── register_buffers.html │ │ │ │ │ │ ├── register_buffers │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ ├── registered_buffer_id.html │ │ │ │ │ │ ├── registered_buffer_id │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ └── registered_buffer_id.html │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ ├── require_concept.html │ │ │ │ │ │ ├── require_concept_result.html │ │ │ │ │ │ ├── require_concept_result │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── require_result.html │ │ │ │ │ │ ├── require_result │ │ │ │ │ │ │ └── type.html │ │ │ │ │ │ ├── resolver_errc__try_again.html │ │ │ │ │ │ ├── serial_port.html │ │ │ │ │ │ ├── serial_port_base.html │ │ │ │ │ │ ├── serial_port_base │ │ │ │ │ │ │ └── _serial_port_base.html │ │ │ │ │ │ ├── serial_port_base__baud_rate.html │ │ │ │ │ │ ├── serial_port_base__baud_rate │ │ │ │ │ │ │ ├── baud_rate.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__character_size.html │ │ │ │ │ │ ├── serial_port_base__character_size │ │ │ │ │ │ │ ├── character_size.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__flow_control.html │ │ │ │ │ │ ├── serial_port_base__flow_control │ │ │ │ │ │ │ ├── flow_control.html │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__parity.html │ │ │ │ │ │ ├── serial_port_base__parity │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── parity.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── serial_port_base__stop_bits.html │ │ │ │ │ │ ├── serial_port_base__stop_bits │ │ │ │ │ │ │ ├── load.html │ │ │ │ │ │ │ ├── stop_bits.html │ │ │ │ │ │ │ ├── store.html │ │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ │ └── value.html │ │ │ │ │ │ ├── service_already_exists.html │ │ │ │ │ │ ├── service_already_exists │ │ │ │ │ │ │ └── service_already_exists.html │ │ │ │ │ │ ├── signal_set.html │ │ │ │ │ │ ├── socket_base.html │ │ │ │ │ │ ├── socket_base │ │ │ │ │ │ │ ├── _socket_base.html │ │ │ │ │ │ │ ├── broadcast.html │ │ │ │ │ │ │ ├── bytes_readable.html │ │ │ │ │ │ │ ├── debug.html │ │ │ │ │ │ │ ├── do_not_route.html │ │ │ │ │ │ │ ├── enable_connection_aborted.html │ │ │ │ │ │ │ ├── keep_alive.html │ │ │ │ │ │ │ ├── linger.html │ │ │ │ │ │ │ ├── max_connections.html │ │ │ │ │ │ │ ├── max_listen_connections.html │ │ │ │ │ │ │ ├── message_do_not_route.html │ │ │ │ │ │ │ ├── message_end_of_record.html │ │ │ │ │ │ │ ├── message_flags.html │ │ │ │ │ │ │ ├── message_out_of_band.html │ │ │ │ │ │ │ ├── message_peek.html │ │ │ │ │ │ │ ├── out_of_band_inline.html │ │ │ │ │ │ │ ├── receive_buffer_size.html │ │ │ │ │ │ │ ├── receive_low_watermark.html │ │ │ │ │ │ │ ├── reuse_address.html │ │ │ │ │ │ │ ├── send_buffer_size.html │ │ │ │ │ │ │ ├── send_low_watermark.html │ │ │ │ │ │ │ ├── shutdown_type.html │ │ │ │ │ │ │ └── wait_type.html │ │ │ │ │ │ ├── spawn.html │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ └── overload7.html │ │ │ │ │ │ ├── ssl__context.html │ │ │ │ │ │ ├── ssl__context │ │ │ │ │ │ │ ├── _context.html │ │ │ │ │ │ │ ├── add_certificate_authority.html │ │ │ │ │ │ │ ├── add_certificate_authority │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── add_verify_path.html │ │ │ │ │ │ │ ├── add_verify_path │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── clear_options.html │ │ │ │ │ │ │ ├── clear_options │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── default_workarounds.html │ │ │ │ │ │ │ ├── file_format.html │ │ │ │ │ │ │ ├── load_verify_file.html │ │ │ │ │ │ │ ├── load_verify_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── method.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── no_compression.html │ │ │ │ │ │ │ ├── no_sslv2.html │ │ │ │ │ │ │ ├── no_sslv3.html │ │ │ │ │ │ │ ├── no_tlsv1.html │ │ │ │ │ │ │ ├── no_tlsv1_1.html │ │ │ │ │ │ │ ├── no_tlsv1_2.html │ │ │ │ │ │ │ ├── no_tlsv1_3.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ ├── password_purpose.html │ │ │ │ │ │ │ ├── set_default_verify_paths.html │ │ │ │ │ │ │ ├── set_default_verify_paths │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_options.html │ │ │ │ │ │ │ ├── set_options │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_password_callback.html │ │ │ │ │ │ │ ├── set_password_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_callback.html │ │ │ │ │ │ │ ├── set_verify_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_depth.html │ │ │ │ │ │ │ ├── set_verify_depth │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_mode.html │ │ │ │ │ │ │ ├── set_verify_mode │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── single_dh_use.html │ │ │ │ │ │ │ ├── use_certificate.html │ │ │ │ │ │ │ ├── use_certificate │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_chain.html │ │ │ │ │ │ │ ├── use_certificate_chain │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_chain_file.html │ │ │ │ │ │ │ ├── use_certificate_chain_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_certificate_file.html │ │ │ │ │ │ │ ├── use_certificate_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_private_key.html │ │ │ │ │ │ │ ├── use_private_key │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_private_key_file.html │ │ │ │ │ │ │ ├── use_private_key_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_rsa_private_key.html │ │ │ │ │ │ │ ├── use_rsa_private_key │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_rsa_private_key_file.html │ │ │ │ │ │ │ ├── use_rsa_private_key_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_tmp_dh.html │ │ │ │ │ │ │ ├── use_tmp_dh │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_tmp_dh_file.html │ │ │ │ │ │ │ └── use_tmp_dh_file │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ssl__context_base.html │ │ │ │ │ │ ├── ssl__context_base │ │ │ │ │ │ │ ├── _context_base.html │ │ │ │ │ │ │ ├── default_workarounds.html │ │ │ │ │ │ │ ├── file_format.html │ │ │ │ │ │ │ ├── method.html │ │ │ │ │ │ │ ├── no_compression.html │ │ │ │ │ │ │ ├── no_sslv2.html │ │ │ │ │ │ │ ├── no_sslv3.html │ │ │ │ │ │ │ ├── no_tlsv1.html │ │ │ │ │ │ │ ├── no_tlsv1_1.html │ │ │ │ │ │ │ ├── no_tlsv1_2.html │ │ │ │ │ │ │ ├── no_tlsv1_3.html │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ ├── password_purpose.html │ │ │ │ │ │ │ └── single_dh_use.html │ │ │ │ │ │ ├── ssl__error__get_stream_category.html │ │ │ │ │ │ ├── ssl__error__make_error_code.html │ │ │ │ │ │ ├── ssl__error__stream_category.html │ │ │ │ │ │ ├── ssl__error__stream_errors.html │ │ │ │ │ │ ├── ssl__host_name_verification.html │ │ │ │ │ │ ├── ssl__host_name_verification │ │ │ │ │ │ │ ├── host_name_verification.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ └── result_type.html │ │ │ │ │ │ ├── ssl__rfc2818_verification.html │ │ │ │ │ │ ├── ssl__rfc2818_verification │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── result_type.html │ │ │ │ │ │ │ └── rfc2818_verification.html │ │ │ │ │ │ ├── ssl__stream.html │ │ │ │ │ │ ├── ssl__stream │ │ │ │ │ │ │ ├── _stream.html │ │ │ │ │ │ │ ├── async_handshake.html │ │ │ │ │ │ │ ├── async_handshake │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_shutdown.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── handshake.html │ │ │ │ │ │ │ ├── handshake │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── handshake_type.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── next_layer.html │ │ │ │ │ │ │ ├── next_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── next_layer_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_callback.html │ │ │ │ │ │ │ ├── set_verify_callback │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_depth.html │ │ │ │ │ │ │ ├── set_verify_depth │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── set_verify_mode.html │ │ │ │ │ │ │ ├── set_verify_mode │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── shutdown │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── stream.html │ │ │ │ │ │ │ ├── stream │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── ssl__stream__impl_struct.html │ │ │ │ │ │ ├── ssl__stream__impl_struct │ │ │ │ │ │ │ └── ssl.html │ │ │ │ │ │ ├── ssl__stream_base.html │ │ │ │ │ │ ├── ssl__stream_base │ │ │ │ │ │ │ ├── _stream_base.html │ │ │ │ │ │ │ └── handshake_type.html │ │ │ │ │ │ ├── ssl__verify_client_once.html │ │ │ │ │ │ ├── ssl__verify_context.html │ │ │ │ │ │ ├── ssl__verify_context │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ └── verify_context.html │ │ │ │ │ │ ├── ssl__verify_fail_if_no_peer_cert.html │ │ │ │ │ │ ├── ssl__verify_mode.html │ │ │ │ │ │ ├── ssl__verify_none.html │ │ │ │ │ │ ├── ssl__verify_peer.html │ │ │ │ │ │ ├── static_thread_pool.html │ │ │ │ │ │ ├── steady_timer.html │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ ├── strand │ │ │ │ │ │ │ ├── _strand.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── get_inner_executor.html │ │ │ │ │ │ │ ├── inner_executor_type.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ └── overload4.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── prefer.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ ├── running_in_this_thread.html │ │ │ │ │ │ │ ├── strand.html │ │ │ │ │ │ │ └── strand │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ ├── stream_file.html │ │ │ │ │ │ ├── streambuf.html │ │ │ │ │ │ ├── synchronous_socket_operations.html │ │ │ │ │ │ ├── system_category.html │ │ │ │ │ │ ├── system_context.html │ │ │ │ │ │ ├── system_context │ │ │ │ │ │ │ ├── _system_context.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── stopped.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ └── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ ├── system_error │ │ │ │ │ │ │ ├── _system_error.html │ │ │ │ │ │ │ ├── code.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── system_error.html │ │ │ │ │ │ │ ├── system_error │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ └── what.html │ │ │ │ │ │ ├── system_executor.html │ │ │ │ │ │ ├── system_timer.html │ │ │ │ │ │ ├── this_coro__cancellation_state.html │ │ │ │ │ │ ├── this_coro__cancellation_state_t.html │ │ │ │ │ │ ├── this_coro__cancellation_state_t │ │ │ │ │ │ │ └── cancellation_state_t.html │ │ │ │ │ │ ├── this_coro__executor.html │ │ │ │ │ │ ├── this_coro__executor_t.html │ │ │ │ │ │ ├── this_coro__executor_t │ │ │ │ │ │ │ └── executor_t.html │ │ │ │ │ │ ├── this_coro__reset_cancellation_state.html │ │ │ │ │ │ ├── this_coro__reset_cancellation_state │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── this_coro__throw_if_cancelled.html │ │ │ │ │ │ ├── this_coro__throw_if_cancelled │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── thread.html │ │ │ │ │ │ ├── thread │ │ │ │ │ │ │ ├── _thread.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ └── thread.html │ │ │ │ │ │ ├── thread_pool.html │ │ │ │ │ │ ├── thread_pool │ │ │ │ │ │ │ ├── _thread_pool.html │ │ │ │ │ │ │ ├── add_service.html │ │ │ │ │ │ │ ├── attach.html │ │ │ │ │ │ │ ├── destroy.html │ │ │ │ │ │ │ ├── executor.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── fork_event.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── has_service.html │ │ │ │ │ │ │ ├── join.html │ │ │ │ │ │ │ ├── make_service.html │ │ │ │ │ │ │ ├── notify_fork.html │ │ │ │ │ │ │ ├── scheduler.html │ │ │ │ │ │ │ ├── scheduler_type.html │ │ │ │ │ │ │ ├── shutdown.html │ │ │ │ │ │ │ ├── stop.html │ │ │ │ │ │ │ ├── thread_pool.html │ │ │ │ │ │ │ ├── thread_pool │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── use_service.html │ │ │ │ │ │ │ ├── use_service │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ └── wait.html │ │ │ │ │ │ ├── thread_pool__basic_executor_type.html │ │ │ │ │ │ ├── thread_pool__basic_executor_type │ │ │ │ │ │ │ ├── _basic_executor_type.html │ │ │ │ │ │ │ ├── basic_executor_type.html │ │ │ │ │ │ │ ├── basic_executor_type │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── bulk_execute.html │ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ │ ├── context.html │ │ │ │ │ │ │ ├── defer.html │ │ │ │ │ │ │ ├── dispatch.html │ │ │ │ │ │ │ ├── execute.html │ │ │ │ │ │ │ ├── index_type.html │ │ │ │ │ │ │ ├── on_work_finished.html │ │ │ │ │ │ │ ├── on_work_started.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── operator_eq_ │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── operator_eq__eq_.html │ │ │ │ │ │ │ ├── operator_not__eq_.html │ │ │ │ │ │ │ ├── post.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ └── overload6.html │ │ │ │ │ │ │ ├── query__static.html │ │ │ │ │ │ │ ├── query__static │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── require.html │ │ │ │ │ │ │ ├── require │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ │ ├── running_in_this_thread.html │ │ │ │ │ │ │ ├── schedule.html │ │ │ │ │ │ │ ├── sender_type.html │ │ │ │ │ │ │ └── shape_type.html │ │ │ │ │ │ ├── time_traits_lt__ptime__gt_.html │ │ │ │ │ │ ├── time_traits_lt__ptime__gt_ │ │ │ │ │ │ │ ├── add.html │ │ │ │ │ │ │ ├── duration_type.html │ │ │ │ │ │ │ ├── less_than.html │ │ │ │ │ │ │ ├── now.html │ │ │ │ │ │ │ ├── subtract.html │ │ │ │ │ │ │ ├── time_type.html │ │ │ │ │ │ │ └── to_posix_duration.html │ │ │ │ │ │ ├── transfer_all.html │ │ │ │ │ │ ├── transfer_at_least.html │ │ │ │ │ │ ├── transfer_exactly.html │ │ │ │ │ │ ├── use_awaitable.html │ │ │ │ │ │ ├── use_awaitable_t.html │ │ │ │ │ │ ├── use_awaitable_t │ │ │ │ │ │ │ ├── as_default_on.html │ │ │ │ │ │ │ ├── use_awaitable_t.html │ │ │ │ │ │ │ └── use_awaitable_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── use_awaitable_t__executor_with_default.html │ │ │ │ │ │ ├── use_awaitable_t__executor_with_default │ │ │ │ │ │ │ ├── default_completion_token_type.html │ │ │ │ │ │ │ └── executor_with_default.html │ │ │ │ │ │ ├── use_future.html │ │ │ │ │ │ ├── use_future_t.html │ │ │ │ │ │ ├── use_future_t │ │ │ │ │ │ │ ├── allocator_type.html │ │ │ │ │ │ │ ├── get_allocator.html │ │ │ │ │ │ │ ├── operator_lb__rb_.html │ │ │ │ │ │ │ ├── operator_lp__rp_.html │ │ │ │ │ │ │ ├── rebind.html │ │ │ │ │ │ │ ├── use_future_t.html │ │ │ │ │ │ │ └── use_future_t │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── uses_executor.html │ │ │ │ │ │ ├── wait_traits.html │ │ │ │ │ │ ├── wait_traits │ │ │ │ │ │ │ ├── to_wait_duration.html │ │ │ │ │ │ │ └── to_wait_duration │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__basic_object_handle.html │ │ │ │ │ │ ├── windows__basic_object_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_wait.html │ │ │ │ │ │ │ ├── basic_object_handle.html │ │ │ │ │ │ │ ├── basic_object_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── wait.html │ │ │ │ │ │ │ └── wait │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__basic_object_handle__rebind_executor.html │ │ │ │ │ │ ├── windows__basic_object_handle__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── windows__basic_overlapped_handle.html │ │ │ │ │ │ ├── windows__basic_overlapped_handle │ │ │ │ │ │ │ ├── _basic_overlapped_handle.html │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── basic_overlapped_handle.html │ │ │ │ │ │ │ ├── basic_overlapped_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ └── operator_eq_.html │ │ │ │ │ │ ├── windows__basic_overlapped_handle__rebind_executor.html │ │ │ │ │ │ ├── windows__basic_overlapped_handle__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── windows__basic_random_access_handle.html │ │ │ │ │ │ ├── windows__basic_random_access_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some_at.html │ │ │ │ │ │ │ ├── async_write_some_at.html │ │ │ │ │ │ │ ├── basic_random_access_handle.html │ │ │ │ │ │ │ ├── basic_random_access_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some_at.html │ │ │ │ │ │ │ ├── read_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some_at.html │ │ │ │ │ │ │ └── write_some_at │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__basic_random_access_handle__rebind_executor.html │ │ │ │ │ │ ├── windows__basic_random_access_handle__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── windows__basic_stream_handle.html │ │ │ │ │ │ ├── windows__basic_stream_handle │ │ │ │ │ │ │ ├── assign.html │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── async_read_some.html │ │ │ │ │ │ │ ├── async_write_some.html │ │ │ │ │ │ │ ├── basic_stream_handle.html │ │ │ │ │ │ │ ├── basic_stream_handle │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ │ └── overload5.html │ │ │ │ │ │ │ ├── cancel.html │ │ │ │ │ │ │ ├── cancel │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── close.html │ │ │ │ │ │ │ ├── close │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── executor_type.html │ │ │ │ │ │ │ ├── get_executor.html │ │ │ │ │ │ │ ├── is_open.html │ │ │ │ │ │ │ ├── lowest_layer.html │ │ │ │ │ │ │ ├── lowest_layer │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── lowest_layer_type.html │ │ │ │ │ │ │ ├── native_handle.html │ │ │ │ │ │ │ ├── native_handle_type.html │ │ │ │ │ │ │ ├── operator_eq_.html │ │ │ │ │ │ │ ├── read_some.html │ │ │ │ │ │ │ ├── read_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── write_some.html │ │ │ │ │ │ │ └── write_some │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ ├── windows__basic_stream_handle__rebind_executor.html │ │ │ │ │ │ ├── windows__basic_stream_handle__rebind_executor │ │ │ │ │ │ │ └── other.html │ │ │ │ │ │ ├── windows__object_handle.html │ │ │ │ │ │ ├── windows__overlapped_handle.html │ │ │ │ │ │ ├── windows__overlapped_ptr.html │ │ │ │ │ │ ├── windows__overlapped_ptr │ │ │ │ │ │ │ ├── _overlapped_ptr.html │ │ │ │ │ │ │ ├── complete.html │ │ │ │ │ │ │ ├── get.html │ │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ └── overload2.html │ │ │ │ │ │ │ ├── overlapped_ptr.html │ │ │ │ │ │ │ ├── overlapped_ptr │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ │ ├── release.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ └── reset │ │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ │ └── overload3.html │ │ │ │ │ │ ├── windows__random_access_handle.html │ │ │ │ │ │ ├── windows__stream_handle.html │ │ │ │ │ │ ├── writable_pipe.html │ │ │ │ │ │ ├── write.html │ │ │ │ │ │ ├── write │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload10.html │ │ │ │ │ │ │ ├── overload11.html │ │ │ │ │ │ │ ├── overload12.html │ │ │ │ │ │ │ ├── overload13.html │ │ │ │ │ │ │ ├── overload14.html │ │ │ │ │ │ │ ├── overload15.html │ │ │ │ │ │ │ ├── overload16.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ ├── overload8.html │ │ │ │ │ │ │ └── overload9.html │ │ │ │ │ │ ├── write_at.html │ │ │ │ │ │ ├── write_at │ │ │ │ │ │ │ ├── overload1.html │ │ │ │ │ │ │ ├── overload2.html │ │ │ │ │ │ │ ├── overload3.html │ │ │ │ │ │ │ ├── overload4.html │ │ │ │ │ │ │ ├── overload5.html │ │ │ │ │ │ │ ├── overload6.html │ │ │ │ │ │ │ ├── overload7.html │ │ │ │ │ │ │ └── overload8.html │ │ │ │ │ │ └── yield_context.html │ │ │ │ │ ├── std_executors.html │ │ │ │ │ ├── tutorial.html │ │ │ │ │ ├── tutorial │ │ │ │ │ │ ├── boost_bind.html │ │ │ │ │ │ ├── tutdaytime1.html │ │ │ │ │ │ ├── tutdaytime1 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime2.html │ │ │ │ │ │ ├── tutdaytime2 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime3.html │ │ │ │ │ │ ├── tutdaytime3 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime4.html │ │ │ │ │ │ ├── tutdaytime4 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime5.html │ │ │ │ │ │ ├── tutdaytime5 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime6.html │ │ │ │ │ │ ├── tutdaytime6 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tutdaytime7.html │ │ │ │ │ │ ├── tutdaytime7 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer1.html │ │ │ │ │ │ ├── tuttimer1 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer2.html │ │ │ │ │ │ ├── tuttimer2 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer3.html │ │ │ │ │ │ ├── tuttimer3 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer4.html │ │ │ │ │ │ ├── tuttimer4 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ │ ├── tuttimer5.html │ │ │ │ │ │ └── tuttimer5 │ │ │ │ │ │ │ └── src.html │ │ │ │ │ └── using.html │ │ │ │ ├── async_op1.png │ │ │ │ ├── async_op2.png │ │ │ │ ├── blank.png │ │ │ │ ├── boostbook.css │ │ │ │ ├── caution.png │ │ │ │ ├── draft.png │ │ │ │ ├── examples │ │ │ │ │ └── diffs │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ └── reference_counted.cpp.html │ │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── chat_client.cpp.html │ │ │ │ │ │ ├── chat_message.hpp.html │ │ │ │ │ │ └── chat_server.cpp.html │ │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── async_tcp_echo_server.cpp.html │ │ │ │ │ │ ├── async_udp_echo_server.cpp.html │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp.html │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp.html │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp.html │ │ │ │ │ │ └── blocking_udp_echo_server.cpp.html │ │ │ │ │ │ ├── executors │ │ │ │ │ │ ├── actor.cpp.html │ │ │ │ │ │ ├── bank_account_1.cpp.html │ │ │ │ │ │ ├── bank_account_2.cpp.html │ │ │ │ │ │ ├── fork_join.cpp.html │ │ │ │ │ │ ├── pipeline.cpp.html │ │ │ │ │ │ └── priority_scheduler.cpp.html │ │ │ │ │ │ ├── files │ │ │ │ │ │ ├── async_file_copy.cpp.html │ │ │ │ │ │ └── blocking_file_copy.cpp.html │ │ │ │ │ │ ├── fork │ │ │ │ │ │ ├── daemon.cpp.html │ │ │ │ │ │ └── process_per_connection.cpp.html │ │ │ │ │ │ ├── futures │ │ │ │ │ │ └── daytime_client.cpp.html │ │ │ │ │ │ ├── handler_tracking │ │ │ │ │ │ ├── async_tcp_echo_server.cpp.html │ │ │ │ │ │ └── custom_tracking.hpp.html │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── connection.cpp.html │ │ │ │ │ │ │ ├── connection.hpp.html │ │ │ │ │ │ │ ├── connection_manager.cpp.html │ │ │ │ │ │ │ ├── connection_manager.hpp.html │ │ │ │ │ │ │ ├── header.hpp.html │ │ │ │ │ │ │ ├── main.cpp.html │ │ │ │ │ │ │ ├── mime_types.cpp.html │ │ │ │ │ │ │ ├── mime_types.hpp.html │ │ │ │ │ │ │ ├── reply.cpp.html │ │ │ │ │ │ │ ├── reply.hpp.html │ │ │ │ │ │ │ ├── request.hpp.html │ │ │ │ │ │ │ ├── request_handler.cpp.html │ │ │ │ │ │ │ ├── request_handler.hpp.html │ │ │ │ │ │ │ ├── request_parser.cpp.html │ │ │ │ │ │ │ ├── request_parser.hpp.html │ │ │ │ │ │ │ ├── server.cpp.html │ │ │ │ │ │ │ └── server.hpp.html │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ └── prioritised_handlers.cpp.html │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ └── http_client.cpp.html │ │ │ │ │ │ ├── local │ │ │ │ │ │ ├── connect_pair.cpp.html │ │ │ │ │ │ ├── iostream_client.cpp.html │ │ │ │ │ │ ├── stream_client.cpp.html │ │ │ │ │ │ └── stream_server.cpp.html │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ ├── receiver.cpp.html │ │ │ │ │ │ └── sender.cpp.html │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ └── third_party_lib.cpp.html │ │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── composed_1.cpp.html │ │ │ │ │ │ ├── composed_2.cpp.html │ │ │ │ │ │ ├── composed_3.cpp.html │ │ │ │ │ │ ├── composed_4.cpp.html │ │ │ │ │ │ ├── composed_5.cpp.html │ │ │ │ │ │ ├── composed_6.cpp.html │ │ │ │ │ │ ├── composed_7.cpp.html │ │ │ │ │ │ └── composed_8.cpp.html │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ ├── socks4.hpp.html │ │ │ │ │ │ └── sync_client.cpp.html │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ ├── echo_server.cpp.html │ │ │ │ │ │ └── parallel_grep.cpp.html │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── client.cpp.html │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ ├── async_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp.html │ │ │ │ │ │ ├── blocking_udp_client.cpp.html │ │ │ │ │ │ └── server.cpp.html │ │ │ │ │ │ └── timers │ │ │ │ │ │ └── time_t_timer.cpp.html │ │ │ │ ├── home.png │ │ │ │ ├── important.png │ │ │ │ ├── index.html │ │ │ │ ├── next.png │ │ │ │ ├── next_disabled.png │ │ │ │ ├── note.png │ │ │ │ ├── prev.png │ │ │ │ ├── prev_disabled.png │ │ │ │ ├── proactor.png │ │ │ │ ├── standalone_HTML.manifest │ │ │ │ ├── sync_op.png │ │ │ │ ├── tip.png │ │ │ │ ├── up.png │ │ │ │ ├── up_disabled.png │ │ │ │ └── warning.png │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── asio.hpp │ │ │ │ └── asio │ │ │ │ │ ├── any_io_executor.hpp │ │ │ │ │ ├── associated_allocator.hpp │ │ │ │ │ ├── associated_cancellation_slot.hpp │ │ │ │ │ ├── associated_executor.hpp │ │ │ │ │ ├── associator.hpp │ │ │ │ │ ├── async_result.hpp │ │ │ │ │ ├── awaitable.hpp │ │ │ │ │ ├── basic_datagram_socket.hpp │ │ │ │ │ ├── basic_deadline_timer.hpp │ │ │ │ │ ├── basic_file.hpp │ │ │ │ │ ├── basic_io_object.hpp │ │ │ │ │ ├── basic_random_access_file.hpp │ │ │ │ │ ├── basic_raw_socket.hpp │ │ │ │ │ ├── basic_readable_pipe.hpp │ │ │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ │ │ ├── basic_serial_port.hpp │ │ │ │ │ ├── basic_signal_set.hpp │ │ │ │ │ ├── basic_socket.hpp │ │ │ │ │ ├── basic_socket_acceptor.hpp │ │ │ │ │ ├── basic_socket_iostream.hpp │ │ │ │ │ ├── basic_socket_streambuf.hpp │ │ │ │ │ ├── basic_stream_file.hpp │ │ │ │ │ ├── basic_stream_socket.hpp │ │ │ │ │ ├── basic_streambuf.hpp │ │ │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ │ │ ├── basic_waitable_timer.hpp │ │ │ │ │ ├── basic_writable_pipe.hpp │ │ │ │ │ ├── bind_cancellation_slot.hpp │ │ │ │ │ ├── bind_executor.hpp │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── buffer_registration.hpp │ │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ │ │ ├── buffered_stream.hpp │ │ │ │ │ ├── buffered_stream_fwd.hpp │ │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ │ │ ├── buffers_iterator.hpp │ │ │ │ │ ├── cancellation_signal.hpp │ │ │ │ │ ├── cancellation_state.hpp │ │ │ │ │ ├── cancellation_type.hpp │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ ├── completion_condition.hpp │ │ │ │ │ ├── compose.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── connect_pipe.hpp │ │ │ │ │ ├── coroutine.hpp │ │ │ │ │ ├── deadline_timer.hpp │ │ │ │ │ ├── defer.hpp │ │ │ │ │ ├── detached.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array_fwd.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── base_from_cancellation_state.hpp │ │ │ │ │ ├── base_from_completion_cond.hpp │ │ │ │ │ ├── bind_handler.hpp │ │ │ │ │ ├── blocking_executor_op.hpp │ │ │ │ │ ├── buffer_resize_guard.hpp │ │ │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ │ │ ├── buffered_stream_storage.hpp │ │ │ │ │ ├── bulk_executor_op.hpp │ │ │ │ │ ├── call_stack.hpp │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── chrono_time_traits.hpp │ │ │ │ │ ├── completion_handler.hpp │ │ │ │ │ ├── concurrency_hint.hpp │ │ │ │ │ ├── conditionally_enabled_event.hpp │ │ │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── consuming_buffers.hpp │ │ │ │ │ ├── cstddef.hpp │ │ │ │ │ ├── cstdint.hpp │ │ │ │ │ ├── date_time_fwd.hpp │ │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ │ ├── dependent_type.hpp │ │ │ │ │ ├── descriptor_ops.hpp │ │ │ │ │ ├── descriptor_read_op.hpp │ │ │ │ │ ├── descriptor_write_op.hpp │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ │ │ ├── executor_function.hpp │ │ │ │ │ ├── executor_op.hpp │ │ │ │ │ ├── fd_set_adapter.hpp │ │ │ │ │ ├── fenced_block.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── future.hpp │ │ │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ │ │ ├── global.hpp │ │ │ │ │ ├── handler_alloc_helpers.hpp │ │ │ │ │ ├── handler_cont_helpers.hpp │ │ │ │ │ ├── handler_invoke_helpers.hpp │ │ │ │ │ ├── handler_tracking.hpp │ │ │ │ │ ├── handler_type_requirements.hpp │ │ │ │ │ ├── handler_work.hpp │ │ │ │ │ ├── hash_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ │ │ ├── handler_tracking.ipp │ │ │ │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ │ │ │ ├── io_uring_file_service.ipp │ │ │ │ │ │ ├── io_uring_service.hpp │ │ │ │ │ │ ├── io_uring_service.ipp │ │ │ │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ │ │ ├── null_event.ipp │ │ │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ │ │ ├── posix_event.ipp │ │ │ │ │ │ ├── posix_mutex.ipp │ │ │ │ │ │ ├── posix_serial_port_service.ipp │ │ │ │ │ │ ├── posix_thread.ipp │ │ │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ │ │ ├── scheduler.ipp │ │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ │ ├── select_reactor.ipp │ │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ │ ├── service_registry.ipp │ │ │ │ │ │ ├── signal_set_service.ipp │ │ │ │ │ │ ├── socket_ops.ipp │ │ │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ │ ├── strand_service.ipp │ │ │ │ │ │ ├── thread_context.ipp │ │ │ │ │ │ ├── throw_error.ipp │ │ │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ │ │ ├── win_event.ipp │ │ │ │ │ │ ├── win_iocp_file_service.ipp │ │ │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ │ │ ├── win_mutex.ipp │ │ │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ │ │ ├── win_thread.ipp │ │ │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ │ │ └── winsock_init.ipp │ │ │ │ │ ├── io_control.hpp │ │ │ │ │ ├── io_object_impl.hpp │ │ │ │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ │ │ │ ├── io_uring_descriptor_read_op.hpp │ │ │ │ │ ├── io_uring_descriptor_service.hpp │ │ │ │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ │ │ │ ├── io_uring_descriptor_write_op.hpp │ │ │ │ │ ├── io_uring_file_service.hpp │ │ │ │ │ ├── io_uring_null_buffers_op.hpp │ │ │ │ │ ├── io_uring_operation.hpp │ │ │ │ │ ├── io_uring_service.hpp │ │ │ │ │ ├── io_uring_socket_accept_op.hpp │ │ │ │ │ ├── io_uring_socket_connect_op.hpp │ │ │ │ │ ├── io_uring_socket_recv_op.hpp │ │ │ │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ │ │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ │ │ │ ├── io_uring_socket_send_op.hpp │ │ │ │ │ ├── io_uring_socket_sendto_op.hpp │ │ │ │ │ ├── io_uring_socket_service.hpp │ │ │ │ │ ├── io_uring_socket_service_base.hpp │ │ │ │ │ ├── io_uring_wait_op.hpp │ │ │ │ │ ├── is_buffer_sequence.hpp │ │ │ │ │ ├── is_executor.hpp │ │ │ │ │ ├── keyword_tss_ptr.hpp │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── local_free_on_block_exit.hpp │ │ │ │ │ ├── macos_fenced_block.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── non_const_lvalue.hpp │ │ │ │ │ ├── noncopyable.hpp │ │ │ │ │ ├── null_event.hpp │ │ │ │ │ ├── null_fenced_block.hpp │ │ │ │ │ ├── null_global.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── null_reactor.hpp │ │ │ │ │ ├── null_signal_blocker.hpp │ │ │ │ │ ├── null_socket_service.hpp │ │ │ │ │ ├── null_static_mutex.hpp │ │ │ │ │ ├── null_thread.hpp │ │ │ │ │ ├── null_tss_ptr.hpp │ │ │ │ │ ├── object_pool.hpp │ │ │ │ │ ├── old_win_sdk_compat.hpp │ │ │ │ │ ├── op_queue.hpp │ │ │ │ │ ├── operation.hpp │ │ │ │ │ ├── pipe_select_interrupter.hpp │ │ │ │ │ ├── pop_options.hpp │ │ │ │ │ ├── posix_event.hpp │ │ │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ │ │ ├── posix_global.hpp │ │ │ │ │ ├── posix_mutex.hpp │ │ │ │ │ ├── posix_serial_port_service.hpp │ │ │ │ │ ├── posix_signal_blocker.hpp │ │ │ │ │ ├── posix_static_mutex.hpp │ │ │ │ │ ├── posix_thread.hpp │ │ │ │ │ ├── posix_tss_ptr.hpp │ │ │ │ │ ├── push_options.hpp │ │ │ │ │ ├── reactive_descriptor_service.hpp │ │ │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ │ │ ├── reactive_socket_send_op.hpp │ │ │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ │ │ ├── reactive_socket_service.hpp │ │ │ │ │ ├── reactive_socket_service_base.hpp │ │ │ │ │ ├── reactive_wait_op.hpp │ │ │ │ │ ├── reactor.hpp │ │ │ │ │ ├── reactor_op.hpp │ │ │ │ │ ├── reactor_op_queue.hpp │ │ │ │ │ ├── recycling_allocator.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── resolve_endpoint_op.hpp │ │ │ │ │ ├── resolve_op.hpp │ │ │ │ │ ├── resolve_query_op.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── resolver_service_base.hpp │ │ │ │ │ ├── scheduler.hpp │ │ │ │ │ ├── scheduler_operation.hpp │ │ │ │ │ ├── scheduler_task.hpp │ │ │ │ │ ├── scheduler_thread_info.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ │ ├── select_interrupter.hpp │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ ├── signal_blocker.hpp │ │ │ │ │ ├── signal_handler.hpp │ │ │ │ │ ├── signal_init.hpp │ │ │ │ │ ├── signal_op.hpp │ │ │ │ │ ├── signal_set_service.hpp │ │ │ │ │ ├── socket_holder.hpp │ │ │ │ │ ├── socket_ops.hpp │ │ │ │ │ ├── socket_option.hpp │ │ │ │ │ ├── socket_select_interrupter.hpp │ │ │ │ │ ├── socket_types.hpp │ │ │ │ │ ├── solaris_fenced_block.hpp │ │ │ │ │ ├── source_location.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ ├── std_event.hpp │ │ │ │ │ ├── std_fenced_block.hpp │ │ │ │ │ ├── std_global.hpp │ │ │ │ │ ├── std_mutex.hpp │ │ │ │ │ ├── std_static_mutex.hpp │ │ │ │ │ ├── std_thread.hpp │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ ├── string_view.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_context.hpp │ │ │ │ │ ├── thread_group.hpp │ │ │ │ │ ├── thread_info_base.hpp │ │ │ │ │ ├── throw_error.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ ├── timer_queue.hpp │ │ │ │ │ ├── timer_queue_base.hpp │ │ │ │ │ ├── timer_queue_ptime.hpp │ │ │ │ │ ├── timer_queue_set.hpp │ │ │ │ │ ├── timer_scheduler.hpp │ │ │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ │ │ ├── tss_ptr.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── variadic_templates.hpp │ │ │ │ │ ├── wait_handler.hpp │ │ │ │ │ ├── wait_op.hpp │ │ │ │ │ ├── win_event.hpp │ │ │ │ │ ├── win_fd_set_adapter.hpp │ │ │ │ │ ├── win_fenced_block.hpp │ │ │ │ │ ├── win_global.hpp │ │ │ │ │ ├── win_iocp_file_service.hpp │ │ │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ │ │ ├── win_iocp_handle_service.hpp │ │ │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ │ │ ├── win_iocp_operation.hpp │ │ │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ │ │ ├── win_iocp_socket_service.hpp │ │ │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ │ │ ├── win_iocp_thread_info.hpp │ │ │ │ │ ├── win_iocp_wait_op.hpp │ │ │ │ │ ├── win_mutex.hpp │ │ │ │ │ ├── win_object_handle_service.hpp │ │ │ │ │ ├── win_static_mutex.hpp │ │ │ │ │ ├── win_thread.hpp │ │ │ │ │ ├── win_tss_ptr.hpp │ │ │ │ │ ├── winapp_thread.hpp │ │ │ │ │ ├── wince_thread.hpp │ │ │ │ │ ├── winrt_async_manager.hpp │ │ │ │ │ ├── winrt_async_op.hpp │ │ │ │ │ ├── winrt_resolve_op.hpp │ │ │ │ │ ├── winrt_resolver_service.hpp │ │ │ │ │ ├── winrt_socket_connect_op.hpp │ │ │ │ │ ├── winrt_socket_recv_op.hpp │ │ │ │ │ ├── winrt_socket_send_op.hpp │ │ │ │ │ ├── winrt_ssocket_service.hpp │ │ │ │ │ ├── winrt_ssocket_service_base.hpp │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ ├── winrt_utils.hpp │ │ │ │ │ ├── winsock_init.hpp │ │ │ │ │ ├── work_dispatcher.hpp │ │ │ │ │ └── wrapped_handler.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── error_code.hpp │ │ │ │ │ ├── execution.hpp │ │ │ │ │ ├── execution │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ ├── any_executor.hpp │ │ │ │ │ ├── bad_executor.hpp │ │ │ │ │ ├── blocking.hpp │ │ │ │ │ ├── blocking_adaptation.hpp │ │ │ │ │ ├── bulk_execute.hpp │ │ │ │ │ ├── bulk_guarantee.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context_as.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── as_invocable.hpp │ │ │ │ │ │ ├── as_operation.hpp │ │ │ │ │ │ ├── as_receiver.hpp │ │ │ │ │ │ ├── bulk_sender.hpp │ │ │ │ │ │ ├── submit_receiver.hpp │ │ │ │ │ │ └── void_receiver.hpp │ │ │ │ │ ├── execute.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── bad_executor.ipp │ │ │ │ │ │ └── receiver_invocation_error.ipp │ │ │ │ │ ├── invocable_archetype.hpp │ │ │ │ │ ├── mapping.hpp │ │ │ │ │ ├── occupancy.hpp │ │ │ │ │ ├── operation_state.hpp │ │ │ │ │ ├── outstanding_work.hpp │ │ │ │ │ ├── prefer_only.hpp │ │ │ │ │ ├── receiver.hpp │ │ │ │ │ ├── receiver_invocation_error.hpp │ │ │ │ │ ├── relationship.hpp │ │ │ │ │ ├── schedule.hpp │ │ │ │ │ ├── scheduler.hpp │ │ │ │ │ ├── sender.hpp │ │ │ │ │ ├── set_done.hpp │ │ │ │ │ ├── set_error.hpp │ │ │ │ │ ├── set_value.hpp │ │ │ │ │ ├── start.hpp │ │ │ │ │ └── submit.hpp │ │ │ │ │ ├── execution_context.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor_work_guard.hpp │ │ │ │ │ ├── experimental │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── as_single.hpp │ │ │ │ │ ├── as_tuple.hpp │ │ │ │ │ ├── awaitable_operators.hpp │ │ │ │ │ ├── basic_channel.hpp │ │ │ │ │ ├── basic_concurrent_channel.hpp │ │ │ │ │ ├── cancellation_condition.hpp │ │ │ │ │ ├── channel.hpp │ │ │ │ │ ├── channel_error.hpp │ │ │ │ │ ├── channel_traits.hpp │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ ├── concurrent_channel.hpp │ │ │ │ │ ├── coro.hpp │ │ │ │ │ ├── coro_traits.hpp │ │ │ │ │ ├── deferred.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── channel_handler.hpp │ │ │ │ │ │ ├── channel_message.hpp │ │ │ │ │ │ ├── channel_operation.hpp │ │ │ │ │ │ ├── channel_payload.hpp │ │ │ │ │ │ ├── channel_receive_op.hpp │ │ │ │ │ │ ├── channel_send_functions.hpp │ │ │ │ │ │ ├── channel_send_op.hpp │ │ │ │ │ │ ├── channel_service.hpp │ │ │ │ │ │ ├── completion_handler_erasure.hpp │ │ │ │ │ │ ├── coro_promise_allocator.hpp │ │ │ │ │ │ ├── has_signature.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── channel_service.hpp │ │ │ │ │ │ └── partial_promise.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── append.hpp │ │ │ │ │ │ ├── as_single.hpp │ │ │ │ │ │ ├── as_tuple.hpp │ │ │ │ │ │ ├── channel_error.ipp │ │ │ │ │ │ ├── coro.hpp │ │ │ │ │ │ ├── deferred.hpp │ │ │ │ │ │ ├── parallel_group.hpp │ │ │ │ │ │ ├── prepend.hpp │ │ │ │ │ │ ├── promise.hpp │ │ │ │ │ │ └── use_coro.hpp │ │ │ │ │ ├── parallel_group.hpp │ │ │ │ │ ├── prepend.hpp │ │ │ │ │ ├── promise.hpp │ │ │ │ │ └── use_coro.hpp │ │ │ │ │ ├── file_base.hpp │ │ │ │ │ ├── generic │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ ├── raw_protocol.hpp │ │ │ │ │ ├── seq_packet_protocol.hpp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ │ ├── handler_alloc_hook.hpp │ │ │ │ │ ├── handler_continuation_hook.hpp │ │ │ │ │ ├── handler_invoke_hook.hpp │ │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ │ ├── impl │ │ │ │ │ ├── any_io_executor.ipp │ │ │ │ │ ├── awaitable.hpp │ │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ │ ├── cancellation_signal.ipp │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ ├── compose.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── connect_pipe.hpp │ │ │ │ │ ├── connect_pipe.ipp │ │ │ │ │ ├── defer.hpp │ │ │ │ │ ├── detached.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── error.ipp │ │ │ │ │ ├── error_code.ipp │ │ │ │ │ ├── execution_context.hpp │ │ │ │ │ ├── execution_context.ipp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor.ipp │ │ │ │ │ ├── handler_alloc_hook.ipp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── io_context.ipp │ │ │ │ │ ├── multiple_exceptions.ipp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── redirect_error.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── serial_port_base.ipp │ │ │ │ │ ├── spawn.hpp │ │ │ │ │ ├── src.hpp │ │ │ │ │ ├── system_context.hpp │ │ │ │ │ ├── system_context.ipp │ │ │ │ │ ├── system_executor.hpp │ │ │ │ │ ├── thread_pool.hpp │ │ │ │ │ ├── thread_pool.ipp │ │ │ │ │ ├── use_awaitable.hpp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ └── write_at.hpp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── io_context_strand.hpp │ │ │ │ │ ├── io_service.hpp │ │ │ │ │ ├── io_service_strand.hpp │ │ │ │ │ ├── ip │ │ │ │ │ ├── address.hpp │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ ├── address_v4_iterator.hpp │ │ │ │ │ ├── address_v4_range.hpp │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ ├── address_v6_iterator.hpp │ │ │ │ │ ├── address_v6_range.hpp │ │ │ │ │ ├── bad_address_cast.hpp │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── basic_resolver.hpp │ │ │ │ │ ├── basic_resolver_entry.hpp │ │ │ │ │ ├── basic_resolver_iterator.hpp │ │ │ │ │ ├── basic_resolver_query.hpp │ │ │ │ │ ├── basic_resolver_results.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ │ └── socket_option.hpp │ │ │ │ │ ├── host_name.hpp │ │ │ │ │ ├── icmp.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── address.hpp │ │ │ │ │ │ ├── address.ipp │ │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ │ ├── address_v4.ipp │ │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ │ ├── address_v6.ipp │ │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ │ ├── host_name.ipp │ │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ │ ├── network_v4.ipp │ │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ │ └── network_v6.ipp │ │ │ │ │ ├── multicast.hpp │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ ├── resolver_base.hpp │ │ │ │ │ ├── resolver_query_base.hpp │ │ │ │ │ ├── tcp.hpp │ │ │ │ │ ├── udp.hpp │ │ │ │ │ ├── unicast.hpp │ │ │ │ │ └── v6_only.hpp │ │ │ │ │ ├── is_applicable_property.hpp │ │ │ │ │ ├── is_executor.hpp │ │ │ │ │ ├── is_read_buffered.hpp │ │ │ │ │ ├── is_write_buffered.hpp │ │ │ │ │ ├── local │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── connect_pair.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ │ ├── multiple_exceptions.hpp │ │ │ │ │ ├── packaged_task.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── posix │ │ │ │ │ ├── basic_descriptor.hpp │ │ │ │ │ ├── basic_stream_descriptor.hpp │ │ │ │ │ ├── descriptor.hpp │ │ │ │ │ ├── descriptor_base.hpp │ │ │ │ │ └── stream_descriptor.hpp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── prefer.hpp │ │ │ │ │ ├── query.hpp │ │ │ │ │ ├── random_access_file.hpp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── readable_pipe.hpp │ │ │ │ │ ├── redirect_error.hpp │ │ │ │ │ ├── registered_buffer.hpp │ │ │ │ │ ├── require.hpp │ │ │ │ │ ├── require_concept.hpp │ │ │ │ │ ├── serial_port.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── signal_set.hpp │ │ │ │ │ ├── socket_base.hpp │ │ │ │ │ ├── spawn.hpp │ │ │ │ │ ├── ssl.hpp │ │ │ │ │ ├── ssl │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context_base.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ │ │ ├── engine.hpp │ │ │ │ │ │ ├── handshake_op.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── engine.ipp │ │ │ │ │ │ │ └── openssl_init.ipp │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── openssl_init.hpp │ │ │ │ │ │ ├── openssl_types.hpp │ │ │ │ │ │ ├── password_callback.hpp │ │ │ │ │ │ ├── read_op.hpp │ │ │ │ │ │ ├── shutdown_op.hpp │ │ │ │ │ │ ├── stream_core.hpp │ │ │ │ │ │ ├── verify_callback.hpp │ │ │ │ │ │ └── write_op.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── host_name_verification.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── context.hpp │ │ │ │ │ │ ├── context.ipp │ │ │ │ │ │ ├── error.ipp │ │ │ │ │ │ ├── host_name_verification.ipp │ │ │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ │ │ └── src.hpp │ │ │ │ │ ├── rfc2818_verification.hpp │ │ │ │ │ ├── stream.hpp │ │ │ │ │ ├── stream_base.hpp │ │ │ │ │ ├── verify_context.hpp │ │ │ │ │ └── verify_mode.hpp │ │ │ │ │ ├── static_thread_pool.hpp │ │ │ │ │ ├── steady_timer.hpp │ │ │ │ │ ├── strand.hpp │ │ │ │ │ ├── stream_file.hpp │ │ │ │ │ ├── streambuf.hpp │ │ │ │ │ ├── system_context.hpp │ │ │ │ │ ├── system_error.hpp │ │ │ │ │ ├── system_executor.hpp │ │ │ │ │ ├── system_timer.hpp │ │ │ │ │ ├── this_coro.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_pool.hpp │ │ │ │ │ ├── time_traits.hpp │ │ │ │ │ ├── traits │ │ │ │ │ ├── bulk_execute_free.hpp │ │ │ │ │ ├── bulk_execute_member.hpp │ │ │ │ │ ├── connect_free.hpp │ │ │ │ │ ├── connect_member.hpp │ │ │ │ │ ├── equality_comparable.hpp │ │ │ │ │ ├── execute_free.hpp │ │ │ │ │ ├── execute_member.hpp │ │ │ │ │ ├── prefer_free.hpp │ │ │ │ │ ├── prefer_member.hpp │ │ │ │ │ ├── query_free.hpp │ │ │ │ │ ├── query_member.hpp │ │ │ │ │ ├── query_static_constexpr_member.hpp │ │ │ │ │ ├── require_concept_free.hpp │ │ │ │ │ ├── require_concept_member.hpp │ │ │ │ │ ├── require_free.hpp │ │ │ │ │ ├── require_member.hpp │ │ │ │ │ ├── schedule_free.hpp │ │ │ │ │ ├── schedule_member.hpp │ │ │ │ │ ├── set_done_free.hpp │ │ │ │ │ ├── set_done_member.hpp │ │ │ │ │ ├── set_error_free.hpp │ │ │ │ │ ├── set_error_member.hpp │ │ │ │ │ ├── set_value_free.hpp │ │ │ │ │ ├── set_value_member.hpp │ │ │ │ │ ├── start_free.hpp │ │ │ │ │ ├── start_member.hpp │ │ │ │ │ ├── static_query.hpp │ │ │ │ │ ├── static_require.hpp │ │ │ │ │ ├── static_require_concept.hpp │ │ │ │ │ ├── submit_free.hpp │ │ │ │ │ └── submit_member.hpp │ │ │ │ │ ├── ts │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── internet.hpp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── net.hpp │ │ │ │ │ ├── netfwd.hpp │ │ │ │ │ ├── socket.hpp │ │ │ │ │ └── timer.hpp │ │ │ │ │ ├── unyield.hpp │ │ │ │ │ ├── use_awaitable.hpp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── uses_executor.hpp │ │ │ │ │ ├── version.hpp │ │ │ │ │ ├── wait_traits.hpp │ │ │ │ │ ├── windows │ │ │ │ │ ├── basic_object_handle.hpp │ │ │ │ │ ├── basic_overlapped_handle.hpp │ │ │ │ │ ├── basic_random_access_handle.hpp │ │ │ │ │ ├── basic_stream_handle.hpp │ │ │ │ │ ├── object_handle.hpp │ │ │ │ │ ├── overlapped_handle.hpp │ │ │ │ │ ├── overlapped_ptr.hpp │ │ │ │ │ ├── random_access_handle.hpp │ │ │ │ │ └── stream_handle.hpp │ │ │ │ │ ├── writable_pipe.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ ├── write_at.hpp │ │ │ │ │ └── yield.hpp │ │ │ ├── install-sh │ │ │ ├── missing │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.mgw │ │ │ │ ├── Makefile.msc │ │ │ │ ├── asio.cpp │ │ │ │ ├── asio_ssl.cpp │ │ │ │ ├── examples │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ │ └── reference_counted.cpp │ │ │ │ │ │ ├── chat │ │ │ │ │ │ │ ├── chat_client.cpp │ │ │ │ │ │ │ ├── chat_message.hpp │ │ │ │ │ │ │ ├── chat_server.cpp │ │ │ │ │ │ │ └── posix_chat_client.cpp │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── fork │ │ │ │ │ │ │ ├── daemon.cpp │ │ │ │ │ │ │ └── process_per_connection.cpp │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── async_client.cpp │ │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── connection_manager.cpp │ │ │ │ │ │ │ │ ├── connection_manager.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ ├── server2 │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── io_context_pool.cpp │ │ │ │ │ │ │ │ ├── io_context_pool.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ ├── server3 │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ │ └── server4 │ │ │ │ │ │ │ │ ├── file_handler.cpp │ │ │ │ │ │ │ │ ├── file_handler.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ ├── icmp │ │ │ │ │ │ │ ├── icmp_header.hpp │ │ │ │ │ │ │ ├── ipv4_header.hpp │ │ │ │ │ │ │ └── ping.cpp │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ │ └── prioritised_handlers.cpp │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ │ ├── daytime_client.cpp │ │ │ │ │ │ │ ├── daytime_server.cpp │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ │ ├── iostream_client.cpp │ │ │ │ │ │ │ ├── stream_client.cpp │ │ │ │ │ │ │ └── stream_server.cpp │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ │ ├── receiver.cpp │ │ │ │ │ │ │ └── sender.cpp │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ │ └── third_party_lib.cpp │ │ │ │ │ │ ├── porthopper │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── protocol.hpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── serialization │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ └── stock.hpp │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── basic_logger.hpp │ │ │ │ │ │ │ ├── daytime_client.cpp │ │ │ │ │ │ │ ├── logger.hpp │ │ │ │ │ │ │ ├── logger_service.cpp │ │ │ │ │ │ │ └── logger_service.hpp │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ │ ├── socks4.hpp │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ │ └── parallel_grep.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── dh4096.pem │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ └── server.pem │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ │ ├── async_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_udp_client.cpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── timers │ │ │ │ │ │ │ └── time_t_timer.cpp │ │ │ │ │ │ ├── tutorial │ │ │ │ │ │ │ ├── daytime1 │ │ │ │ │ │ │ │ └── client.cpp │ │ │ │ │ │ │ ├── daytime2 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime3 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime4 │ │ │ │ │ │ │ │ └── client.cpp │ │ │ │ │ │ │ ├── daytime5 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime6 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── daytime7 │ │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ │ ├── timer1 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer2 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer3 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ ├── timer4 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ │ └── timer5 │ │ │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ └── transmit_file.cpp │ │ │ │ │ ├── cpp11 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── allocation │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ ├── buffers │ │ │ │ │ │ │ └── reference_counted.cpp │ │ │ │ │ │ ├── chat │ │ │ │ │ │ │ ├── chat_client.cpp │ │ │ │ │ │ │ ├── chat_message.hpp │ │ │ │ │ │ │ └── chat_server.cpp │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── executors │ │ │ │ │ │ │ ├── actor.cpp │ │ │ │ │ │ │ ├── bank_account_1.cpp │ │ │ │ │ │ │ ├── bank_account_2.cpp │ │ │ │ │ │ │ ├── fork_join.cpp │ │ │ │ │ │ │ ├── pipeline.cpp │ │ │ │ │ │ │ └── priority_scheduler.cpp │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── async_file_copy.cpp │ │ │ │ │ │ │ └── blocking_file_copy.cpp │ │ │ │ │ │ ├── fork │ │ │ │ │ │ │ ├── daemon.cpp │ │ │ │ │ │ │ └── process_per_connection.cpp │ │ │ │ │ │ ├── futures │ │ │ │ │ │ │ └── daytime_client.cpp │ │ │ │ │ │ ├── handler_tracking │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ └── custom_tracking.hpp │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ │ │ ├── connection.hpp │ │ │ │ │ │ │ │ ├── connection_manager.cpp │ │ │ │ │ │ │ │ ├── connection_manager.hpp │ │ │ │ │ │ │ │ ├── header.hpp │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ ├── mime_types.cpp │ │ │ │ │ │ │ │ ├── mime_types.hpp │ │ │ │ │ │ │ │ ├── reply.cpp │ │ │ │ │ │ │ │ ├── reply.hpp │ │ │ │ │ │ │ │ ├── request.hpp │ │ │ │ │ │ │ │ ├── request_handler.cpp │ │ │ │ │ │ │ │ ├── request_handler.hpp │ │ │ │ │ │ │ │ ├── request_parser.cpp │ │ │ │ │ │ │ │ ├── request_parser.hpp │ │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ │ └── server.hpp │ │ │ │ │ │ ├── invocation │ │ │ │ │ │ │ └── prioritised_handlers.cpp │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ │ ├── iostream_client.cpp │ │ │ │ │ │ │ ├── stream_client.cpp │ │ │ │ │ │ │ └── stream_server.cpp │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ │ ├── receiver.cpp │ │ │ │ │ │ │ └── sender.cpp │ │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ │ └── third_party_lib.cpp │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── composed_1.cpp │ │ │ │ │ │ │ ├── composed_2.cpp │ │ │ │ │ │ │ ├── composed_3.cpp │ │ │ │ │ │ │ ├── composed_4.cpp │ │ │ │ │ │ │ ├── composed_5.cpp │ │ │ │ │ │ │ ├── composed_6.cpp │ │ │ │ │ │ │ ├── composed_7.cpp │ │ │ │ │ │ │ └── composed_8.cpp │ │ │ │ │ │ ├── socks4 │ │ │ │ │ │ │ ├── socks4.hpp │ │ │ │ │ │ │ └── sync_client.cpp │ │ │ │ │ │ ├── spawn │ │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ │ └── parallel_grep.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ │ ├── dh4096.pem │ │ │ │ │ │ │ ├── server.cpp │ │ │ │ │ │ │ └── server.pem │ │ │ │ │ │ ├── timeouts │ │ │ │ │ │ │ ├── async_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_token_tcp_client.cpp │ │ │ │ │ │ │ ├── blocking_udp_client.cpp │ │ │ │ │ │ │ └── server.cpp │ │ │ │ │ │ └── timers │ │ │ │ │ │ │ └── time_t_timer.cpp │ │ │ │ │ ├── cpp14 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── deferred │ │ │ │ │ │ │ ├── deferred_1.cpp │ │ │ │ │ │ │ ├── deferred_2.cpp │ │ │ │ │ │ │ ├── deferred_3.cpp │ │ │ │ │ │ │ ├── deferred_4.cpp │ │ │ │ │ │ │ ├── deferred_5.cpp │ │ │ │ │ │ │ ├── deferred_6.cpp │ │ │ │ │ │ │ └── deferred_7.cpp │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── async_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── async_udp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_client.cpp │ │ │ │ │ │ │ ├── blocking_tcp_echo_server.cpp │ │ │ │ │ │ │ ├── blocking_udp_echo_client.cpp │ │ │ │ │ │ │ └── blocking_udp_echo_server.cpp │ │ │ │ │ │ ├── executors │ │ │ │ │ │ │ ├── actor.cpp │ │ │ │ │ │ │ ├── async_1.cpp │ │ │ │ │ │ │ ├── async_2.cpp │ │ │ │ │ │ │ ├── bank_account_1.cpp │ │ │ │ │ │ │ ├── bank_account_2.cpp │ │ │ │ │ │ │ ├── fork_join.cpp │ │ │ │ │ │ │ ├── pipeline.cpp │ │ │ │ │ │ │ └── priority_scheduler.cpp │ │ │ │ │ │ ├── iostreams │ │ │ │ │ │ │ └── http_client.cpp │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── composed_1.cpp │ │ │ │ │ │ │ ├── composed_2.cpp │ │ │ │ │ │ │ ├── composed_3.cpp │ │ │ │ │ │ │ ├── composed_4.cpp │ │ │ │ │ │ │ ├── composed_5.cpp │ │ │ │ │ │ │ ├── composed_6.cpp │ │ │ │ │ │ │ ├── composed_7.cpp │ │ │ │ │ │ │ └── composed_8.cpp │ │ │ │ │ │ └── parallel_group │ │ │ │ │ │ │ ├── parallel_sort.cpp │ │ │ │ │ │ │ ├── wait_for_all.cpp │ │ │ │ │ │ │ ├── wait_for_one.cpp │ │ │ │ │ │ │ ├── wait_for_one_error.cpp │ │ │ │ │ │ │ └── wait_for_one_success.cpp │ │ │ │ │ └── cpp17 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── coroutines_ts │ │ │ │ │ │ ├── chat_server.cpp │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ ├── echo_server_with_as_single_default.cpp │ │ │ │ │ │ ├── echo_server_with_as_tuple_default.cpp │ │ │ │ │ │ ├── echo_server_with_default.cpp │ │ │ │ │ │ ├── range_based_for.cpp │ │ │ │ │ │ └── refactored_echo_server.cpp │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── latency │ │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ │ ├── high_res_clock.hpp │ │ │ │ │ │ ├── tcp_client.cpp │ │ │ │ │ │ ├── tcp_server.cpp │ │ │ │ │ │ ├── udp_client.cpp │ │ │ │ │ │ └── udp_server.cpp │ │ │ │ │ ├── performance │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ ├── handler_allocator.hpp │ │ │ │ │ │ └── server.cpp │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ │ ├── can_prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_static.cpp │ │ │ │ │ │ │ ├── can_prefer_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_free.cpp │ │ │ │ │ │ │ ├── can_query_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_static.cpp │ │ │ │ │ │ │ ├── can_query_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_free.cpp │ │ │ │ │ │ │ ├── can_require_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_static.cpp │ │ │ │ │ │ │ ├── can_require_unsupported.cpp │ │ │ │ │ │ │ ├── prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── prefer_free_require.cpp │ │ │ │ │ │ │ ├── prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── prefer_member_require.cpp │ │ │ │ │ │ │ ├── prefer_static.cpp │ │ │ │ │ │ │ ├── prefer_unsupported.cpp │ │ │ │ │ │ │ ├── query_free.cpp │ │ │ │ │ │ │ ├── query_member.cpp │ │ │ │ │ │ │ ├── query_static.cpp │ │ │ │ │ │ │ ├── require_concept_free.cpp │ │ │ │ │ │ │ ├── require_concept_member.cpp │ │ │ │ │ │ │ ├── require_concept_static.cpp │ │ │ │ │ │ │ ├── require_free.cpp │ │ │ │ │ │ │ ├── require_member.cpp │ │ │ │ │ │ │ └── require_static.cpp │ │ │ │ │ │ ├── cpp11 │ │ │ │ │ │ │ ├── can_prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_static.cpp │ │ │ │ │ │ │ ├── can_prefer_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_free.cpp │ │ │ │ │ │ │ ├── can_query_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_static.cpp │ │ │ │ │ │ │ ├── can_query_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_free.cpp │ │ │ │ │ │ │ ├── can_require_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_static.cpp │ │ │ │ │ │ │ ├── can_require_unsupported.cpp │ │ │ │ │ │ │ ├── prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── prefer_free_require.cpp │ │ │ │ │ │ │ ├── prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── prefer_member_require.cpp │ │ │ │ │ │ │ ├── prefer_static.cpp │ │ │ │ │ │ │ ├── prefer_unsupported.cpp │ │ │ │ │ │ │ ├── query_free.cpp │ │ │ │ │ │ │ ├── query_member.cpp │ │ │ │ │ │ │ ├── query_static.cpp │ │ │ │ │ │ │ ├── require_concept_free.cpp │ │ │ │ │ │ │ ├── require_concept_member.cpp │ │ │ │ │ │ │ ├── require_concept_static.cpp │ │ │ │ │ │ │ ├── require_free.cpp │ │ │ │ │ │ │ ├── require_member.cpp │ │ │ │ │ │ │ └── require_static.cpp │ │ │ │ │ │ └── cpp14 │ │ │ │ │ │ │ ├── can_prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_free_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_prefer.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_member_require.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_static.cpp │ │ │ │ │ │ │ ├── can_prefer_not_preferable_unsupported.cpp │ │ │ │ │ │ │ ├── can_prefer_static.cpp │ │ │ │ │ │ │ ├── can_prefer_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_free.cpp │ │ │ │ │ │ │ ├── can_query_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_query_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_query_static.cpp │ │ │ │ │ │ │ ├── can_query_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_concept_static.cpp │ │ │ │ │ │ │ ├── can_require_concept_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_free.cpp │ │ │ │ │ │ │ ├── can_require_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_free.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_member.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_static.cpp │ │ │ │ │ │ │ ├── can_require_not_applicable_unsupported.cpp │ │ │ │ │ │ │ ├── can_require_static.cpp │ │ │ │ │ │ │ ├── can_require_unsupported.cpp │ │ │ │ │ │ │ ├── prefer_free_prefer.cpp │ │ │ │ │ │ │ ├── prefer_free_require.cpp │ │ │ │ │ │ │ ├── prefer_member_prefer.cpp │ │ │ │ │ │ │ ├── prefer_member_require.cpp │ │ │ │ │ │ │ ├── prefer_static.cpp │ │ │ │ │ │ │ ├── prefer_unsupported.cpp │ │ │ │ │ │ │ ├── query_free.cpp │ │ │ │ │ │ │ ├── query_member.cpp │ │ │ │ │ │ │ ├── query_static.cpp │ │ │ │ │ │ │ ├── require_concept_free.cpp │ │ │ │ │ │ │ ├── require_concept_member.cpp │ │ │ │ │ │ │ ├── require_concept_static.cpp │ │ │ │ │ │ │ ├── require_free.cpp │ │ │ │ │ │ │ ├── require_member.cpp │ │ │ │ │ │ │ └── require_static.cpp │ │ │ │ │ └── unit │ │ │ │ │ │ ├── archetypes │ │ │ │ │ │ ├── async_ops.hpp │ │ │ │ │ │ ├── async_result.hpp │ │ │ │ │ │ ├── gettable_socket_option.hpp │ │ │ │ │ │ ├── io_control_command.hpp │ │ │ │ │ │ └── settable_socket_option.hpp │ │ │ │ │ │ ├── associated_allocator.cpp │ │ │ │ │ │ ├── associated_cancellation_slot.cpp │ │ │ │ │ │ ├── associated_executor.cpp │ │ │ │ │ │ ├── associator.cpp │ │ │ │ │ │ ├── async_result.cpp │ │ │ │ │ │ ├── awaitable.cpp │ │ │ │ │ │ ├── basic_datagram_socket.cpp │ │ │ │ │ │ ├── basic_deadline_timer.cpp │ │ │ │ │ │ ├── basic_file.cpp │ │ │ │ │ │ ├── basic_random_access_file.cpp │ │ │ │ │ │ ├── basic_raw_socket.cpp │ │ │ │ │ │ ├── basic_readable_pipe.cpp │ │ │ │ │ │ ├── basic_seq_packet_socket.cpp │ │ │ │ │ │ ├── basic_serial_port.cpp │ │ │ │ │ │ ├── basic_signal_set.cpp │ │ │ │ │ │ ├── basic_socket.cpp │ │ │ │ │ │ ├── basic_socket_acceptor.cpp │ │ │ │ │ │ ├── basic_stream_file.cpp │ │ │ │ │ │ ├── basic_stream_socket.cpp │ │ │ │ │ │ ├── basic_streambuf.cpp │ │ │ │ │ │ ├── basic_waitable_timer.cpp │ │ │ │ │ │ ├── basic_writable_pipe.cpp │ │ │ │ │ │ ├── bind_cancellation_slot.cpp │ │ │ │ │ │ ├── bind_executor.cpp │ │ │ │ │ │ ├── buffer.cpp │ │ │ │ │ │ ├── buffer_registration.cpp │ │ │ │ │ │ ├── buffered_read_stream.cpp │ │ │ │ │ │ ├── buffered_stream.cpp │ │ │ │ │ │ ├── buffered_write_stream.cpp │ │ │ │ │ │ ├── buffers_iterator.cpp │ │ │ │ │ │ ├── cancellation_signal.cpp │ │ │ │ │ │ ├── cancellation_state.cpp │ │ │ │ │ │ ├── cancellation_type.cpp │ │ │ │ │ │ ├── co_spawn.cpp │ │ │ │ │ │ ├── completion_condition.cpp │ │ │ │ │ │ ├── compose.cpp │ │ │ │ │ │ ├── connect.cpp │ │ │ │ │ │ ├── connect_pipe.cpp │ │ │ │ │ │ ├── coroutine.cpp │ │ │ │ │ │ ├── deadline_timer.cpp │ │ │ │ │ │ ├── defer.cpp │ │ │ │ │ │ ├── detached.cpp │ │ │ │ │ │ ├── dispatch.cpp │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ ├── execution │ │ │ │ │ │ ├── any_executor.cpp │ │ │ │ │ │ ├── blocking.cpp │ │ │ │ │ │ ├── blocking_adaptation.cpp │ │ │ │ │ │ ├── bulk_execute.cpp │ │ │ │ │ │ ├── bulk_guarantee.cpp │ │ │ │ │ │ ├── connect.cpp │ │ │ │ │ │ ├── context_as.cpp │ │ │ │ │ │ ├── execute.cpp │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ ├── invocable_archetype.cpp │ │ │ │ │ │ ├── mapping.cpp │ │ │ │ │ │ ├── operation_state.cpp │ │ │ │ │ │ ├── outstanding_work.cpp │ │ │ │ │ │ ├── prefer_only.cpp │ │ │ │ │ │ ├── receiver.cpp │ │ │ │ │ │ ├── relationship.cpp │ │ │ │ │ │ ├── schedule.cpp │ │ │ │ │ │ ├── scheduler.cpp │ │ │ │ │ │ ├── sender.cpp │ │ │ │ │ │ ├── set_done.cpp │ │ │ │ │ │ ├── set_error.cpp │ │ │ │ │ │ ├── set_value.cpp │ │ │ │ │ │ ├── start.cpp │ │ │ │ │ │ └── submit.cpp │ │ │ │ │ │ ├── execution_context.cpp │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ ├── executor_work_guard.cpp │ │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── awaitable_operators.cpp │ │ │ │ │ │ ├── basic_channel.cpp │ │ │ │ │ │ ├── basic_concurrent_channel.cpp │ │ │ │ │ │ ├── channel.cpp │ │ │ │ │ │ ├── channel_traits.cpp │ │ │ │ │ │ ├── concurrent_channel.cpp │ │ │ │ │ │ ├── coro │ │ │ │ │ │ │ ├── cancel.cpp │ │ │ │ │ │ │ ├── co_spawn.cpp │ │ │ │ │ │ │ ├── exception.cpp │ │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ │ ├── partial.cpp │ │ │ │ │ │ │ ├── simple_test.cpp │ │ │ │ │ │ │ ├── stack_test.cpp │ │ │ │ │ │ │ └── use_coro.cpp │ │ │ │ │ │ ├── deferred.cpp │ │ │ │ │ │ └── promise.cpp │ │ │ │ │ │ ├── file_base.cpp │ │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── datagram_protocol.cpp │ │ │ │ │ │ ├── raw_protocol.cpp │ │ │ │ │ │ ├── seq_packet_protocol.cpp │ │ │ │ │ │ └── stream_protocol.cpp │ │ │ │ │ │ ├── high_resolution_timer.cpp │ │ │ │ │ │ ├── io_context.cpp │ │ │ │ │ │ ├── io_context_strand.cpp │ │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── address.cpp │ │ │ │ │ │ ├── address_v4.cpp │ │ │ │ │ │ ├── address_v4_iterator.cpp │ │ │ │ │ │ ├── address_v4_range.cpp │ │ │ │ │ │ ├── address_v6.cpp │ │ │ │ │ │ ├── address_v6_iterator.cpp │ │ │ │ │ │ ├── address_v6_range.cpp │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── basic_resolver.cpp │ │ │ │ │ │ ├── basic_resolver_entry.cpp │ │ │ │ │ │ ├── basic_resolver_iterator.cpp │ │ │ │ │ │ ├── basic_resolver_query.cpp │ │ │ │ │ │ ├── host_name.cpp │ │ │ │ │ │ ├── icmp.cpp │ │ │ │ │ │ ├── multicast.cpp │ │ │ │ │ │ ├── network_v4.cpp │ │ │ │ │ │ ├── network_v6.cpp │ │ │ │ │ │ ├── resolver_query_base.cpp │ │ │ │ │ │ ├── tcp.cpp │ │ │ │ │ │ ├── udp.cpp │ │ │ │ │ │ ├── unicast.cpp │ │ │ │ │ │ └── v6_only.cpp │ │ │ │ │ │ ├── is_read_buffered.cpp │ │ │ │ │ │ ├── is_write_buffered.cpp │ │ │ │ │ │ ├── local │ │ │ │ │ │ ├── basic_endpoint.cpp │ │ │ │ │ │ ├── connect_pair.cpp │ │ │ │ │ │ ├── datagram_protocol.cpp │ │ │ │ │ │ └── stream_protocol.cpp │ │ │ │ │ │ ├── packaged_task.cpp │ │ │ │ │ │ ├── placeholders.cpp │ │ │ │ │ │ ├── posix │ │ │ │ │ │ ├── basic_descriptor.cpp │ │ │ │ │ │ ├── basic_stream_descriptor.cpp │ │ │ │ │ │ ├── descriptor.cpp │ │ │ │ │ │ ├── descriptor_base.cpp │ │ │ │ │ │ └── stream_descriptor.cpp │ │ │ │ │ │ ├── post.cpp │ │ │ │ │ │ ├── random_access_file.cpp │ │ │ │ │ │ ├── read.cpp │ │ │ │ │ │ ├── read_at.cpp │ │ │ │ │ │ ├── read_until.cpp │ │ │ │ │ │ ├── readable_pipe.cpp │ │ │ │ │ │ ├── redirect_error.cpp │ │ │ │ │ │ ├── registered_buffer.cpp │ │ │ │ │ │ ├── serial_port.cpp │ │ │ │ │ │ ├── serial_port_base.cpp │ │ │ │ │ │ ├── signal_set.cpp │ │ │ │ │ │ ├── socket_base.cpp │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── context.cpp │ │ │ │ │ │ ├── context_base.cpp │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ ├── host_name_verification.cpp │ │ │ │ │ │ ├── rfc2818_verification.cpp │ │ │ │ │ │ ├── stream.cpp │ │ │ │ │ │ └── stream_base.cpp │ │ │ │ │ │ ├── static_thread_pool.cpp │ │ │ │ │ │ ├── steady_timer.cpp │ │ │ │ │ │ ├── strand.cpp │ │ │ │ │ │ ├── stream_file.cpp │ │ │ │ │ │ ├── streambuf.cpp │ │ │ │ │ │ ├── system_context.cpp │ │ │ │ │ │ ├── system_executor.cpp │ │ │ │ │ │ ├── system_timer.cpp │ │ │ │ │ │ ├── this_coro.cpp │ │ │ │ │ │ ├── thread.cpp │ │ │ │ │ │ ├── thread_pool.cpp │ │ │ │ │ │ ├── time_traits.cpp │ │ │ │ │ │ ├── ts │ │ │ │ │ │ ├── buffer.cpp │ │ │ │ │ │ ├── executor.cpp │ │ │ │ │ │ ├── internet.cpp │ │ │ │ │ │ ├── io_context.cpp │ │ │ │ │ │ ├── net.cpp │ │ │ │ │ │ ├── netfwd.cpp │ │ │ │ │ │ ├── socket.cpp │ │ │ │ │ │ └── timer.cpp │ │ │ │ │ │ ├── unit_test.hpp │ │ │ │ │ │ ├── use_awaitable.cpp │ │ │ │ │ │ ├── use_future.cpp │ │ │ │ │ │ ├── uses_executor.cpp │ │ │ │ │ │ ├── wait_traits.cpp │ │ │ │ │ │ ├── windows │ │ │ │ │ │ ├── basic_object_handle.cpp │ │ │ │ │ │ ├── basic_overlapped_handle.cpp │ │ │ │ │ │ ├── basic_random_access_handle.cpp │ │ │ │ │ │ ├── basic_stream_handle.cpp │ │ │ │ │ │ ├── object_handle.cpp │ │ │ │ │ │ ├── overlapped_handle.cpp │ │ │ │ │ │ ├── overlapped_ptr.cpp │ │ │ │ │ │ ├── random_access_handle.cpp │ │ │ │ │ │ └── stream_handle.cpp │ │ │ │ │ │ ├── writable_pipe.cpp │ │ │ │ │ │ ├── write.cpp │ │ │ │ │ │ └── write_at.cpp │ │ │ │ └── tools │ │ │ │ │ ├── handlerlive.pl │ │ │ │ │ ├── handlertree.pl │ │ │ │ │ └── handlerviz.pl │ │ │ └── test-driver │ │ ├── filesystem.hpp │ │ ├── json.hpp │ │ └── md5 │ │ │ ├── README.md │ │ │ ├── md5.cpp │ │ │ └── md5.h │ ├── font_awesome_6_compressed.h │ └── kenney_icon_font_extended.h ├── emulator.cpp ├── emulator.h ├── hw │ ├── aica │ │ ├── aica.cpp │ │ ├── aica.h │ │ ├── aica_if.cpp │ │ ├── aica_if.h │ │ ├── aica_mem.cpp │ │ ├── aica_mem.h │ │ ├── dsp.cpp │ │ ├── dsp.h │ │ ├── dsp_arm32.cpp │ │ ├── dsp_arm64.cpp │ │ ├── dsp_interp.cpp │ │ ├── dsp_x64.cpp │ │ ├── dsp_x86.cpp │ │ ├── sgc_if.cpp │ │ └── sgc_if.h │ ├── arm7 │ │ ├── arm-new.h │ │ ├── arm7.cpp │ │ ├── arm7.h │ │ ├── arm7_rec.cpp │ │ ├── arm7_rec.h │ │ ├── arm7_rec_arm32.cpp │ │ ├── arm7_rec_arm64.cpp │ │ ├── arm7_rec_x64.cpp │ │ ├── arm_mem.cpp │ │ └── arm_mem.h │ ├── bba │ │ ├── bba.cpp │ │ ├── bba.h │ │ ├── rtl8139c.cpp │ │ └── rtl8139c.h │ ├── flashrom │ │ ├── flashrom.cpp │ │ └── flashrom.h │ ├── gdrom │ │ ├── README.md │ │ ├── gdrom_if.h │ │ ├── gdrom_response.cpp │ │ ├── gdromv3.cpp │ │ └── gdromv3.h │ ├── holly │ │ ├── holly_intc.cpp │ │ ├── holly_intc.h │ │ ├── sb.cpp │ │ ├── sb.h │ │ ├── sb_mem.cpp │ │ └── sb_mem.h │ ├── hwreg.h │ ├── maple │ │ ├── maple_cfg.cpp │ │ ├── maple_cfg.h │ │ ├── maple_devs.cpp │ │ ├── maple_devs.h │ │ ├── maple_helper.cpp │ │ ├── maple_helper.h │ │ ├── maple_if.cpp │ │ ├── maple_if.h │ │ └── maple_jvs.cpp │ ├── mem │ │ ├── _vmem.cpp │ │ ├── _vmem.h │ │ ├── mem_watch.cpp │ │ └── mem_watch.h │ ├── modem │ │ ├── modem.cpp │ │ ├── modem.h │ │ └── modem_regs.h │ ├── naomi │ │ ├── awave_regs.h │ │ ├── awcartridge.cpp │ │ ├── awcartridge.h │ │ ├── card_reader.cpp │ │ ├── card_reader.h │ │ ├── decrypt.cpp │ │ ├── decrypt.h │ │ ├── gdcartridge.cpp │ │ ├── gdcartridge.h │ │ ├── m1cartridge.cpp │ │ ├── m1cartridge.h │ │ ├── m4cartridge.cpp │ │ ├── m4cartridge.h │ │ ├── naomi.cpp │ │ ├── naomi.h │ │ ├── naomi_cart.cpp │ │ ├── naomi_cart.h │ │ ├── naomi_flashrom.cpp │ │ ├── naomi_flashrom.h │ │ ├── naomi_m3comm.cpp │ │ ├── naomi_m3comm.h │ │ ├── naomi_regs.h │ │ ├── naomi_roms.cpp │ │ ├── naomi_roms.h │ │ ├── naomi_roms_eeprom.h │ │ └── naomi_roms_input.h │ ├── pvr │ │ ├── Renderer_if.cpp │ │ ├── Renderer_if.h │ │ ├── elan.cpp │ │ ├── elan.h │ │ ├── elan_struct.h │ │ ├── helper_classes.h │ │ ├── pvr.cpp │ │ ├── pvr.h │ │ ├── pvr_mem.cpp │ │ ├── pvr_mem.h │ │ ├── pvr_regs.cpp │ │ ├── pvr_regs.h │ │ ├── pvr_sb_regs.cpp │ │ ├── pvr_sb_regs.h │ │ ├── spg.cpp │ │ ├── spg.h │ │ ├── ta.cpp │ │ ├── ta.h │ │ ├── ta_const_df.h │ │ ├── ta_ctx.cpp │ │ ├── ta_ctx.h │ │ ├── ta_structs.h │ │ ├── ta_util.cpp │ │ └── ta_vtx.cpp │ └── sh4 │ │ ├── dyna │ │ ├── blockmanager.cpp │ │ ├── blockmanager.h │ │ ├── decoder.cpp │ │ ├── decoder.h │ │ ├── decoder_opcodes.h │ │ ├── driver.cpp │ │ ├── ngen.h │ │ ├── shil.cpp │ │ ├── shil.h │ │ ├── shil_canonical.h │ │ ├── ssa.cpp │ │ ├── ssa.h │ │ └── ssa_regalloc.h │ │ ├── fsca-table.h │ │ ├── interpr │ │ ├── sh4_fpu.cpp │ │ ├── sh4_interpreter.cpp │ │ ├── sh4_opcodes.cpp │ │ └── sh4_opcodes.h │ │ ├── modules │ │ ├── bsc.cpp │ │ ├── ccn.cpp │ │ ├── ccn.h │ │ ├── cpg.cpp │ │ ├── dmac.cpp │ │ ├── dmac.h │ │ ├── fastmmu.cpp │ │ ├── intc.cpp │ │ ├── mmu.cpp │ │ ├── mmu.h │ │ ├── modules.h │ │ ├── rtc.cpp │ │ ├── serial.cpp │ │ ├── tmu.cpp │ │ ├── ubc.cpp │ │ └── wince.h │ │ ├── sh4_cache.h │ │ ├── sh4_core.h │ │ ├── sh4_core_regs.cpp │ │ ├── sh4_if.h │ │ ├── sh4_interpreter.h │ │ ├── sh4_interrupts.cpp │ │ ├── sh4_interrupts.h │ │ ├── sh4_mem.cpp │ │ ├── sh4_mem.h │ │ ├── sh4_mmr.cpp │ │ ├── sh4_mmr.h │ │ ├── sh4_opcode_list.cpp │ │ ├── sh4_opcode_list.h │ │ ├── sh4_rom.cpp │ │ ├── sh4_rom.h │ │ ├── sh4_sched.cpp │ │ └── sh4_sched.h ├── imgread │ ├── ImgReader.cpp │ ├── cdi.cpp │ ├── chd.cpp │ ├── common.cpp │ ├── common.h │ ├── cue.cpp │ ├── gdi.cpp │ ├── ioctl.cpp │ ├── iso9660.h │ ├── isofs.cpp │ └── isofs.h ├── input │ ├── gamepad.h │ ├── gamepad_device.cpp │ ├── gamepad_device.h │ ├── keyboard_device.h │ ├── mapping.cpp │ ├── mapping.h │ ├── mouse.cpp │ └── mouse.h ├── khronos │ ├── APPLE │ │ ├── egl.h │ │ ├── eglplatform.h │ │ └── khrplatform.h │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── GL3 │ │ ├── gl3.h │ │ ├── gl3w.c │ │ └── gl3w.h │ ├── GL4 │ │ ├── gl3w.c │ │ ├── gl3w.h │ │ ├── glcorearb.h │ │ └── glext.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl2ext.h │ │ ├── gl3.h │ │ └── gl3platform.h │ ├── GLES32 │ │ ├── gl2ext.h │ │ └── gl32.h │ └── KHR │ │ └── khrplatform.h ├── linux-dist │ ├── dispmanx.cpp │ ├── dispmanx.h │ ├── evdev.cpp │ ├── evdev.h │ ├── evdev_gamepad.h │ ├── icon.h │ ├── main.cpp │ ├── x11.cpp │ ├── x11.h │ └── x11_keyboard.h ├── linux │ ├── common.cpp │ ├── context.cpp │ ├── libnx_vmem.cpp │ ├── posix_vmem.cpp │ └── unwind_info.cpp ├── log │ ├── BitSet.h │ ├── ConsoleListener.h │ ├── ConsoleListenerDroid.cpp │ ├── ConsoleListenerNix.cpp │ ├── ConsoleListenerWin.cpp │ ├── InMemoryListener.h │ ├── Log.h │ ├── LogManager.cpp │ ├── LogManager.h │ └── StringUtil.h ├── lua │ ├── flycast.lua │ ├── lua.cpp │ └── lua.h ├── network │ ├── dns.cpp │ ├── ggpo.cpp │ ├── ggpo.h │ ├── ifaddrs.c │ ├── miniupnp.cpp │ ├── miniupnp.h │ ├── naomi_network.cpp │ ├── naomi_network.h │ ├── net_handshake.cpp │ ├── net_handshake.h │ ├── net_platform.h │ ├── net_serial_maxspeed.h │ ├── output.cpp │ ├── output.h │ ├── picoppp.cpp │ └── picoppp.h ├── nullDC.cpp ├── oslib │ ├── audiobackend_alsa.cpp │ ├── audiobackend_coreaudio.cpp │ ├── audiobackend_directsound.cpp │ ├── audiobackend_libao.cpp │ ├── audiobackend_null.cpp │ ├── audiobackend_oboe.cpp │ ├── audiobackend_omx.cpp │ ├── audiobackend_oss.cpp │ ├── audiobackend_pulseaudio.cpp │ ├── audiobackend_sdl2.cpp │ ├── audiostream.cpp │ ├── audiostream.h │ ├── directory.h │ ├── host_context.h │ ├── oslib.cpp │ └── oslib.h ├── profiler │ ├── dc_profiler.cpp │ ├── dc_profiler.h │ ├── fc_profiler.cpp │ └── fc_profiler.h ├── rec-ARM │ └── rec_arm.cpp ├── rec-ARM64 │ ├── arm64_regalloc.h │ ├── arm64_unwind.h │ └── rec_arm64.cpp ├── rec-cpp │ └── rec_cpp.cpp ├── rec-x64 │ ├── rec_x64.cpp │ ├── x64_regalloc.h │ └── xbyak_base.h ├── rec-x86 │ ├── rec_x86.cpp │ ├── rec_x86.h │ ├── x86_ops.cpp │ └── x86_regalloc.h ├── reios │ ├── descrambl.cpp │ ├── descrambl.h │ ├── font.h │ ├── gdrom_hle.cpp │ ├── gdrom_hle.h │ ├── reios.cpp │ ├── reios.h │ ├── reios_elf.cpp │ └── reios_elf.h ├── rend │ ├── CustomTexture.cpp │ ├── CustomTexture.h │ ├── TexCache.cpp │ ├── TexCache.h │ ├── boxart │ │ ├── boxart.cpp │ │ ├── boxart.h │ │ ├── gamesdb.cpp │ │ ├── gamesdb.h │ │ ├── http_client.cpp │ │ ├── http_client.h │ │ ├── pvrparser.h │ │ ├── scraper.cpp │ │ └── scraper.h │ ├── dx11 │ │ ├── dx11_driver.h │ │ ├── dx11_naomi2.cpp │ │ ├── dx11_naomi2.h │ │ ├── dx11_overlay.cpp │ │ ├── dx11_overlay.h │ │ ├── dx11_quad.h │ │ ├── dx11_renderer.cpp │ │ ├── dx11_renderer.h │ │ ├── dx11_renderstate.cpp │ │ ├── dx11_renderstate.h │ │ ├── dx11_shaders.cpp │ │ ├── dx11_shaders.h │ │ ├── dx11_texture.cpp │ │ ├── dx11_texture.h │ │ ├── dx11context.cpp │ │ ├── dx11context.h │ │ ├── dx11context_lr.cpp │ │ ├── dx11context_lr.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ └── oit │ │ │ ├── dx11_oitbuffers.h │ │ │ ├── dx11_oitrenderer.cpp │ │ │ ├── dx11_oitshaders.cpp │ │ │ └── dx11_oitshaders.h │ ├── dx9 │ │ ├── d3d_overlay.cpp │ │ ├── d3d_overlay.h │ │ ├── d3d_renderer.cpp │ │ ├── d3d_renderer.h │ │ ├── d3d_shaders.cpp │ │ ├── d3d_shaders.h │ │ ├── d3d_texture.cpp │ │ ├── d3d_texture.h │ │ ├── dx9_driver.h │ │ ├── dxcontext.cpp │ │ ├── dxcontext.h │ │ ├── imgui_impl_dx9.cpp │ │ └── imgui_impl_dx9.h │ ├── game_scanner.h │ ├── gl4 │ │ ├── abuffer.cpp │ │ ├── gl4.h │ │ ├── gl4naomi2.cpp │ │ ├── gl4naomi2.h │ │ ├── gldraw.cpp │ │ ├── gles.cpp │ │ └── glsl.h │ ├── gles │ │ ├── glcache.h │ │ ├── gldraw.cpp │ │ ├── gles.cpp │ │ ├── gles.h │ │ ├── gltex.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── naomi2.cpp │ │ ├── naomi2.h │ │ ├── opengl_driver.cpp │ │ ├── opengl_driver.h │ │ ├── postprocess.cpp │ │ ├── postprocess.h │ │ └── quad.cpp │ ├── gui.cpp │ ├── gui.h │ ├── gui_android.cpp │ ├── gui_android.h │ ├── gui_chat.h │ ├── gui_cheats.cpp │ ├── gui_settings.cpp │ ├── gui_settings.h │ ├── gui_util.cpp │ ├── gui_util.h │ ├── imgui_driver.h │ ├── mainui.cpp │ ├── mainui.h │ ├── norend │ │ └── norend.cpp │ ├── osd.cpp │ ├── osd.h │ ├── shader_util.h │ ├── sorter.cpp │ ├── sorter.h │ ├── tileclip.h │ ├── transform_matrix.h │ └── vulkan │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── commandpool.h │ │ ├── compiler.cpp │ │ ├── compiler.h │ │ ├── desc_set.h │ │ ├── drawer.cpp │ │ ├── drawer.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── oit │ │ ├── oit_buffer.h │ │ ├── oit_drawer.cpp │ │ ├── oit_drawer.h │ │ ├── oit_pipeline.cpp │ │ ├── oit_pipeline.h │ │ ├── oit_renderer.cpp │ │ ├── oit_renderpass.cpp │ │ ├── oit_renderpass.h │ │ ├── oit_shaders.cpp │ │ └── oit_shaders.h │ │ ├── overlay.cpp │ │ ├── overlay.h │ │ ├── pipeline.cpp │ │ ├── pipeline.h │ │ ├── quad.cpp │ │ ├── quad.h │ │ ├── shaders.cpp │ │ ├── shaders.h │ │ ├── texture.cpp │ │ ├── texture.h │ │ ├── utils.h │ │ ├── vk_context_lr.cpp │ │ ├── vk_context_lr.h │ │ ├── vmallocator.cpp │ │ ├── vmallocator.h │ │ ├── vulkan.h │ │ ├── vulkan_context.cpp │ │ ├── vulkan_context.h │ │ ├── vulkan_driver.h │ │ ├── vulkan_renderer.cpp │ │ └── vulkan_renderer.h ├── sdl │ ├── sdl.cpp │ ├── sdl.h │ ├── sdl_gamepad.h │ └── sdl_keyboard.h ├── serialize.cpp ├── serialize.h ├── stdclass.cpp ├── stdclass.h ├── types.h ├── version.h.in ├── windows │ ├── comptr.h │ ├── fault_handler.cpp │ ├── firewall.h │ ├── rawinput.cpp │ ├── rawinput.h │ ├── unwind_info.cpp │ ├── win_keyboard.h │ ├── win_vmem.cpp │ ├── winmain.cpp │ └── xinput_gamepad.h └── wsi │ ├── context.h │ ├── egl.cpp │ ├── egl.h │ ├── gl32funcs.c │ ├── gl32funcs.h │ ├── gl4funcs.cpp │ ├── gl_context.cpp │ ├── gl_context.h │ ├── libretro.cpp │ ├── libretro.h │ ├── osx.cpp │ ├── osx.h │ ├── sdl.cpp │ ├── sdl.h │ ├── switcher.cpp │ ├── wgl.cpp │ ├── wgl.h │ ├── xgl.cpp │ └── xgl.h ├── docs ├── DreamCast_Specs.md ├── Dynarec Architecture.md ├── Naomi_Overview.md ├── Notable game bugs.md ├── microphone support notes.txt └── neil_corlett_aica_notes.txt ├── dojo_settings.png ├── dojo_settings_sans_match.png ├── enable_tcp_transmission.png ├── flycast_roms.json ├── gdtool ├── gdtool.sln ├── gdtool.vcxproj ├── gdtool.vcxproj.filters ├── gdtool.vcxproj.user └── src │ ├── cdromfs.cpp │ ├── cdromfs.h │ ├── cdromfs_imp.h │ └── main.cpp ├── gh-pages ├── CNAME ├── FlycastDojoFoxlum.png ├── SwitchFlycast.bat ├── SwitchFlycast.desktop ├── apple.svg ├── arkadyzja.png ├── book.svg ├── circle-question.svg ├── community.html ├── deck │ ├── Flycast Dojo.desktop │ ├── add_flycast_dojo_to_steam.png │ └── flycast_dojo_desktop_warning.png ├── discord.svg ├── dojo-install.gif ├── faq.html ├── fightcade.svg ├── flycast-dojo-b.png ├── flycast_dojo_arkadyzja.png ├── gamepad.svg ├── github-mark.svg ├── index.html ├── ko-fi.svg ├── match-code-qs-kofxi.gif ├── match_code_fotns_combined.png ├── patreon.svg ├── preview │ └── index.html ├── relays.json ├── steam.svg ├── switch-flycast.zip ├── switch_flycast_version.sh ├── tips │ ├── button-check-p1.png │ ├── local-game-quick-map.html │ ├── match-code-host.png │ ├── match-code-join.png │ ├── match-code-select.png │ ├── match-codes-relays.html │ ├── menu-quick-map.png │ ├── quick-map-player.png │ ├── relay-host.png │ ├── relay-servers-map.jpeg │ └── steam-deck-library.html ├── tower-cell.svg ├── tux.svg ├── windows.svg └── youtube.svg ├── hostdelay-1.png ├── hostdelay.png ├── intl ├── .gitignore ├── activate.py ├── core_option_regex.py ├── core_option_translation.py ├── crowdin.yaml ├── crowdin_prep.py ├── crowdin_source_upload.py ├── crowdin_translate.py ├── crowdin_translation_download.py ├── download_workflow.py ├── initial_sync.py ├── remove_initial_cycle.py ├── upload_workflow.py └── v1_to_v2_converter.py ├── lobby1.png ├── lobby2.png ├── lobby3.png ├── match-code-1.png ├── match-code-2.png ├── match-code-3.png ├── match-code-qs-kofxi.gif ├── mm-disable-ignore-savestate.png ├── receive_option.png ├── replay-server-search.png ├── replay1.png ├── shell ├── android-studio │ ├── .gitignore │ ├── build.gradle │ ├── debug.keystore │ ├── flycast │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── libs │ │ │ └── ouya-sdk.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── res │ │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── buttons.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reicast │ │ │ │ └── emulator │ │ │ │ ├── BaseGLActivity.java │ │ │ │ ├── Emulator.java │ │ │ │ ├── FileBrowser.java │ │ │ │ ├── NativeGLActivity.java │ │ │ │ ├── config │ │ │ │ └── Config.java │ │ │ │ ├── emu │ │ │ │ ├── AudioBackend.java │ │ │ │ ├── HttpClient.java │ │ │ │ ├── JNIdc.java │ │ │ │ ├── NativeGLView.java │ │ │ │ └── VirtualJoystickDelegate.java │ │ │ │ └── periph │ │ │ │ ├── InputDeviceManager.java │ │ │ │ ├── SipEmulator.java │ │ │ │ └── VJoy.java │ │ │ ├── jni │ │ │ └── src │ │ │ │ ├── Android.cpp │ │ │ │ ├── android_gamepad.h │ │ │ │ ├── android_keyboard.h │ │ │ │ └── http_client.h │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_banner.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── background_dark.xml │ │ │ ├── mipmap │ │ │ └── texture_dark.png │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── donottranslate.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── ic_launcher-web.png │ ├── icons │ │ └── cd.pdn │ ├── psd │ │ ├── dark_texture.psd │ │ ├── disk_mipmap.psd │ │ └── icon_drawable.psd │ └── settings.gradle ├── apple │ ├── common │ │ └── http_client.mm │ ├── emulator-ios │ │ ├── AltKit │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── AltKit │ │ │ │ ├── Extensions │ │ │ │ │ ├── ALTServerError+Conveniences.swift │ │ │ │ │ └── Result+Conveniences.swift │ │ │ │ ├── Server │ │ │ │ │ ├── Connection.swift │ │ │ │ │ ├── NetworkConnection.swift │ │ │ │ │ ├── Server.swift │ │ │ │ │ ├── ServerConnection.swift │ │ │ │ │ ├── ServerManager.swift │ │ │ │ │ └── ServerProtocol.swift │ │ │ │ └── Types │ │ │ │ │ └── CodableServerError.swift │ │ │ │ └── CAltKit │ │ │ │ ├── NSError+ALTServerError.h │ │ │ │ ├── NSError+ALTServerError.m │ │ │ │ ├── include │ │ │ │ └── NSError+ALTServerError.h │ │ │ │ └── module.modulemap │ │ ├── LLDBInitFile │ │ ├── OpenMP │ │ │ ├── build_ios_openmp.sh │ │ │ └── ios.toolchain.cmake │ │ ├── emulator │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── EmulatorView.h │ │ │ ├── EmulatorView.mm │ │ │ ├── FlycastStoryboard.storyboard │ │ │ ├── FlycastViewController.h │ │ │ ├── FlycastViewController.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── ABXYPad.imageset │ │ │ │ │ ├── ABXYPad.png │ │ │ │ │ ├── ABXYPad@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── 120-1.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 167.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40-1.png │ │ │ │ │ ├── 40-2.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 58-1.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 60.png │ │ │ │ │ ├── 76.png │ │ │ │ │ ├── 80-1.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── 87.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── appstore.png │ │ │ │ ├── Contents.json │ │ │ │ ├── DPad.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── DPad.png │ │ │ │ │ └── DPad@2x.png │ │ │ │ ├── JoystickBackground.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── JoystickBackground.png │ │ │ │ │ └── JoystickBackground@2x.png │ │ │ │ ├── JoystickButton.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── JoystickButton.png │ │ │ │ │ └── JoystickButton@2x.png │ │ │ │ ├── LTrigger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LTrigger.png │ │ │ │ │ └── LTrigger@2x.png │ │ │ │ ├── RTrigger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── RTrigger.png │ │ │ │ │ └── RTrigger@2x.png │ │ │ │ ├── Start.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Start.png │ │ │ │ │ └── Start@2x.png │ │ │ │ ├── flycast.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── flycast.png │ │ │ │ └── menuicon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── menuicon.png │ │ │ │ │ └── menuicon@2x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PadViewController.h │ │ │ ├── PadViewController.mm │ │ │ ├── PadViewController.xib │ │ │ ├── flycast-ios-Prefix.pch │ │ │ ├── flycast.entitlements │ │ │ ├── iCade-iOS │ │ │ │ ├── LICENSE │ │ │ │ ├── iCadeReaderView.h │ │ │ │ ├── iCadeReaderView.m │ │ │ │ └── iCadeState.h │ │ │ ├── ios_gamepad.h │ │ │ ├── ios_keyboard.h │ │ │ ├── ios_main.mm │ │ │ ├── ios_mouse.h │ │ │ └── main.m │ │ └── plist.in │ ├── emulator-osx │ │ ├── LLDBInitFile │ │ ├── MacOSXBundleInfo.plist.in │ │ └── emulator-osx │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-128.png │ │ │ │ ├── Icon-16.png │ │ │ │ ├── Icon-256.png │ │ │ │ ├── Icon-32.png │ │ │ │ ├── Icon-512.png │ │ │ │ └── Icon-64.png │ │ │ ├── SDLMain.h │ │ │ ├── SDLMain.mm │ │ │ └── osx-main.mm │ ├── generate_xcode_project.command │ └── libomp.rb ├── cmake │ └── FindMiniUPnPc.cmake ├── imgs │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ └── screenshot4.jpg ├── libretro │ ├── LogManager.cpp │ ├── LogManager.h │ ├── audiostream.cpp │ ├── keyboard_map.h │ ├── libretro.cpp │ ├── libretro.osx.def │ ├── libretro_core_option_defines.h │ ├── libretro_core_options.h │ ├── libretro_core_options_intl.h │ ├── option.cpp │ ├── option_lr.h │ ├── oslib.cpp │ ├── vmu_xhair.cpp │ └── vmu_xhair.h ├── linux │ ├── flycast-dojo.desktop │ ├── flycast-dojo.png │ ├── flycast.png │ ├── make-appimage.sh │ ├── man │ │ └── flycast-dojo.1 │ ├── mappings │ │ ├── controller_generic.cfg │ │ ├── controller_pandora.cfg │ │ ├── controller_xboxdrv.cfg │ │ ├── controller_xpad.cfg │ │ └── keyboard.cfg │ └── org.flycast-dojo.FlycastDojo.metainfo.xml ├── switch │ ├── context_switch.S │ ├── flycast.jpeg │ ├── nswitch.h │ ├── stubs.c │ ├── sys │ │ └── mman.h │ └── ucontext.h ├── uwp │ ├── flycast150.png │ ├── flycast44.png │ ├── flycast44.targetsize-48_altform-lightunplated.png │ ├── flycast44.targetsize-48_altform-unplated.png │ ├── flycast48.png │ ├── flycast50.png │ ├── http_client.cpp │ ├── package.appxManifest │ ├── sign_cert.pfx │ └── splash.png └── windows │ ├── flycast.ico │ ├── flycast.rc │ └── resource.h ├── spectate1.png ├── tests ├── files │ └── test_gdis │ │ ├── a │ │ ├── cs.gdi │ │ └── tracks │ │ │ ├── cs01.bin │ │ │ ├── cs02.raw │ │ │ └── cs03.bin │ │ ├── b │ │ ├── cs.gdi │ │ ├── cs01.bin │ │ ├── cs02.raw │ │ └── cs03.bin │ │ ├── c │ │ ├── cs.gdi │ │ └── tracks │ │ │ ├── cs01.bin │ │ │ ├── cs02.raw │ │ │ └── cs03.bin │ │ └── d │ │ ├── cs (0,1).bin │ │ ├── cs.gdi │ │ ├── cs02.raw │ │ └── cs03.bin └── src │ ├── AicaArmTest.cpp │ ├── CheatManagerTest.cpp │ ├── ConfigFileTest.cpp │ ├── Sh4InterpreterTest.cpp │ ├── div32_test.cpp │ ├── serialize_test.cpp │ ├── sh4_ops.h │ └── test_stubs.cpp ├── training-menu.png ├── training-mode-map.png ├── transmission-replay-server.png ├── validation-1.png ├── validation-2.png ├── validation-3.png ├── validation-4.png └── vcpkg.json /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FlycastDojoFoxlum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/FlycastDojoFoxlum.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/README.md -------------------------------------------------------------------------------- /contentsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/contentsettings.png -------------------------------------------------------------------------------- /controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/controls.png -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /version.h 2 | -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/README.md -------------------------------------------------------------------------------- /core/archive/7zArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/7zArchive.cpp -------------------------------------------------------------------------------- /core/archive/7zArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/7zArchive.h -------------------------------------------------------------------------------- /core/archive/ZipArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/ZipArchive.cpp -------------------------------------------------------------------------------- /core/archive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/ZipArchive.h -------------------------------------------------------------------------------- /core/archive/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/archive.cpp -------------------------------------------------------------------------------- /core/archive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/archive.h -------------------------------------------------------------------------------- /core/archive/rzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/rzip.cpp -------------------------------------------------------------------------------- /core/archive/rzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/archive/rzip.h -------------------------------------------------------------------------------- /core/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/build.h -------------------------------------------------------------------------------- /core/cfg/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/cfg.cpp -------------------------------------------------------------------------------- /core/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/cfg.h -------------------------------------------------------------------------------- /core/cfg/cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/cl.cpp -------------------------------------------------------------------------------- /core/cfg/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/ini.cpp -------------------------------------------------------------------------------- /core/cfg/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/ini.h -------------------------------------------------------------------------------- /core/cfg/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/option.cpp -------------------------------------------------------------------------------- /core/cfg/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cfg/option.h -------------------------------------------------------------------------------- /core/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cheats.cpp -------------------------------------------------------------------------------- /core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/cheats.h -------------------------------------------------------------------------------- /core/debug/debug_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/debug/debug_agent.h -------------------------------------------------------------------------------- /core/debug/gdb_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/debug/gdb_server.cpp -------------------------------------------------------------------------------- /core/debug/gdb_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/debug/gdb_server.h -------------------------------------------------------------------------------- /core/deps/chdpsr/cdipsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/chdpsr/cdipsr.cpp -------------------------------------------------------------------------------- /core/deps/chdpsr/cdipsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/chdpsr/cdipsr.h -------------------------------------------------------------------------------- /core/deps/dirent/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/dirent/dirent.h -------------------------------------------------------------------------------- /core/deps/ggpo/include/ggponet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/ggpo/include/ggponet.h -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/ggpo/lib/ggpo/main.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/ggpo/lib/ggpo/poll.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/ggpo/lib/ggpo/sync.cpp -------------------------------------------------------------------------------- /core/deps/ggpo/lib/ggpo/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/ggpo/lib/ggpo/sync.h -------------------------------------------------------------------------------- /core/deps/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/copying.txt -------------------------------------------------------------------------------- /core/deps/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/closed.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/doc.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/files.html -------------------------------------------------------------------------------- /core/deps/glm/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/index.html -------------------------------------------------------------------------------- /core/deps/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/open.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /core/deps/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/man.doxy -------------------------------------------------------------------------------- /core/deps/glm/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/manual.pdf -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/theme/bc_s.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/theme/bdwn.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/theme/doc.png -------------------------------------------------------------------------------- /core/deps/glm/doc/theme/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/doc/theme/open.png -------------------------------------------------------------------------------- /core/deps/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/common.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deps/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /core/deps/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/ext.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/glm.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /core/deps/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/integer.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/packing.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/simd/common.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /core/deps/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /core/deps/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /core/deps/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /core/deps/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/manual.md -------------------------------------------------------------------------------- /core/deps/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/readme.md -------------------------------------------------------------------------------- /core/deps/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /core/deps/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /core/deps/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /core/deps/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/util/autoexp.txt -------------------------------------------------------------------------------- /core/deps/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/util/glm.natvis -------------------------------------------------------------------------------- /core/deps/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/glm/util/usertype.dat -------------------------------------------------------------------------------- /core/deps/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest-message.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest-printers.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest-spi.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest.h -------------------------------------------------------------------------------- /core/deps/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/gtest_prod.h -------------------------------------------------------------------------------- /core/deps/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /core/deps/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/gtest/src/gtest.cc -------------------------------------------------------------------------------- /core/deps/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imconfig.h -------------------------------------------------------------------------------- /core/deps/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imgui.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imgui.h -------------------------------------------------------------------------------- /core/deps/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /core/deps/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imgui_internal.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /core/deps/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /core/deps/imgui/roboto_medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/imgui/roboto_medium.h -------------------------------------------------------------------------------- /core/deps/implot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/implot/LICENSE -------------------------------------------------------------------------------- /core/deps/implot/implot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/implot/implot.cpp -------------------------------------------------------------------------------- /core/deps/implot/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/implot/implot.h -------------------------------------------------------------------------------- /core/deps/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/json/json.hpp -------------------------------------------------------------------------------- /core/deps/libelf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/libelf/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/libelf/src/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/libelf/src/elf.c -------------------------------------------------------------------------------- /core/deps/libelf/src/elf32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/libelf/src/elf32.c -------------------------------------------------------------------------------- /core/deps/libelf/src/elf64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/libelf/src/elf64.c -------------------------------------------------------------------------------- /core/deps/lzma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7z.h -------------------------------------------------------------------------------- /core/deps/lzma/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zArcIn.c -------------------------------------------------------------------------------- /core/deps/lzma/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zBuf.c -------------------------------------------------------------------------------- /core/deps/lzma/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zBuf.h -------------------------------------------------------------------------------- /core/deps/lzma/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zCrc.c -------------------------------------------------------------------------------- /core/deps/lzma/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zCrc.h -------------------------------------------------------------------------------- /core/deps/lzma/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zCrcOpt.c -------------------------------------------------------------------------------- /core/deps/lzma/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zDec.c -------------------------------------------------------------------------------- /core/deps/lzma/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zFile.c -------------------------------------------------------------------------------- /core/deps/lzma/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zFile.h -------------------------------------------------------------------------------- /core/deps/lzma/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zStream.c -------------------------------------------------------------------------------- /core/deps/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/7zTypes.h -------------------------------------------------------------------------------- /core/deps/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Alloc.c -------------------------------------------------------------------------------- /core/deps/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Alloc.h -------------------------------------------------------------------------------- /core/deps/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Bcj2.c -------------------------------------------------------------------------------- /core/deps/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Bcj2.h -------------------------------------------------------------------------------- /core/deps/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Bra.c -------------------------------------------------------------------------------- /core/deps/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Bra.h -------------------------------------------------------------------------------- /core/deps/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Bra86.c -------------------------------------------------------------------------------- /core/deps/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/BraIA64.c -------------------------------------------------------------------------------- /core/deps/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Compiler.h -------------------------------------------------------------------------------- /core/deps/lzma/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/CpuArch.c -------------------------------------------------------------------------------- /core/deps/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/CpuArch.h -------------------------------------------------------------------------------- /core/deps/lzma/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Delta.c -------------------------------------------------------------------------------- /core/deps/lzma/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Delta.h -------------------------------------------------------------------------------- /core/deps/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzFind.c -------------------------------------------------------------------------------- /core/deps/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzFind.h -------------------------------------------------------------------------------- /core/deps/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzHash.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Lzma2Dec.c -------------------------------------------------------------------------------- /core/deps/lzma/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Lzma2Dec.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Lzma86.h -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Lzma86Dec.c -------------------------------------------------------------------------------- /core/deps/lzma/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Lzma86Enc.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaDec.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaDec.h -------------------------------------------------------------------------------- /core/deps/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /core/deps/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaLib.c -------------------------------------------------------------------------------- /core/deps/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/LzmaLib.h -------------------------------------------------------------------------------- /core/deps/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Precomp.h -------------------------------------------------------------------------------- /core/deps/lzma/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Sort.c -------------------------------------------------------------------------------- /core/deps/lzma/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/lzma/Sort.h -------------------------------------------------------------------------------- /core/deps/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/md5/md5.cpp -------------------------------------------------------------------------------- /core/deps/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/md5/md5.h -------------------------------------------------------------------------------- /core/deps/miniupnpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/.gitignore -------------------------------------------------------------------------------- /core/deps/miniupnpc/LICENSE: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /core/deps/miniupnpc/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/MANIFEST.in -------------------------------------------------------------------------------- /core/deps/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/Makefile -------------------------------------------------------------------------------- /core/deps/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/README -------------------------------------------------------------------------------- /core/deps/miniupnpc/VERSION: -------------------------------------------------------------------------------- 1 | 2.2.3 2 | -------------------------------------------------------------------------------- /core/deps/miniupnpc/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.jar 3 | -------------------------------------------------------------------------------- /core/deps/miniupnpc/miniupnpc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/miniupnpc.rc -------------------------------------------------------------------------------- /core/deps/miniupnpc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/setup.py -------------------------------------------------------------------------------- /core/deps/miniupnpc/src/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/miniupnpc/src/upnpc.c -------------------------------------------------------------------------------- /core/deps/miniupnpc/testreplyparse/GetExternalIPAddress.namevalue: -------------------------------------------------------------------------------- 1 | NewExternalIPAddress=1.2.3.4 2 | 3 | -------------------------------------------------------------------------------- /core/deps/nowide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/nowide/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/nowide/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/nowide/COPYING -------------------------------------------------------------------------------- /core/deps/nowide/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/nowide/Doxyfile.in -------------------------------------------------------------------------------- /core/deps/nowide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/nowide/README.md -------------------------------------------------------------------------------- /core/deps/nowide/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/nowide/test/test.hpp -------------------------------------------------------------------------------- /core/deps/picotcp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/COPYING -------------------------------------------------------------------------------- /core/deps/picotcp/LICENSE.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/LICENSE.GPLv2 -------------------------------------------------------------------------------- /core/deps/picotcp/LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/LICENSE.GPLv3 -------------------------------------------------------------------------------- /core/deps/picotcp/MODTREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/MODTREE -------------------------------------------------------------------------------- /core/deps/picotcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/Makefile -------------------------------------------------------------------------------- /core/deps/picotcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/README.md -------------------------------------------------------------------------------- /core/deps/picotcp/include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/include/heap.h -------------------------------------------------------------------------------- /core/deps/picotcp/mkdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/mkdeps.sh -------------------------------------------------------------------------------- /core/deps/picotcp/rules/crc.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_CRC 2 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/debug.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/eth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/eth.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/icmp4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/icmp4.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ipv4.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_IPV4 2 | MOD_OBJ+=$(LIBBASE)modules/pico_ipv4.o 3 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ipv4frag.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_IPV4FRAG 2 | MOD_OBJ+=$(LIBBASE)modules/pico_fragments.o 3 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/ppp.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_PPP 2 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_ppp.o 3 | 4 | -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/tap.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tcp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/tcp.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/tun.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/tun.mk -------------------------------------------------------------------------------- /core/deps/picotcp/rules/udp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/picotcp/rules/udp.mk -------------------------------------------------------------------------------- /core/deps/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/stb/stb_image.h -------------------------------------------------------------------------------- /core/deps/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/stb/stb_image_write.h -------------------------------------------------------------------------------- /core/deps/vixl/cpu-features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/cpu-features.cc -------------------------------------------------------------------------------- /core/deps/vixl/cpu-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/cpu-features.h -------------------------------------------------------------------------------- /core/deps/vixl/globals-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/globals-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/invalset-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/invalset-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/platform-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/platform-vixl.h -------------------------------------------------------------------------------- /core/deps/vixl/pool-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/pool-manager.h -------------------------------------------------------------------------------- /core/deps/vixl/utils-vixl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/utils-vixl.cc -------------------------------------------------------------------------------- /core/deps/vixl/utils-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/vixl/utils-vixl.h -------------------------------------------------------------------------------- /core/deps/xbrz/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/Changelog.txt -------------------------------------------------------------------------------- /core/deps/xbrz/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/License.txt -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/xbrz.cpp -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/xbrz.h -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/xbrz_config.h -------------------------------------------------------------------------------- /core/deps/xbrz/xbrz_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbrz/xbrz_tools.h -------------------------------------------------------------------------------- /core/deps/xbyak/.gitignore: -------------------------------------------------------------------------------- 1 | /build* # cmake 2 | -------------------------------------------------------------------------------- /core/deps/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /core/deps/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /core/deps/xbyak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/cmake/config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-targets.cmake") 2 | -------------------------------------------------------------------------------- /core/deps/xbyak/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/gen/avx_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/avx_type.hpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/b2hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/b2hex.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/gen_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/gen_code.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/sortline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/sortline.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/gen/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/gen/update.bat -------------------------------------------------------------------------------- /core/deps/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/readme.md -------------------------------------------------------------------------------- /core/deps/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/readme.txt -------------------------------------------------------------------------------- /core/deps/xbyak/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/sample/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/bf.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/calc.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/calc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/calc2.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/echo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/echo.bf -------------------------------------------------------------------------------- /core/deps/xbyak/sample/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/hello.bf -------------------------------------------------------------------------------- /core/deps/xbyak/sample/test0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/test0.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/sample/toyvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/sample/toyvm.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/Makefile -------------------------------------------------------------------------------- /core/deps/xbyak/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/a.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/address.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/jmp.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/jmp.sln -------------------------------------------------------------------------------- /core/deps/xbyak/test/jmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/jmp.vcproj -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/lib.h -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/lib_min.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/lib_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/lib_run.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/make_nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/make_nm.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/misc.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/readme.txt -------------------------------------------------------------------------------- /core/deps/xbyak/test/set_opt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/set_opt.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/sf_test.cpp -------------------------------------------------------------------------------- /core/deps/xbyak/test/state.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/state.pptx -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_avx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/test_avx.sh -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_nm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/test_nm.bat -------------------------------------------------------------------------------- /core/deps/xbyak/test/test_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/test/test_nm.sh -------------------------------------------------------------------------------- /core/deps/xbyak/xbyak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/xbyak.sln -------------------------------------------------------------------------------- /core/deps/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /core/deps/xxHash/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/.gitattributes -------------------------------------------------------------------------------- /core/deps/xxHash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/.gitignore -------------------------------------------------------------------------------- /core/deps/xxHash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/.travis.yml -------------------------------------------------------------------------------- /core/deps/xxHash/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/CHANGELOG -------------------------------------------------------------------------------- /core/deps/xxHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/LICENSE -------------------------------------------------------------------------------- /core/deps/xxHash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/Makefile -------------------------------------------------------------------------------- /core/deps/xxHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/README.md -------------------------------------------------------------------------------- /core/deps/xxHash/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/appveyor.yml -------------------------------------------------------------------------------- /core/deps/xxHash/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/doc/README.md -------------------------------------------------------------------------------- /core/deps/xxHash/libxxhash.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/libxxhash.pc.in -------------------------------------------------------------------------------- /core/deps/xxHash/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/tests/Makefile -------------------------------------------------------------------------------- /core/deps/xxHash/tests/collisions/.gitignore: -------------------------------------------------------------------------------- 1 | #build artefacts 2 | collisionsTest 3 | -------------------------------------------------------------------------------- /core/deps/xxHash/tests/collisions/allcodecs/README.md: -------------------------------------------------------------------------------- 1 | Put in this directory all hash algorithms to test 2 | -------------------------------------------------------------------------------- /core/deps/xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxh3.h -------------------------------------------------------------------------------- /core/deps/xxHash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxhash.c -------------------------------------------------------------------------------- /core/deps/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxhash.h -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxhsum.1 -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxhsum.1.md -------------------------------------------------------------------------------- /core/deps/xxHash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/deps/xxHash/xxhsum.c -------------------------------------------------------------------------------- /core/dojo/AsyncTcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/AsyncTcpServer.cpp -------------------------------------------------------------------------------- /core/dojo/AsyncTcpServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/AsyncTcpServer.hpp -------------------------------------------------------------------------------- /core/dojo/DojoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoFile.cpp -------------------------------------------------------------------------------- /core/dojo/DojoFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoFile.hpp -------------------------------------------------------------------------------- /core/dojo/DojoGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoGui.cpp -------------------------------------------------------------------------------- /core/dojo/DojoGui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoGui.hpp -------------------------------------------------------------------------------- /core/dojo/DojoLobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoLobby.cpp -------------------------------------------------------------------------------- /core/dojo/DojoLobby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoLobby.hpp -------------------------------------------------------------------------------- /core/dojo/DojoSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoSession.cpp -------------------------------------------------------------------------------- /core/dojo/DojoSession.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/DojoSession.hpp -------------------------------------------------------------------------------- /core/dojo/EmulatorHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/EmulatorHooks.cpp -------------------------------------------------------------------------------- /core/dojo/IconsFontAwesome6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/IconsFontAwesome6.h -------------------------------------------------------------------------------- /core/dojo/LobbyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/LobbyClient.cpp -------------------------------------------------------------------------------- /core/dojo/LobbyClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/LobbyClient.hpp -------------------------------------------------------------------------------- /core/dojo/MessageReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/MessageReader.hpp -------------------------------------------------------------------------------- /core/dojo/MessageWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/MessageWriter.hpp -------------------------------------------------------------------------------- /core/dojo/RelayClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/RelayClient.cpp -------------------------------------------------------------------------------- /core/dojo/RelayClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/RelayClient.hpp -------------------------------------------------------------------------------- /core/dojo/UDP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/UDP.hpp -------------------------------------------------------------------------------- /core/dojo/UDPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/UDPClient.cpp -------------------------------------------------------------------------------- /core/dojo/deps/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/Base64.h -------------------------------------------------------------------------------- /core/dojo/deps/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/filesystem.hpp -------------------------------------------------------------------------------- /core/dojo/deps/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/json.hpp -------------------------------------------------------------------------------- /core/dojo/deps/md5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/md5/README.md -------------------------------------------------------------------------------- /core/dojo/deps/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/md5/md5.cpp -------------------------------------------------------------------------------- /core/dojo/deps/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/dojo/deps/md5/md5.h -------------------------------------------------------------------------------- /core/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/emulator.cpp -------------------------------------------------------------------------------- /core/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/emulator.h -------------------------------------------------------------------------------- /core/hw/aica/aica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica.h -------------------------------------------------------------------------------- /core/hw/aica/aica_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica_if.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica_if.h -------------------------------------------------------------------------------- /core/hw/aica/aica_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica_mem.cpp -------------------------------------------------------------------------------- /core/hw/aica/aica_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/aica_mem.h -------------------------------------------------------------------------------- /core/hw/aica/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp.h -------------------------------------------------------------------------------- /core/hw/aica/dsp_arm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp_arm32.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp_arm64.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp_interp.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp_x64.cpp -------------------------------------------------------------------------------- /core/hw/aica/dsp_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/dsp_x86.cpp -------------------------------------------------------------------------------- /core/hw/aica/sgc_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/sgc_if.cpp -------------------------------------------------------------------------------- /core/hw/aica/sgc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/aica/sgc_if.h -------------------------------------------------------------------------------- /core/hw/arm7/arm-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm-new.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7_rec.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7_rec.h -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_arm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7_rec_arm32.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7_rec_arm64.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm7_rec_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm7_rec_x64.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm_mem.cpp -------------------------------------------------------------------------------- /core/hw/arm7/arm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/arm7/arm_mem.h -------------------------------------------------------------------------------- /core/hw/bba/bba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/bba/bba.cpp -------------------------------------------------------------------------------- /core/hw/bba/bba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/bba/bba.h -------------------------------------------------------------------------------- /core/hw/bba/rtl8139c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/bba/rtl8139c.cpp -------------------------------------------------------------------------------- /core/hw/bba/rtl8139c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/bba/rtl8139c.h -------------------------------------------------------------------------------- /core/hw/flashrom/flashrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/flashrom/flashrom.cpp -------------------------------------------------------------------------------- /core/hw/flashrom/flashrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/flashrom/flashrom.h -------------------------------------------------------------------------------- /core/hw/gdrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/gdrom/README.md -------------------------------------------------------------------------------- /core/hw/gdrom/gdrom_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/gdrom/gdrom_if.h -------------------------------------------------------------------------------- /core/hw/gdrom/gdrom_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/gdrom/gdrom_response.cpp -------------------------------------------------------------------------------- /core/hw/gdrom/gdromv3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/gdrom/gdromv3.cpp -------------------------------------------------------------------------------- /core/hw/gdrom/gdromv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/gdrom/gdromv3.h -------------------------------------------------------------------------------- /core/hw/holly/holly_intc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/holly_intc.cpp -------------------------------------------------------------------------------- /core/hw/holly/holly_intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/holly_intc.h -------------------------------------------------------------------------------- /core/hw/holly/sb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/sb.cpp -------------------------------------------------------------------------------- /core/hw/holly/sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/sb.h -------------------------------------------------------------------------------- /core/hw/holly/sb_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/sb_mem.cpp -------------------------------------------------------------------------------- /core/hw/holly/sb_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/holly/sb_mem.h -------------------------------------------------------------------------------- /core/hw/hwreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/hwreg.h -------------------------------------------------------------------------------- /core/hw/maple/maple_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_cfg.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_cfg.h -------------------------------------------------------------------------------- /core/hw/maple/maple_devs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_devs.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_devs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_devs.h -------------------------------------------------------------------------------- /core/hw/maple/maple_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_helper.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_helper.h -------------------------------------------------------------------------------- /core/hw/maple/maple_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_if.cpp -------------------------------------------------------------------------------- /core/hw/maple/maple_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_if.h -------------------------------------------------------------------------------- /core/hw/maple/maple_jvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/maple/maple_jvs.cpp -------------------------------------------------------------------------------- /core/hw/mem/_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/mem/_vmem.cpp -------------------------------------------------------------------------------- /core/hw/mem/_vmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/mem/_vmem.h -------------------------------------------------------------------------------- /core/hw/mem/mem_watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/mem/mem_watch.cpp -------------------------------------------------------------------------------- /core/hw/mem/mem_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/mem/mem_watch.h -------------------------------------------------------------------------------- /core/hw/modem/modem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/modem/modem.cpp -------------------------------------------------------------------------------- /core/hw/modem/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/modem/modem.h -------------------------------------------------------------------------------- /core/hw/modem/modem_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/modem/modem_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/awave_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/awave_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/awcartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/awcartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/awcartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/awcartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/card_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/card_reader.cpp -------------------------------------------------------------------------------- /core/hw/naomi/card_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/card_reader.h -------------------------------------------------------------------------------- /core/hw/naomi/decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/decrypt.cpp -------------------------------------------------------------------------------- /core/hw/naomi/decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/decrypt.h -------------------------------------------------------------------------------- /core/hw/naomi/gdcartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/gdcartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/gdcartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/gdcartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/m1cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/m1cartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/m1cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/m1cartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/m4cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/m4cartridge.cpp -------------------------------------------------------------------------------- /core/hw/naomi/m4cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/m4cartridge.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_cart.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_cart.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_flashrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_flashrom.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_flashrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_flashrom.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_m3comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_m3comm.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_m3comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_m3comm.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_regs.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_roms.cpp -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_roms.h -------------------------------------------------------------------------------- /core/hw/naomi/naomi_roms_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/naomi/naomi_roms_input.h -------------------------------------------------------------------------------- /core/hw/pvr/Renderer_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/Renderer_if.cpp -------------------------------------------------------------------------------- /core/hw/pvr/Renderer_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/Renderer_if.h -------------------------------------------------------------------------------- /core/hw/pvr/elan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/elan.cpp -------------------------------------------------------------------------------- /core/hw/pvr/elan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/elan.h -------------------------------------------------------------------------------- /core/hw/pvr/elan_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/elan_struct.h -------------------------------------------------------------------------------- /core/hw/pvr/helper_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/helper_classes.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_mem.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_mem.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_regs.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_regs.h -------------------------------------------------------------------------------- /core/hw/pvr/pvr_sb_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_sb_regs.cpp -------------------------------------------------------------------------------- /core/hw/pvr/pvr_sb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/pvr_sb_regs.h -------------------------------------------------------------------------------- /core/hw/pvr/spg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/spg.cpp -------------------------------------------------------------------------------- /core/hw/pvr/spg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/spg.h -------------------------------------------------------------------------------- /core/hw/pvr/ta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta.cpp -------------------------------------------------------------------------------- /core/hw/pvr/ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_const_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_const_df.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_ctx.cpp -------------------------------------------------------------------------------- /core/hw/pvr/ta_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_ctx.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_structs.h -------------------------------------------------------------------------------- /core/hw/pvr/ta_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_util.cpp -------------------------------------------------------------------------------- /core/hw/pvr/ta_vtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/pvr/ta_vtx.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/blockmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/blockmanager.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/decoder.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/decoder.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/driver.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ngen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/ngen.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/shil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/shil.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/shil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/shil.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/ssa.cpp -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/ssa.h -------------------------------------------------------------------------------- /core/hw/sh4/dyna/ssa_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/dyna/ssa_regalloc.h -------------------------------------------------------------------------------- /core/hw/sh4/fsca-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/fsca-table.h -------------------------------------------------------------------------------- /core/hw/sh4/interpr/sh4_fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/interpr/sh4_fpu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/bsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/bsc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ccn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/ccn.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ccn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/ccn.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/cpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/cpg.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/dmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/dmac.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/dmac.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/fastmmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/fastmmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/intc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/intc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/mmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/mmu.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/modules.h -------------------------------------------------------------------------------- /core/hw/sh4/modules/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/rtc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/serial.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/tmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/tmu.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/ubc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/ubc.cpp -------------------------------------------------------------------------------- /core/hw/sh4/modules/wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/modules/wince.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_cache.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_core.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_core_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_core_regs.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_if.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_interpreter.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_interrupts.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_interrupts.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_mem.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_mem.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_mmr.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_mmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_mmr.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_opcode_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_opcode_list.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_opcode_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_opcode_list.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_rom.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_rom.h -------------------------------------------------------------------------------- /core/hw/sh4/sh4_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_sched.cpp -------------------------------------------------------------------------------- /core/hw/sh4/sh4_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/hw/sh4/sh4_sched.h -------------------------------------------------------------------------------- /core/imgread/ImgReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/ImgReader.cpp -------------------------------------------------------------------------------- /core/imgread/cdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/cdi.cpp -------------------------------------------------------------------------------- /core/imgread/chd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/chd.cpp -------------------------------------------------------------------------------- /core/imgread/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/common.cpp -------------------------------------------------------------------------------- /core/imgread/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/common.h -------------------------------------------------------------------------------- /core/imgread/cue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/cue.cpp -------------------------------------------------------------------------------- /core/imgread/gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/gdi.cpp -------------------------------------------------------------------------------- /core/imgread/ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/ioctl.cpp -------------------------------------------------------------------------------- /core/imgread/iso9660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/iso9660.h -------------------------------------------------------------------------------- /core/imgread/isofs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/isofs.cpp -------------------------------------------------------------------------------- /core/imgread/isofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/imgread/isofs.h -------------------------------------------------------------------------------- /core/input/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/gamepad.h -------------------------------------------------------------------------------- /core/input/gamepad_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/gamepad_device.cpp -------------------------------------------------------------------------------- /core/input/gamepad_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/gamepad_device.h -------------------------------------------------------------------------------- /core/input/keyboard_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/keyboard_device.h -------------------------------------------------------------------------------- /core/input/mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/mapping.cpp -------------------------------------------------------------------------------- /core/input/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/mapping.h -------------------------------------------------------------------------------- /core/input/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/mouse.cpp -------------------------------------------------------------------------------- /core/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/input/mouse.h -------------------------------------------------------------------------------- /core/khronos/APPLE/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/APPLE/egl.h -------------------------------------------------------------------------------- /core/khronos/APPLE/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/APPLE/eglplatform.h -------------------------------------------------------------------------------- /core/khronos/APPLE/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/APPLE/khrplatform.h -------------------------------------------------------------------------------- /core/khronos/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/EGL/egl.h -------------------------------------------------------------------------------- /core/khronos/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/EGL/eglext.h -------------------------------------------------------------------------------- /core/khronos/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/EGL/eglplatform.h -------------------------------------------------------------------------------- /core/khronos/GL3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL3/gl3.h -------------------------------------------------------------------------------- /core/khronos/GL3/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL3/gl3w.c -------------------------------------------------------------------------------- /core/khronos/GL3/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL3/gl3w.h -------------------------------------------------------------------------------- /core/khronos/GL4/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL4/gl3w.c -------------------------------------------------------------------------------- /core/khronos/GL4/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL4/gl3w.h -------------------------------------------------------------------------------- /core/khronos/GL4/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL4/glcorearb.h -------------------------------------------------------------------------------- /core/khronos/GL4/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GL4/glext.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES2/gl2.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES2/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES2/gl2platform.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES3/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES3/gl3.h -------------------------------------------------------------------------------- /core/khronos/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES3/gl3platform.h -------------------------------------------------------------------------------- /core/khronos/GLES32/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES32/gl2ext.h -------------------------------------------------------------------------------- /core/khronos/GLES32/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/GLES32/gl32.h -------------------------------------------------------------------------------- /core/khronos/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/khronos/KHR/khrplatform.h -------------------------------------------------------------------------------- /core/linux-dist/dispmanx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/dispmanx.cpp -------------------------------------------------------------------------------- /core/linux-dist/dispmanx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void dispmanx_window_create(); 4 | -------------------------------------------------------------------------------- /core/linux-dist/evdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/evdev.cpp -------------------------------------------------------------------------------- /core/linux-dist/evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/evdev.h -------------------------------------------------------------------------------- /core/linux-dist/evdev_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/evdev_gamepad.h -------------------------------------------------------------------------------- /core/linux-dist/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/icon.h -------------------------------------------------------------------------------- /core/linux-dist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/main.cpp -------------------------------------------------------------------------------- /core/linux-dist/x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/x11.cpp -------------------------------------------------------------------------------- /core/linux-dist/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/x11.h -------------------------------------------------------------------------------- /core/linux-dist/x11_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux-dist/x11_keyboard.h -------------------------------------------------------------------------------- /core/linux/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux/common.cpp -------------------------------------------------------------------------------- /core/linux/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux/context.cpp -------------------------------------------------------------------------------- /core/linux/libnx_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux/libnx_vmem.cpp -------------------------------------------------------------------------------- /core/linux/posix_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux/posix_vmem.cpp -------------------------------------------------------------------------------- /core/linux/unwind_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/linux/unwind_info.cpp -------------------------------------------------------------------------------- /core/log/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/BitSet.h -------------------------------------------------------------------------------- /core/log/ConsoleListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/ConsoleListener.h -------------------------------------------------------------------------------- /core/log/ConsoleListenerNix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/ConsoleListenerNix.cpp -------------------------------------------------------------------------------- /core/log/ConsoleListenerWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/ConsoleListenerWin.cpp -------------------------------------------------------------------------------- /core/log/InMemoryListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/InMemoryListener.h -------------------------------------------------------------------------------- /core/log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/Log.h -------------------------------------------------------------------------------- /core/log/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/LogManager.cpp -------------------------------------------------------------------------------- /core/log/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/LogManager.h -------------------------------------------------------------------------------- /core/log/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/log/StringUtil.h -------------------------------------------------------------------------------- /core/lua/flycast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/lua/flycast.lua -------------------------------------------------------------------------------- /core/lua/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/lua/lua.cpp -------------------------------------------------------------------------------- /core/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/lua/lua.h -------------------------------------------------------------------------------- /core/network/dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/dns.cpp -------------------------------------------------------------------------------- /core/network/ggpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/ggpo.cpp -------------------------------------------------------------------------------- /core/network/ggpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/ggpo.h -------------------------------------------------------------------------------- /core/network/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/ifaddrs.c -------------------------------------------------------------------------------- /core/network/miniupnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/miniupnp.cpp -------------------------------------------------------------------------------- /core/network/miniupnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/miniupnp.h -------------------------------------------------------------------------------- /core/network/naomi_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/naomi_network.cpp -------------------------------------------------------------------------------- /core/network/naomi_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/naomi_network.h -------------------------------------------------------------------------------- /core/network/net_handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/net_handshake.cpp -------------------------------------------------------------------------------- /core/network/net_handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/net_handshake.h -------------------------------------------------------------------------------- /core/network/net_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/net_platform.h -------------------------------------------------------------------------------- /core/network/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/output.cpp -------------------------------------------------------------------------------- /core/network/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/output.h -------------------------------------------------------------------------------- /core/network/picoppp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/picoppp.cpp -------------------------------------------------------------------------------- /core/network/picoppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/network/picoppp.h -------------------------------------------------------------------------------- /core/nullDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/nullDC.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_alsa.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_null.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_oboe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_oboe.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_omx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_omx.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_oss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_oss.cpp -------------------------------------------------------------------------------- /core/oslib/audiobackend_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiobackend_sdl2.cpp -------------------------------------------------------------------------------- /core/oslib/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiostream.cpp -------------------------------------------------------------------------------- /core/oslib/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/audiostream.h -------------------------------------------------------------------------------- /core/oslib/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/directory.h -------------------------------------------------------------------------------- /core/oslib/host_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/host_context.h -------------------------------------------------------------------------------- /core/oslib/oslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/oslib.cpp -------------------------------------------------------------------------------- /core/oslib/oslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/oslib/oslib.h -------------------------------------------------------------------------------- /core/profiler/dc_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/profiler/dc_profiler.cpp -------------------------------------------------------------------------------- /core/profiler/dc_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/profiler/dc_profiler.h -------------------------------------------------------------------------------- /core/profiler/fc_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/profiler/fc_profiler.cpp -------------------------------------------------------------------------------- /core/profiler/fc_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/profiler/fc_profiler.h -------------------------------------------------------------------------------- /core/rec-ARM/rec_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-ARM/rec_arm.cpp -------------------------------------------------------------------------------- /core/rec-ARM64/arm64_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-ARM64/arm64_regalloc.h -------------------------------------------------------------------------------- /core/rec-ARM64/arm64_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-ARM64/arm64_unwind.h -------------------------------------------------------------------------------- /core/rec-ARM64/rec_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-ARM64/rec_arm64.cpp -------------------------------------------------------------------------------- /core/rec-cpp/rec_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-cpp/rec_cpp.cpp -------------------------------------------------------------------------------- /core/rec-x64/rec_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x64/rec_x64.cpp -------------------------------------------------------------------------------- /core/rec-x64/x64_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x64/x64_regalloc.h -------------------------------------------------------------------------------- /core/rec-x64/xbyak_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x64/xbyak_base.h -------------------------------------------------------------------------------- /core/rec-x86/rec_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x86/rec_x86.cpp -------------------------------------------------------------------------------- /core/rec-x86/rec_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x86/rec_x86.h -------------------------------------------------------------------------------- /core/rec-x86/x86_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x86/x86_ops.cpp -------------------------------------------------------------------------------- /core/rec-x86/x86_regalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rec-x86/x86_regalloc.h -------------------------------------------------------------------------------- /core/reios/descrambl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/descrambl.cpp -------------------------------------------------------------------------------- /core/reios/descrambl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/descrambl.h -------------------------------------------------------------------------------- /core/reios/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/font.h -------------------------------------------------------------------------------- /core/reios/gdrom_hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/gdrom_hle.cpp -------------------------------------------------------------------------------- /core/reios/gdrom_hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/gdrom_hle.h -------------------------------------------------------------------------------- /core/reios/reios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/reios.cpp -------------------------------------------------------------------------------- /core/reios/reios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/reios.h -------------------------------------------------------------------------------- /core/reios/reios_elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/reios_elf.cpp -------------------------------------------------------------------------------- /core/reios/reios_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/reios/reios_elf.h -------------------------------------------------------------------------------- /core/rend/CustomTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/CustomTexture.cpp -------------------------------------------------------------------------------- /core/rend/CustomTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/CustomTexture.h -------------------------------------------------------------------------------- /core/rend/TexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/TexCache.cpp -------------------------------------------------------------------------------- /core/rend/TexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/TexCache.h -------------------------------------------------------------------------------- /core/rend/boxart/boxart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/boxart.cpp -------------------------------------------------------------------------------- /core/rend/boxart/boxart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/boxart.h -------------------------------------------------------------------------------- /core/rend/boxart/gamesdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/gamesdb.cpp -------------------------------------------------------------------------------- /core/rend/boxart/gamesdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/gamesdb.h -------------------------------------------------------------------------------- /core/rend/boxart/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/http_client.cpp -------------------------------------------------------------------------------- /core/rend/boxart/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/http_client.h -------------------------------------------------------------------------------- /core/rend/boxart/pvrparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/pvrparser.h -------------------------------------------------------------------------------- /core/rend/boxart/scraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/scraper.cpp -------------------------------------------------------------------------------- /core/rend/boxart/scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/boxart/scraper.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_driver.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_naomi2.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_naomi2.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_overlay.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_overlay.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_quad.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_renderer.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_renderer.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_shaders.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_shaders.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_texture.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11_texture.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11context.cpp -------------------------------------------------------------------------------- /core/rend/dx11/dx11context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11context.h -------------------------------------------------------------------------------- /core/rend/dx11/dx11context_lr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx11/dx11context_lr.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_overlay.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_overlay.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_renderer.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_shaders.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_shaders.h -------------------------------------------------------------------------------- /core/rend/dx9/d3d_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_texture.cpp -------------------------------------------------------------------------------- /core/rend/dx9/d3d_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/d3d_texture.h -------------------------------------------------------------------------------- /core/rend/dx9/dx9_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/dx9_driver.h -------------------------------------------------------------------------------- /core/rend/dx9/dxcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/dxcontext.cpp -------------------------------------------------------------------------------- /core/rend/dx9/dxcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/dx9/dxcontext.h -------------------------------------------------------------------------------- /core/rend/game_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/game_scanner.h -------------------------------------------------------------------------------- /core/rend/gl4/abuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/abuffer.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/gl4.h -------------------------------------------------------------------------------- /core/rend/gl4/gl4naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/gl4naomi2.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gl4naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/gl4naomi2.h -------------------------------------------------------------------------------- /core/rend/gl4/gldraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/gldraw.cpp -------------------------------------------------------------------------------- /core/rend/gl4/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/gles.cpp -------------------------------------------------------------------------------- /core/rend/gl4/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gl4/glsl.h -------------------------------------------------------------------------------- /core/rend/gles/glcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/glcache.h -------------------------------------------------------------------------------- /core/rend/gles/gldraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/gldraw.cpp -------------------------------------------------------------------------------- /core/rend/gles/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/gles.cpp -------------------------------------------------------------------------------- /core/rend/gles/gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/gles.h -------------------------------------------------------------------------------- /core/rend/gles/gltex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/gltex.cpp -------------------------------------------------------------------------------- /core/rend/gles/naomi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/naomi2.cpp -------------------------------------------------------------------------------- /core/rend/gles/naomi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/naomi2.h -------------------------------------------------------------------------------- /core/rend/gles/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/postprocess.h -------------------------------------------------------------------------------- /core/rend/gles/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gles/quad.cpp -------------------------------------------------------------------------------- /core/rend/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui.cpp -------------------------------------------------------------------------------- /core/rend/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui.h -------------------------------------------------------------------------------- /core/rend/gui_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_android.cpp -------------------------------------------------------------------------------- /core/rend/gui_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_android.h -------------------------------------------------------------------------------- /core/rend/gui_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_chat.h -------------------------------------------------------------------------------- /core/rend/gui_cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_cheats.cpp -------------------------------------------------------------------------------- /core/rend/gui_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_settings.cpp -------------------------------------------------------------------------------- /core/rend/gui_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_settings.h -------------------------------------------------------------------------------- /core/rend/gui_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_util.cpp -------------------------------------------------------------------------------- /core/rend/gui_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/gui_util.h -------------------------------------------------------------------------------- /core/rend/imgui_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/imgui_driver.h -------------------------------------------------------------------------------- /core/rend/mainui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/mainui.cpp -------------------------------------------------------------------------------- /core/rend/mainui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/mainui.h -------------------------------------------------------------------------------- /core/rend/norend/norend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/norend/norend.cpp -------------------------------------------------------------------------------- /core/rend/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/osd.cpp -------------------------------------------------------------------------------- /core/rend/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/osd.h -------------------------------------------------------------------------------- /core/rend/shader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/shader_util.h -------------------------------------------------------------------------------- /core/rend/sorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/sorter.cpp -------------------------------------------------------------------------------- /core/rend/sorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/sorter.h -------------------------------------------------------------------------------- /core/rend/tileclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/tileclip.h -------------------------------------------------------------------------------- /core/rend/transform_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/transform_matrix.h -------------------------------------------------------------------------------- /core/rend/vulkan/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/buffer.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/buffer.h -------------------------------------------------------------------------------- /core/rend/vulkan/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/compiler.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/compiler.h -------------------------------------------------------------------------------- /core/rend/vulkan/desc_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/desc_set.h -------------------------------------------------------------------------------- /core/rend/vulkan/drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/drawer.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/drawer.h -------------------------------------------------------------------------------- /core/rend/vulkan/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/overlay.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/overlay.h -------------------------------------------------------------------------------- /core/rend/vulkan/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/pipeline.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/pipeline.h -------------------------------------------------------------------------------- /core/rend/vulkan/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/quad.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/quad.h -------------------------------------------------------------------------------- /core/rend/vulkan/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/shaders.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/shaders.h -------------------------------------------------------------------------------- /core/rend/vulkan/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/texture.cpp -------------------------------------------------------------------------------- /core/rend/vulkan/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/texture.h -------------------------------------------------------------------------------- /core/rend/vulkan/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/utils.h -------------------------------------------------------------------------------- /core/rend/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/rend/vulkan/vulkan.h -------------------------------------------------------------------------------- /core/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/sdl/sdl.cpp -------------------------------------------------------------------------------- /core/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/sdl/sdl.h -------------------------------------------------------------------------------- /core/sdl/sdl_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/sdl/sdl_gamepad.h -------------------------------------------------------------------------------- /core/sdl/sdl_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/sdl/sdl_keyboard.h -------------------------------------------------------------------------------- /core/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/serialize.cpp -------------------------------------------------------------------------------- /core/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/serialize.h -------------------------------------------------------------------------------- /core/stdclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/stdclass.cpp -------------------------------------------------------------------------------- /core/stdclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/stdclass.h -------------------------------------------------------------------------------- /core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/types.h -------------------------------------------------------------------------------- /core/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/version.h.in -------------------------------------------------------------------------------- /core/windows/comptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/comptr.h -------------------------------------------------------------------------------- /core/windows/firewall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/firewall.h -------------------------------------------------------------------------------- /core/windows/rawinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/rawinput.cpp -------------------------------------------------------------------------------- /core/windows/rawinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/rawinput.h -------------------------------------------------------------------------------- /core/windows/unwind_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/unwind_info.cpp -------------------------------------------------------------------------------- /core/windows/win_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/win_keyboard.h -------------------------------------------------------------------------------- /core/windows/win_vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/win_vmem.cpp -------------------------------------------------------------------------------- /core/windows/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/winmain.cpp -------------------------------------------------------------------------------- /core/windows/xinput_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/windows/xinput_gamepad.h -------------------------------------------------------------------------------- /core/wsi/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/context.h -------------------------------------------------------------------------------- /core/wsi/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/egl.cpp -------------------------------------------------------------------------------- /core/wsi/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/egl.h -------------------------------------------------------------------------------- /core/wsi/gl32funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/gl32funcs.c -------------------------------------------------------------------------------- /core/wsi/gl32funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/gl32funcs.h -------------------------------------------------------------------------------- /core/wsi/gl4funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/gl4funcs.cpp -------------------------------------------------------------------------------- /core/wsi/gl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/gl_context.cpp -------------------------------------------------------------------------------- /core/wsi/gl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/gl_context.h -------------------------------------------------------------------------------- /core/wsi/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/libretro.cpp -------------------------------------------------------------------------------- /core/wsi/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/libretro.h -------------------------------------------------------------------------------- /core/wsi/osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/osx.cpp -------------------------------------------------------------------------------- /core/wsi/osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/osx.h -------------------------------------------------------------------------------- /core/wsi/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/sdl.cpp -------------------------------------------------------------------------------- /core/wsi/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/sdl.h -------------------------------------------------------------------------------- /core/wsi/switcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/switcher.cpp -------------------------------------------------------------------------------- /core/wsi/wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/wgl.cpp -------------------------------------------------------------------------------- /core/wsi/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/wgl.h -------------------------------------------------------------------------------- /core/wsi/xgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/xgl.cpp -------------------------------------------------------------------------------- /core/wsi/xgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/core/wsi/xgl.h -------------------------------------------------------------------------------- /docs/DreamCast_Specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/docs/DreamCast_Specs.md -------------------------------------------------------------------------------- /docs/Dynarec Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/docs/Dynarec Architecture.md -------------------------------------------------------------------------------- /docs/Naomi_Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/docs/Naomi_Overview.md -------------------------------------------------------------------------------- /docs/Notable game bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/docs/Notable game bugs.md -------------------------------------------------------------------------------- /dojo_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/dojo_settings.png -------------------------------------------------------------------------------- /dojo_settings_sans_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/dojo_settings_sans_match.png -------------------------------------------------------------------------------- /enable_tcp_transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/enable_tcp_transmission.png -------------------------------------------------------------------------------- /flycast_roms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/flycast_roms.json -------------------------------------------------------------------------------- /gdtool/gdtool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/gdtool.sln -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/gdtool.vcxproj -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/gdtool.vcxproj.filters -------------------------------------------------------------------------------- /gdtool/gdtool.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/gdtool.vcxproj.user -------------------------------------------------------------------------------- /gdtool/src/cdromfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/src/cdromfs.cpp -------------------------------------------------------------------------------- /gdtool/src/cdromfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/src/cdromfs.h -------------------------------------------------------------------------------- /gdtool/src/cdromfs_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/src/cdromfs_imp.h -------------------------------------------------------------------------------- /gdtool/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gdtool/src/main.cpp -------------------------------------------------------------------------------- /gh-pages/CNAME: -------------------------------------------------------------------------------- 1 | flycast.dojo.ooo -------------------------------------------------------------------------------- /gh-pages/SwitchFlycast.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/SwitchFlycast.bat -------------------------------------------------------------------------------- /gh-pages/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/apple.svg -------------------------------------------------------------------------------- /gh-pages/arkadyzja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/arkadyzja.png -------------------------------------------------------------------------------- /gh-pages/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/book.svg -------------------------------------------------------------------------------- /gh-pages/circle-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/circle-question.svg -------------------------------------------------------------------------------- /gh-pages/community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/community.html -------------------------------------------------------------------------------- /gh-pages/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/discord.svg -------------------------------------------------------------------------------- /gh-pages/dojo-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/dojo-install.gif -------------------------------------------------------------------------------- /gh-pages/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/faq.html -------------------------------------------------------------------------------- /gh-pages/fightcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/fightcade.svg -------------------------------------------------------------------------------- /gh-pages/flycast-dojo-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/flycast-dojo-b.png -------------------------------------------------------------------------------- /gh-pages/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/gamepad.svg -------------------------------------------------------------------------------- /gh-pages/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/github-mark.svg -------------------------------------------------------------------------------- /gh-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/index.html -------------------------------------------------------------------------------- /gh-pages/ko-fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/ko-fi.svg -------------------------------------------------------------------------------- /gh-pages/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/patreon.svg -------------------------------------------------------------------------------- /gh-pages/preview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/preview/index.html -------------------------------------------------------------------------------- /gh-pages/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/relays.json -------------------------------------------------------------------------------- /gh-pages/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/steam.svg -------------------------------------------------------------------------------- /gh-pages/switch-flycast.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/switch-flycast.zip -------------------------------------------------------------------------------- /gh-pages/tips/relay-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/tips/relay-host.png -------------------------------------------------------------------------------- /gh-pages/tower-cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/tower-cell.svg -------------------------------------------------------------------------------- /gh-pages/tux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/tux.svg -------------------------------------------------------------------------------- /gh-pages/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/windows.svg -------------------------------------------------------------------------------- /gh-pages/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/gh-pages/youtube.svg -------------------------------------------------------------------------------- /hostdelay-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/hostdelay-1.png -------------------------------------------------------------------------------- /hostdelay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/hostdelay.png -------------------------------------------------------------------------------- /intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | crowdin-cli.jar 3 | *.h 4 | *.json 5 | -------------------------------------------------------------------------------- /intl/activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/activate.py -------------------------------------------------------------------------------- /intl/core_option_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/core_option_regex.py -------------------------------------------------------------------------------- /intl/crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/crowdin.yaml -------------------------------------------------------------------------------- /intl/crowdin_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/crowdin_prep.py -------------------------------------------------------------------------------- /intl/crowdin_source_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/crowdin_source_upload.py -------------------------------------------------------------------------------- /intl/crowdin_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/crowdin_translate.py -------------------------------------------------------------------------------- /intl/download_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/download_workflow.py -------------------------------------------------------------------------------- /intl/initial_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/initial_sync.py -------------------------------------------------------------------------------- /intl/remove_initial_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/remove_initial_cycle.py -------------------------------------------------------------------------------- /intl/upload_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/upload_workflow.py -------------------------------------------------------------------------------- /intl/v1_to_v2_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/intl/v1_to_v2_converter.py -------------------------------------------------------------------------------- /lobby1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/lobby1.png -------------------------------------------------------------------------------- /lobby2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/lobby2.png -------------------------------------------------------------------------------- /lobby3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/lobby3.png -------------------------------------------------------------------------------- /match-code-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/match-code-1.png -------------------------------------------------------------------------------- /match-code-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/match-code-2.png -------------------------------------------------------------------------------- /match-code-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/match-code-3.png -------------------------------------------------------------------------------- /match-code-qs-kofxi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/match-code-qs-kofxi.gif -------------------------------------------------------------------------------- /receive_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/receive_option.png -------------------------------------------------------------------------------- /replay-server-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/replay-server-search.png -------------------------------------------------------------------------------- /replay1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/replay1.png -------------------------------------------------------------------------------- /shell/android-studio/flycast/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /shell/android-studio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/android-studio/gradlew -------------------------------------------------------------------------------- /shell/apple/emulator-ios/AltKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /shell/apple/emulator-ios/AltKit/Sources/CAltKit/include/NSError+ALTServerError.h: -------------------------------------------------------------------------------- 1 | ../NSError+ALTServerError.h -------------------------------------------------------------------------------- /shell/apple/emulator-osx/LLDBInitFile: -------------------------------------------------------------------------------- 1 | br set -r "NSApplication run" -C "process handle -s false SIGBUS" -G true 2 | -------------------------------------------------------------------------------- /shell/apple/libomp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/apple/libomp.rb -------------------------------------------------------------------------------- /shell/imgs/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/imgs/screenshot1.png -------------------------------------------------------------------------------- /shell/imgs/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/imgs/screenshot2.png -------------------------------------------------------------------------------- /shell/imgs/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/imgs/screenshot3.png -------------------------------------------------------------------------------- /shell/imgs/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/imgs/screenshot4.jpg -------------------------------------------------------------------------------- /shell/libretro/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/LogManager.cpp -------------------------------------------------------------------------------- /shell/libretro/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/LogManager.h -------------------------------------------------------------------------------- /shell/libretro/keyboard_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/keyboard_map.h -------------------------------------------------------------------------------- /shell/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/libretro.cpp -------------------------------------------------------------------------------- /shell/libretro/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/option.cpp -------------------------------------------------------------------------------- /shell/libretro/option_lr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/option_lr.h -------------------------------------------------------------------------------- /shell/libretro/oslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/oslib.cpp -------------------------------------------------------------------------------- /shell/libretro/vmu_xhair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/vmu_xhair.cpp -------------------------------------------------------------------------------- /shell/libretro/vmu_xhair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/libretro/vmu_xhair.h -------------------------------------------------------------------------------- /shell/linux/flycast-dojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/linux/flycast-dojo.png -------------------------------------------------------------------------------- /shell/linux/flycast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/linux/flycast.png -------------------------------------------------------------------------------- /shell/linux/make-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/linux/make-appimage.sh -------------------------------------------------------------------------------- /shell/switch/context_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/switch/context_switch.S -------------------------------------------------------------------------------- /shell/switch/flycast.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/switch/flycast.jpeg -------------------------------------------------------------------------------- /shell/switch/nswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/switch/nswitch.h -------------------------------------------------------------------------------- /shell/switch/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/switch/stubs.c -------------------------------------------------------------------------------- /shell/switch/sys/mman.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /shell/switch/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/switch/ucontext.h -------------------------------------------------------------------------------- /shell/uwp/flycast150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/flycast150.png -------------------------------------------------------------------------------- /shell/uwp/flycast44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/flycast44.png -------------------------------------------------------------------------------- /shell/uwp/flycast48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/flycast48.png -------------------------------------------------------------------------------- /shell/uwp/flycast50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/flycast50.png -------------------------------------------------------------------------------- /shell/uwp/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/http_client.cpp -------------------------------------------------------------------------------- /shell/uwp/sign_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/sign_cert.pfx -------------------------------------------------------------------------------- /shell/uwp/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/uwp/splash.png -------------------------------------------------------------------------------- /shell/windows/flycast.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/windows/flycast.ico -------------------------------------------------------------------------------- /shell/windows/flycast.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/windows/flycast.rc -------------------------------------------------------------------------------- /shell/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/shell/windows/resource.h -------------------------------------------------------------------------------- /spectate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/spectate1.png -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/a/tracks/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/b/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs01.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/c/tracks/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs (0,1).bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs02.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_gdis/d/cs03.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/AicaArmTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/AicaArmTest.cpp -------------------------------------------------------------------------------- /tests/src/ConfigFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/ConfigFileTest.cpp -------------------------------------------------------------------------------- /tests/src/div32_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/div32_test.cpp -------------------------------------------------------------------------------- /tests/src/serialize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/serialize_test.cpp -------------------------------------------------------------------------------- /tests/src/sh4_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/sh4_ops.h -------------------------------------------------------------------------------- /tests/src/test_stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/tests/src/test_stubs.cpp -------------------------------------------------------------------------------- /training-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/training-menu.png -------------------------------------------------------------------------------- /training-mode-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/training-mode-map.png -------------------------------------------------------------------------------- /validation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/validation-1.png -------------------------------------------------------------------------------- /validation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/validation-2.png -------------------------------------------------------------------------------- /validation-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/validation-3.png -------------------------------------------------------------------------------- /validation-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/validation-4.png -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueminder/flycast-dojo/HEAD/vcpkg.json --------------------------------------------------------------------------------