Home
last modified time | relevance | path

Searched refs:dash (Results 1 – 25 of 52) sorted by relevance

123

/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/
H A D0009-demux-dash-include-cstdint-needed-for-uint64_t.patch4 Subject: [PATCH] demux: dash: include cstdint, needed for uint64_t
13 modules/demux/dash/mpd/TemplatedUri.hpp | 1 +
16 diff --git a/modules/demux/dash/mpd/TemplatedUri.hpp b/modules/demux/dash/mpd/TemplatedUri.hpp
18 --- a/modules/demux/dash/mpd/TemplatedUri.hpp
19 +++ b/modules/demux/dash/mpd/TemplatedUri.hpp
27 namespace dash
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-shells/dash/
H A Ddash_0.5.12.bb2 HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/"
13 CVE_PRODUCT = "dash:dash"
19 ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash"
23 …grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfd…
27 printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
/openbmc/linux/drivers/infiniband/hw/hfi1/
H A Dfault.c113 char *dash; in fault_opcodes_write() local
125 dash = strchr(token, '-'); in fault_opcodes_write()
126 if (dash) in fault_opcodes_write()
127 *dash = '\0'; in fault_opcodes_write()
130 if (dash) { in fault_opcodes_write()
131 token = dash + 1; in fault_opcodes_write()
/openbmc/openbmc/meta-raspberrypi/.github/workflows/docker-images/yocto-builder/
H A DDockerfile29 RUN echo "dash dash/sh boolean false" | debconf-set-selections \
30 && dpkg-reconfigure dash
/openbmc/linux/drivers/hwmon/
H A Dmc13783-adc.c232 char *dash; in mc13783_adc_probe() local
240 dash = strchr(priv->name, '-'); in mc13783_adc_probe()
241 if (dash) in mc13783_adc_probe()
242 *dash = '\0'; in mc13783_adc_probe()
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Doescripts.py121 dash = shutil.which("dash")
122 if dash is None:
124 self.run_oegitproxy(custom_shell=dash)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/sharutils/sharutils/
H A D0001-libopts.m4-accept-POSIX_SHELL-from-the-environment-d.patch35 POSIX_SHELL=`which dash`
47 POSIX_SHELL=`which dash`
/openbmc/openbmc/poky/meta/recipes-devtools/autoconf/autoconf/
H A Dpreferbash.patch10 For example, Debian by default has /bin/sh -> /bin/dash: dash is a faster
/openbmc/dbus-sensors/src/nvme/
H A DNVMeSensorMain.cpp123 size_t dash = rootName.find('-'); in deriveRootBus() local
124 if (dash == std::string::npos) in deriveRootBus()
130 return std::stoi(rootName.substr(0, dash)); in deriveRootBus()
/openbmc/openbmc/poky/meta/recipes-devtools/perl-cross/files/
H A Ddeterminism.patch7 whether the shell is bash or dash which can cause the test result to be incorrect.
19 and "" with dash
/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A Ddeterminism.patch7 whether the shell is bash or dash which can cause the test result to be incorrect.
19 and "" with dash
/openbmc/u-boot/arch/arm/dts/
H A Dfsl-lx2160a-rdb.dts6 * Sriram Dash <sriram.dash@nxp.com>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A Dbashism.patch1 ${x//y/} is a bash syntax. Replace with something dash compatible
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/
H A Dklibc-utils.inc6 install -m 755 usr/dash/shared/sh ${D}${base_bindir}/sh.shared
8 install -m 755 usr/dash/static/sh ${D}${base_bindir}/sh
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntp/ntp/
H A Dreproducibility-fixed-path-to-posix-shell.patch19 - POSIX_SHELL=`which dash`
/openbmc/qemu/qga/
H A Dcommands-linux.c135 char *line = NULL, *dash; in build_fs_mount_list() local
152 dash = strstr(line + dir_e, " - "); in build_fs_mount_list()
153 if (!dash) { in build_fs_mount_list()
156 ret = sscanf(dash, " - %n%*s%n %n%*s%n%c", in build_fs_mount_list()
162 dash[type_e] = 0; in build_fs_mount_list()
163 dash[dev_e] = 0; in build_fs_mount_list()
165 decode_mntname(dash + dev_s, dev_e - dev_s); in build_fs_mount_list()
168 if (strcmp("btrfs", dash + type_s) != 0 || in build_fs_mount_list()
169 dev_major_minor(dash + dev_s, &devmajor, &devminor) < 0) { in build_fs_mount_list()
176 mount->devtype = g_strdup(dash + type_s); in build_fs_mount_list()
/openbmc/openbmc/poky/meta/recipes-extended/bash/bash/
H A Dfix-run-builtins.patch30 # sets on startup. Also test code that prefixes argv[0] with a dash.
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A D06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch244 + /* Assume that charsets can't start with a dash to spot arguments misuse */
280 + /* Assume that charsets can't start with a dash to spot arguments misuse */
344 + /* Assume that charsets can't start with a dash to spot arguments misuse */
380 + /* Assume that charsets can't start with a dash to spot arguments misuse */
/openbmc/linux/tools/testing/selftests/nolibc/
H A Dnolibc-test.c1292 char *comma, *colon, *dash, *value; in main() local
1321 dash = strchr(value, '-'); in main()
1322 if (dash) in main()
1323 *(dash++) = '\0'; in main()
1328 if (!dash) in main()
1330 else if (*dash) in main()
1331 max = atoi(dash); in main()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/tcpreplay/tcpreplay/
H A D0001-libopts.m4-set-POSIX_SHELL-to-bin-sh.patch28 - POSIX_SHELL=`which dash`
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/
H A D0002-Fix-configure-when-bin-sh-is-not-bash.patch11 When /bin/sh used by autoconf is not bash, e.g. dash, configure
/openbmc/linux/tools/testing/selftests/sparc64/drivers/
H A Dadi-test.c150 char *dash, *end_ptr; in build_memory_map() local
156 dash = strstr(line, "-"); in build_memory_map()
157 dash[0] = 0x20; in build_memory_map()
/openbmc/openbmc/poky/meta/recipes-devtools/rsync/files/
H A Ddetermism.patch11 SHELL (/bin/sh) is dash or bash.
/openbmc/openbmc/poky/meta/recipes-core/glibc/
H A Dglibc.inc39 # glibc make-syscalls.sh has a number of issues with /bin/dash and
/openbmc/qemu/tests/qtest/
H A Dmigration-helpers.c419 const char *dash = strrchr(mname, '-'); in resolve_machine_version() local
424 if (dash && dot) { in resolve_machine_version()

123