Home
last modified time | relevance | path

Searched refs:json_file_path (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/json/
Djson_file_value_serializer.cc20 const base::FilePath& json_file_path) in JSONFileValueSerializer() argument
21 : json_file_path_(json_file_path) { in JSONFileValueSerializer()
55 const base::FilePath& json_file_path, in JSONFileValueDeserializer() argument
57 : json_file_path_(json_file_path), options_(options), last_read_size_(0U) {} in JSONFileValueDeserializer()
Djson_file_value_serializer.h22 explicit JSONFileValueSerializer(const base::FilePath& json_file_path);
52 explicit JSONFileValueDeserializer(const base::FilePath& json_file_path,
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Dfetch_oauth2.cc38 static grpc_call_credentials* create_sts_creds(const char* json_file_path) { in create_sts_creds() argument
40 if (strlen(json_file_path) == 0) { in create_sts_creds()
49 "load_file", grpc_load_file(json_file_path, 1, &sts_options_slice))); in create_sts_creds()
/external/icu/tools/
Dicuutil.py106 json_file_path = os.path.join(icu_build_dir, "icu4c_data_filters.json")
107 print("json path: %s" % json_file_path)
108 writeFileContent(json_file_path, data_filters_json)
109 cmd.append('ICU_DATA_FILTER_FILE=%s' % json_file_path)
/external/pigweed/pw_build/py/pw_build/
Dpython_package.py162 json_file_path = Path(json_file.strip()).resolve()
163 with json_file_path.open() as json_fp: