Home
last modified time | relevance | path

Searched refs:pth (Results 1 – 25 of 33) sorted by relevance

12

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dchecksum.py99 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 Dutils.py1415 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 Ddevtool61 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 Dscriptpath.py25 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 Dscriptutils.py121 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 Dsdl.mk60 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 Dthreadtest.c125 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 Dlibpthsem.mk9 LIBPTHSEM_SITE = http://www.auto.tuwien.ac.at/~mkoegler/pth
32 LIBPTHSEM_CONFIG_SCRIPTS += pth-config
H A DConfig.in5 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 Dbcusdk.mk21 --without-pth-test \
22 --with-pth=$(STAGING_DIR)/usr
/OK3568_Linux_fs/buildroot/package/linknx/
H A Dlinknx.mk16 --without-pth-test \
17 --with-pth=$(STAGING_DIR)/usr \
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dtest_misc_tcp_hdr_options.c42 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 Dsched-messaging.c192 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 Drecipeutils.py410 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 Dpath.py275 def abs_path_trailing(pth): argument
276 pth_abs = os.path.abspath(pth)
H A Dcopy_buildsystem.py34 self.layerdirs = [os.path.abspath(pth) for pth in d.getVar('BBLAYERS').split()]
/OK3568_Linux_fs/kernel/tools/testing/selftests/futex/functional/
H A Dfutex_requeue_pi_signal_restart.c49 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 Dfutex_requeue_pi.c70 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 Denscript.mk15 ENSCRIPT_CONF_OPTS += --enable-threads=pth
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/npth/
H A Dnpth_1.6.bb3 HOMEPAGE = "https://www.gnu.org/software/pth/"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/classes/
H A Ddistutils3.bbclass57 rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/easy-install.pth
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dsetuptools3_legacy.bbclass62 rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/easy-install.pth
/OK3568_Linux_fs/kernel/fs/nfsd/
H A Dexport.c355 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 Dimage-manifest100 def find_git_repo(pth): argument
101 checkpth = pth
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Dmigration-1.7.rst104 pth (pth-config)

12