| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | checksum.py | 99 def checksum_dir(pth): argument 101 if pth == "/": 103 pth = pth.rstrip("/") 105 for root, dirs, files in os.walk(pth, topdown=True): 108 fullpth = os.path.join(root, name).replace(pth, os.path.join(pth, ".")) 115 for pth in filelist_regex.split(filelist): 116 if not pth: 118 pth = pth.strip() 119 if not pth: 121 exist = pth.split(":")[1] [all …]
|
| H A D | utils.py | 1415 def remove_trailing_sep(pth): argument 1416 if pth and pth[-1] == os.sep: 1417 pth = pth[:-1] 1418 return pth 1421 def canonicalise_path(pth): argument 1422 pth = remove_trailing_sep(pth) 1423 if 'HOME' in approved and '~' in pth: 1424 pth = os.path.expanduser(pth) 1425 return pth
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | devtool | 61 pth = self.get('General', 'init_path') 62 self.init_path = os.path.join(basepath, pth) 64 logger.error('init_path %s specified in config file cannot be found' % pth) 241 pth = basepath 242 while pth != '' and pth != os.sep: 243 if os.path.exists(os.path.join(pth, '.devtoolbase')): 245 basepath = pth 247 pth = os.path.dirname(pth)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/ |
| H A D | scriptpath.py | 25 for pth in os.environ['PATH'].split(':'): 26 if os.path.exists(os.path.join(pth, '../lib/bb')): 27 bitbakepath = os.path.abspath(os.path.join(pth, '..'))
|
| H A D | scriptutils.py | 121 for pth in bbfiles: 122 if pth.endswith('.bb'): 123 pthdir = os.path.dirname(pth) 276 def filter_src_subdirs(pth): argument 281 dirlist = os.listdir(pth)
|
| /OK3568_Linux_fs/buildroot/package/sdl/ |
| H A D | sdl.mk | 60 SDL_CONF_OPTS += --enable-pth 61 SDL_CONF_ENV += ac_cv_path_PTH_CONFIG=$(STAGING_DIR)/usr/bin/pth-config 64 SDL_CONF_OPTS += --disable-pth
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/timers/ |
| H A D | threadtest.c | 125 pthread_t pth[MAX_THREADS]; in main() local 170 pthread_create(&pth[i], 0, thread, 0); in main() 187 pthread_join(pth[i], &tret); in main()
|
| /OK3568_Linux_fs/buildroot/package/libpthsem/ |
| H A D | libpthsem.mk | 9 LIBPTHSEM_SITE = http://www.auto.tuwien.ac.at/~mkoegler/pth 32 LIBPTHSEM_CONFIG_SCRIPTS += pth-config
|
| H A D | Config.in | 5 GNU pth is a user mode multi threading library. pthsem is an 8 http://www.auto.tuwien.ac.at/~mkoegler/pth/
|
| /OK3568_Linux_fs/buildroot/package/bcusdk/ |
| H A D | bcusdk.mk | 21 --without-pth-test \ 22 --with-pth=$(STAGING_DIR)/usr
|
| /OK3568_Linux_fs/buildroot/package/linknx/ |
| H A D | linknx.mk | 16 --without-pth-test \ 17 --with-pth=$(STAGING_DIR)/usr \
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | test_misc_tcp_hdr_options.c | 42 struct tcphdr *pth; in __check_active_hdr_in() local 110 pth = (struct tcphdr *)(&hdr.ip6 + 1); in __check_active_hdr_in() 111 if (pth->dest != passive_lport_n || pth->source != active_lport_n) in __check_active_hdr_in()
|
| /OK3568_Linux_fs/kernel/tools/perf/bench/ |
| H A D | sched-messaging.c | 192 static unsigned int group(pthread_t *pth, in group() argument 221 pth[i] = create_worker(ctx, (void *)receiver); in group() 234 pth[num_fds+i] = create_worker(snd_ctx, (void *)sender); in group()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | recipeutils.py | 410 for pth in fetch.localpaths(): 411 if pth not in localpaths: 412 localpaths.append(os.path.abspath(pth)) 925 pth = os.path.abspath(fn) 927 while pth: 928 if os.path.exists(os.path.join(pth, 'conf', 'layer.conf')): 929 layerdir = pth 931 pth = os.path.dirname(pth) 932 if pth == '/':
|
| H A D | path.py | 275 def abs_path_trailing(pth): argument 276 pth_abs = os.path.abspath(pth)
|
| H A D | copy_buildsystem.py | 34 self.layerdirs = [os.path.abspath(pth) for pth in d.getVar('BBLAYERS').split()]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/futex/functional/ |
| H A D | futex_requeue_pi_signal_restart.c | 49 int create_rt_thread(pthread_t *pth, void*(*func)(void *), void *arg, in create_rt_thread() argument 78 ret = pthread_create(pth, &attr, func, arg); in create_rt_thread()
|
| H A D | futex_requeue_pi.c | 70 int create_rt_thread(pthread_t *pth, void*(*func)(void *), void *arg, in create_rt_thread() argument 99 ret = pthread_create(pth, &attr, func, arg); in create_rt_thread()
|
| /OK3568_Linux_fs/buildroot/package/enscript/ |
| H A D | enscript.mk | 15 ENSCRIPT_CONF_OPTS += --enable-threads=pth
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/npth/ |
| H A D | npth_1.6.bb | 3 HOMEPAGE = "https://www.gnu.org/software/pth/"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/classes/ |
| H A D | distutils3.bbclass | 57 rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/easy-install.pth
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | setuptools3_legacy.bbclass | 62 rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/easy-install.pth
|
| /OK3568_Linux_fs/kernel/fs/nfsd/ |
| H A D | export.c | 355 char *pth; in svc_export_request() local 358 pth = d_path(&exp->ex_path, *bpp, *blen); in svc_export_request() 359 if (IS_ERR(pth)) { in svc_export_request() 364 qword_add(bpp, blen, pth); in svc_export_request()
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | image-manifest | 100 def find_git_repo(pth): argument 101 checkpth = pth
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | migration-1.7.rst | 104 pth (pth-config)
|