MCPcopy Create free account
hub / github.com/apache/trafficserver / LoadFile

Function LoadFile

lib/yamlcpp/src/parse.cpp:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32Node LoadFile(const std::string& filename) {
33 std::ifstream fin(filename);
34 if (!fin) {
35 throw BadFile(filename);
36 }
37 return Load(fin);
38}
39
40std::vector<Node> LoadAll(const std::string& input) {
41 std::stringstream stream(input);

Callers 12

loaderMethod · 0.85
create_runrootMethod · 0.85
loadLogConfigMethod · 0.85
runroot_mapFunction · 0.85
CB_handle_rpc_io_callFunction · 0.85
parse_fileMethod · 0.85
read_configurationFunction · 0.85
load_config_from_fileFunction · 0.85
initMethod · 0.85
TSRemapNewInstanceFunction · 0.85
yamlParserMethod · 0.85

Calls 2

BadFileFunction · 0.85
LoadFunction · 0.85

Tested by 1

CB_handle_rpc_io_callFunction · 0.68