Lines Matching refs:os

175     import os
264 if fixed_tmp_dir and 'LVGL_FIXED_TEMP_DIR' in os.environ:
265 temp_directory = os.environ['LVGL_FIXED_TEMP_DIR']
274 base_path = os.path.abspath(os.path.dirname(__file__))
275 project_path = os.path.abspath(os.path.join(base_path, '..'))
276 examples_path = os.path.join(project_path, 'examples')
277 lvgl_src_path = os.path.join(project_path, 'src')
278 latex_output_path = os.path.join(temp_directory, 'out_latex')
279 pdf_src_file = os.path.join(latex_output_path, 'LVGL.pdf')
280 pdf_dst_file = os.path.join(temp_directory, 'LVGL.pdf')
282 html_dst_path = os.path.join(project_path, 'out_html')
287 os.chdir(base_path)
294 start_dir = os.getcwd()
296 saved_dir = os.getcwd()
297 os.chdir(start_dir)
301 result = os.system(s)
302 os.chdir(saved_dir)
361 os.environ['LVGL_URLPATH'] = branch
362 os.environ['LVGL_GITCOMMIT'] = branch
389 if os.path.exists(html_dst_path):
412 c1 = os.path.exists(temp_directory)
415 temp_path = os.path.join(temp_directory, 'CHANGELOG.rst')
416 c2 = os.path.exists(temp_path)
417 temp_path = os.path.join(temp_directory, 'CODING_STYLE.rst')
418 c3 = os.path.exists(temp_path)
419 temp_path = os.path.join(temp_directory, 'CONTRIBUTING.rst')
420 c4 = os.path.exists(temp_path)
421 temp_path = os.path.join(temp_directory, '_ext')
422 c5 = os.path.exists(temp_path)
423 temp_path = os.path.join(temp_directory, '_static')
424 c6 = os.path.exists(temp_path)
425 temp_path = os.path.join(temp_directory, 'details')
426 c7 = os.path.exists(temp_path)
427 temp_path = os.path.join(temp_directory, 'intro')
428 c8 = os.path.exists(temp_path)
429 temp_path = os.path.join(temp_directory, 'examples')
430 c9 = os.path.exists(temp_path)
453 shutil.copytree(examples_path, os.path.join(temp_directory, 'examples'), dirs_exist_ok=True)
460 with open(os.path.join(temp_directory, 'Doxyfile'), 'rb') as f:
463 data = data.replace('#*#*LV_CONF_PATH*#*#', os.path.join(base_path, 'lv_conf.h'))
466 with open(os.path.join(temp_directory, 'Doxyfile'), 'wb') as f:
500 os.path.join(temp_directory, 'intro'),
501 os.path.join(temp_directory, 'intro', 'add-lvgl-to-your-project'),
502 os.path.join(temp_directory, 'details'),
503 os.path.join(temp_directory, 'details', 'base-widget'),
504 os.path.join(temp_directory, 'details', 'base-widget', 'layouts'),
505 os.path.join(temp_directory, 'details', 'base-widget', 'styles'),
506 os.path.join(temp_directory, 'details', 'debugging'),
507 os.path.join(temp_directory, 'details', 'integration'),
508 os.path.join(temp_directory, 'details', 'integration', 'bindings'),
509 os.path.join(temp_directory, 'details', 'integration', 'building'),
510 os.path.join(temp_directory, 'details', 'integration', 'chip'),
511 os.path.join(temp_directory, 'details', 'integration', 'driver'),
512 os.path.join(temp_directory, 'details', 'integration', 'driver', 'display'),
513 os.path.join(temp_directory, 'details', 'integration', 'driver', 'touchpad'),
514 os.path.join(temp_directory, 'details', 'integration', 'framework'),
515 os.path.join(temp_directory, 'details', 'integration', 'ide'),
516 os.path.join(temp_directory, 'details', 'integration', 'os'),
517 os.path.join(temp_directory, 'details', 'integration', 'os', 'yocto'),
518 os.path.join(temp_directory, 'details', 'integration', 'renderers'),
519 os.path.join(temp_directory, 'details', 'libs'),
520 os.path.join(temp_directory, 'details', 'main-components'),
521 os.path.join(temp_directory, 'details', 'other-components'),
522 os.path.join(temp_directory, 'details', 'widgets')
534 index_path = os.path.join(temp_directory, 'index.rst')
540 pdf_link_ref_str = 'PDF version: :download:`LVGL.pdf <LVGL.pdf>`' + os.linesep
552 cpu = os.cpu_count()
576 path = os.path.join(project_path, 'lv_version.h')
624 cpu = os.cpu_count()
640 if os.path.exists(temp_directory):