Home
last modified time | relevance | path

Searched refs:_dir (Results 1 – 17 of 17) sorted by relevance

/freebsd/libexec/rc/rc.d/
H A Daccounting30 local _dir
32 _dir="${accounting_file%/*}"
33 if [ ! -d "$_dir" ]; then
34 if ! mkdir -p -m 0750 "$_dir"; then
35 err 1 "Could not create $_dir."
H A Ddevfs28 local _dir
31 _dir=${_dir_set%=*}
33 devfs_set_ruleset $_set $_dir
34 devfs_apply_ruleset $_set $_dir
/freebsd/contrib/bmake/mk/
H A Dsubdir.mk46 MISSING_DIR=echo "Missing ===> ${.CURDIR}/$$_dir"; exit 1
48 MISSING_DIR=echo "Skipping ===> ${.CURDIR}/$$_dir"; exit 0
55 _dir=${.TARGET:C/^[^-]*-//} \
57 if ! Exists ${.CURDIR}/$$_dir/[mM]akefile; then \
61 _nextdir_="$$_dir"; \
63 _nextdir_="$${_THISDIR_}/$$_dir"; \
66 (cd ${.CURDIR}/$$_dir && \
/freebsd/share/mk/
H A Dbsd.sysdir.mk6 .for _dir in ${SRCTOP:D${SRCTOP}/sys} \
9 .if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/kmod.mk)
10 SYSDIR= ${_dir:tA}
H A Dbsd.obj.mk63 .for _dir in ${_wantdirs}
64 .if !exists(${.OBJDIR}/${_dir}/)
65 _needdirs+= ${_dir}
/freebsd/bin/sh/
H A Dprofile19 for _dir in /etc /usr/local/etc ; do
20 for _file in "${_dir}"/profile "${_dir}"/profile.d/*.sh ; do
33 unset _loaded _dir _file
/freebsd/usr.sbin/adduser/
H A Drmuser.sh62 for _dir in ${TEMPDIRS} ; do
64 if [ ! -d $_dir ]; then
65 err "$_dir is not a valid directory."
68 verbose && echo -n "Removing files owned by ($login) in $_dir:"
69 filecount=`find 2>/dev/null "$_dir" -user "$login" -delete -print |
H A Dadduser.sh303 local _line= _owner= _perms= _file= _dir=
311 _dir="$(dirname "$msgfile")"
313 _perms=$(/usr/bin/find "$_dir" -name "$_file" -perm +07022 -prune)
314 _owner=$(/usr/bin/find "$_dir" -name "$_file" -user 0 -prune)
/freebsd/
H A DMakefile.libcompat105 .for _dir in lib/ncurses/tinfo ${_libmagic} ${_jevents}
107 ${_+_}cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ ${_t}
112 .for _dir in ${_LC_LIBDIRS.yes}
113 ${_+_}cd ${.CURDIR}/${_dir}; ${MAKE} ${.TARGET:S/^_lc_//}
H A DMakefile.inc11610 .for _dir in ${_sysent_dirs}
1611 sysent-${_dir}: .PHONY
1612 @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent"
1613 ${_+_}@env PATH=${_sysent_PATH:Q} ${MAKE} -C ${.CURDIR}/${_dir} sysent
1615 sysent: sysent-${_dir}
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h823 #define pci_map_sg(_hwdev, _sg, _nents, _dir) \ argument
825 _sg, _nents, (enum dma_data_direction)_dir)
826 #define pci_map_single(_hwdev, _ptr, _size, _dir) \ argument
828 (_ptr), (_size), (enum dma_data_direction)_dir)
829 #define pci_unmap_single(_hwdev, _addr, _size, _dir) \ argument
831 _addr, _size, (enum dma_data_direction)_dir)
832 #define pci_unmap_sg(_hwdev, _sg, _nents, _dir) \ argument
834 _sg, _nents, (enum dma_data_direction)_dir)
835 #define pci_map_page(_hwdev, _page, _offset, _size, _dir) \ argument
837 _offset, _size, (enum dma_data_direction)_dir)
838 pci_unmap_page(_hwdev,_dma_address,_size,_dir) global() argument
[all...]
/freebsd/contrib/tcpdump/cmake/Modules/
H A DFindPCAP.cmake268 string(REGEX REPLACE "-I" "" _dir ${_arg})
275 NOT "${_dir}" STREQUAL /usr/local/include)
277 list(APPEND CONFIG_PCAP_INCLUDE_DIRS ${_dir})
301 string(REGEX REPLACE "-L" "" _dir ${_arg})
308 NOT "${_dir}" STREQUAL /usr/local/lib)
310 list(APPEND CONFIG_PCAP_LIBRARY_DIRS ${_dir})
336 string(REGEX REPLACE "-L" "" _dir ${_arg})
343 NOT "${_dir}" STREQUAL /usr/local/lib)
345 list(APPEND CONFIG_PCAP_STATIC_LIBRARY_DIRS ${_dir})
/freebsd/tools/build/
H A DMakefile440 .for _dir in sbin usr/sbin usr/bin
442 @if [ -e ${DESTDIR}/${_dir} ] && [ ! -L ${DESTDIR}/${_dir} ]; then \
443 echo "removing old non-symlink ${DESTDIR}/${_dir}"; \
444 rm -rf "${DESTDIR}/${_dir}"; \
/freebsd/release/
H A Drelease.sh63 for _dir in /usr/bin /usr/local/bin; do
64 [ -x "${_dir}/git" ] && VCSCMD="/${_dir}/git"
/freebsd/lib/libutil/
H A Dlibutil.h160 int pw_init(const char *_dir, const char *_master);
182 int gr_init(const char *_dir, const char *_master);
/freebsd/contrib/atf/atf-sh/
H A Dlibatf-sh.subr499 for _dir in ${PATH}
501 if [ -x ${_dir}/${_prog} ]; then
503 echo ${_dir}/${_prog}
/freebsd/sys/netipsec/
H A Dkey.c572 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, idx) \ argument
575 (idx)->dir = (_dir); \