Home
last modified time | relevance | path

Searched refs:data_file (Results 1 – 9 of 9) sorted by relevance

/external/libevent/sample/
Dhttps-client.c220 const char *url = NULL, *data_file = NULL; in main() local
259 data_file = argv[i + 1]; in main()
475 if (data_file) { in main()
479 FILE * f = fopen(data_file, "rb"); in main()
499 r = evhttp_make_request(evcon, req, data_file ? EVHTTP_REQ_POST : EVHTTP_REQ_GET, uri); in main()
/external/llvm-project/libc/cmake/modules/
DLLVMLibCHeaderRules.cmake73 foreach(data_file IN LISTS ADD_GEN_HDR_DATA_FILES)
74 list(APPEND fq_data_files "${CMAKE_CURRENT_SOURCE_DIR}/${data_file}")
75 endforeach(data_file)
/external/autotest/client/cros/
Downership.py347 data_file = scoped_tempfile()
348 data_file.fo.write(data)
349 data_file.fo.seek(0)
357 stdin=data_file.fo,
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py39 def data_file(filename): function
50 ONLYCERT = data_file('ssl_cert.pem')
51 ONLYKEY = data_file('ssl_key.pem')
52 SIGNED_CERTFILE = data_file('keycert3.pem')
53 SIGNING_CA = data_file('pycacert.pem')
/external/python/cpython2/Lib/test/
Dtest_ssl.py33 def data_file(*name): function
41 CERTFILE = data_file("keycert.pem")
43 ONLYCERT = data_file("ssl_cert.pem")
44 ONLYKEY = data_file("ssl_key.pem")
47 CERTFILE_PROTECTED = data_file("keycert.passwd.pem")
48 ONLYKEY_PROTECTED = data_file("ssl_key.passwd.pem")
50 CAPATH = data_file("capath")
52 CAFILE_NEURONIO = data_file("capath", "4e1295a3.0")
53 CAFILE_CACERT = data_file("capath", "5ed36f99.0")
57 CRLFILE = data_file("revocation.crl")
[all …]
/external/python/parse_type/
D.coveragerc11 # data_file = .coverage
/external/python/cpython3/Lib/test/
Dtest_ssl.py56 def data_file(*name): function
64 CERTFILE = data_file("keycert.pem")
66 ONLYCERT = data_file("ssl_cert.pem")
67 ONLYKEY = data_file("ssl_key.pem")
70 CERTFILE_PROTECTED = data_file("keycert.passwd.pem")
71 ONLYKEY_PROTECTED = data_file("ssl_key.passwd.pem")
73 CAPATH = data_file("capath")
75 CAFILE_NEURONIO = data_file("capath", "4e1295a3.0")
76 CAFILE_CACERT = data_file("capath", "5ed36f99.0")
95 CRLFILE = data_file("revocation.crl")
[all …]
Dtest_compileall.py159 data_file = os.path.join(data_dir, 'file')
162 with open(data_file, 'w'):
164 compileall.compile_file(data_file)
/external/toolchain-utils/crosperf/
Dresults_cache.py185 with open(data_filename, 'r') as data_file:
186 raw_dict = json.load(data_file)
208 with open(data_filename, 'r') as data_file:
209 lines = data_file.readlines()