Searched refs:working_path (Results 1 – 2 of 2) sorted by relevance
/third_party/curl/lib/ |
D | curl_path.c | 43 char *working_path; in Curl_getworkingpath() local 47 Curl_urldecode(data->state.up.path, 0, &working_path, in Curl_getworkingpath() 57 (working_path_len > 3) && (!memcmp(working_path, "/~/", 3))) { in Curl_getworkingpath() 59 if(Curl_dyn_addn(&npath, &working_path[3], working_path_len - 3)) { in Curl_getworkingpath() 60 free(working_path); in Curl_getworkingpath() 65 (!strcmp("/~", working_path) || in Curl_getworkingpath() 66 ((working_path_len > 2) && !memcmp(working_path, "/~/", 3)))) { in Curl_getworkingpath() 68 free(working_path); in Curl_getworkingpath() 82 &working_path[copyfrom], working_path_len - copyfrom)) { in Curl_getworkingpath() 83 free(working_path); in Curl_getworkingpath() [all …]
|
/third_party/lz4/tests/ |
D | test-lz4-speed.py | 27 working_path = os.getcwd() + '/' + working_dir_name # /path/to/lz4/tests/speedTest variable 28 clone_path = working_path + '/' + 'lz4' # /path/to/lz4/tests/speedTest/lz4 77 logFileName = working_path + '/' + 'tmpEmailContent' 184 commitFileName = working_path + "/commit_" + branch.replace("/", "_") + ".txt" 216 logFileName = working_path + "/log_" + branch.replace("/", "_") + ".txt" 222 …resultsFileName = working_path + "/results_" + branch.replace("/", "_") + "_" + fileName.replace("… 227 …resultsFileName = working_path + "/results32_" + branch.replace("/", "_") + "_" + fileName.replace… 232 …resultsFileName = working_path + "/resultsClang_" + branch.replace("/", "_") + "_" + fileName.repl… 281 print("working_path=%s" % working_path) 297 if not os.path.isdir(working_path): [all …]
|