Home
last modified time | relevance | path

Searched refs:file_name (Results 1 – 6 of 6) sorted by relevance

/btstack/tool/misc/
H A Dupdate_copyright.py23 def updateCopyright(dir_name, file_name): argument
26 infile = dir_name + "/" + file_name
27 outfile = dir_name + "/tmp_" + file_name
62 def requiresCopyrightUpdate(file_name): argument
66 with open(file_name, "rt") as fin:
99 file_name = root + "/" + f variable
100 if requiresCopyrightUpdate(file_name):
101 print(file_name)
/btstack/tool/
H A Dbtstack_memory_generator.py336 file_name = btstack_root + "/src/btstack_memory" variable
337 print ('Generating %s.[h|c]' % file_name)
339 f = open(file_name+".h", "w")
347 f = open(file_name+".c", "w")
456 file_name = btstack_root + "/test/btstack_memory/btstack_memory_test.cpp" variable
457 print ('Generating %s' % file_name)
459 f = open(file_name, "w")
H A Dupdate_filename.py20 def update_filename_tag(dir_name, file_name, has_tag): argument
21 infile = dir_name + "/" + file_name
22 outfile = dir_name + "/tmp_" + file_name
57 fout.write(filetag % file_name)
66 fout.write(filetag % file_name)
/btstack/port/arduino/docs/
H A Dupdate_listings.py308 file_name = examples_folder + example[0] + "/" + example[0] + ".ino"
309 writeListings(aout, file_name, example[0].replace("_",""))
/btstack/doc/manual/
H A Dmarkdown_create_examples.py337 file_name = examples_folder + example[0] + ".c"
338 writeListings(aout, file_name, example[0].replace("_",""), git_branch_name)
/btstack/3rd-party/lwip/core/src/apps/http/
H A Dhttpd.c2223 const char *file_name; local
2233 file_name = http_uri_buf;
2237 file_name = httpd_default_filenames[loop].name;
2239 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Looking for %s...\n", file_name));
2240 err = fs_open(&hs->file_handle, file_name);
2242 uri = file_name;