Home
last modified time | relevance | path

Searched refs:dict_file (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/tools/buildgen/
Dmako_renderer.py104 with open(arg, 'rb') as dict_file:
105 dictionary = pickle.load(dict_file)
109 with open(arg, 'r') as dict_file:
112 yaml.load(dict_file.read(), Loader=yaml.FullLoader))
128 with open(preprocessed_output, 'wb') as dict_file:
129 pickle.dump(dictionary, dict_file)
/external/grpc-grpc/tools/buildgen/
Dmako_renderer.py106 with open(arg, 'r') as dict_file:
107 dictionary = pickle.load(dict_file)
111 with open(arg, 'r') as dict_file:
112 bunch.merge_json(json_dict, yaml.load(dict_file.read()))
128 with open(preprocessed_output, 'w') as dict_file:
129 pickle.dump(dictionary, dict_file)
/external/oss-fuzz/infra/base-images/base-runner/
Drun_fuzzer46 local dict_file="$FUZZER.dict"
51 if [[ -z "$dict" && -f "$dict_file" ]]; then
52 dict="$dict_file"