/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_edid_load.c | 208 char *edidname, *last, *colon, *fwstr, *edidstr, *fallback = NULL; in drm_edid_load_firmware() local 228 colon = strchr(edidname, ':'); in drm_edid_load_firmware() 229 if (colon != NULL) { in drm_edid_load_firmware() 230 if (strncmp(connector->name, edidname, colon - edidname)) in drm_edid_load_firmware() 232 edidname = colon + 1; in drm_edid_load_firmware()
|
/openbmc/openbmc/poky/meta/lib/patchtest/ |
H A D | patchtest_patterns.py | 11 colon = pyparsing.Literal(":") variable 74 shortlog = line_start + shortlog_target + colon + shortlog_summary + line_end 96 upstream_status = line_start + upstream_status_prefix + colon + upstream_status_valid_status 97 upstream_status_inappropriate_info = line_start + upstream_status_prefix + colon + inappropriateinfo 98 upstream_status_submitted_info = line_start + upstream_status_prefix + colon + submittedinfo
|
/openbmc/linux/net/core/ |
H A D | dev_ioctl.c | 675 char *colon; in dev_ioctl() local 684 colon = strchr(ifr->ifr_name, ':'); in dev_ioctl() 685 if (colon) in dev_ioctl() 686 *colon = 0; in dev_ioctl() 696 if (colon) in dev_ioctl() 697 *colon = ':'; in dev_ioctl() 716 if (colon) in dev_ioctl() 717 *colon = ':'; in dev_ioctl() 723 if (colon) in dev_ioctl() 724 *colon = ':'; in dev_ioctl() [all …]
|
/openbmc/u-boot/drivers/mtd/ |
H A D | mtd_uboot.c | 253 char mtd_name[MTD_NAME_MAX_LEN], *colon; in mtd_probe_devices() local 264 colon = strchr(mtdparts, ':'); in mtd_probe_devices() 265 if (colon > mtdparts_next) in mtd_probe_devices() 266 colon = NULL; in mtd_probe_devices() 268 if (!colon) { in mtd_probe_devices() 273 mtd_name_len = (unsigned int)(colon - mtdparts); in mtd_probe_devices()
|
/openbmc/linux/tools/lib/subcmd/ |
H A D | help.c | 231 char *paths, *path, *colon; in load_command_list() local 234 if ((colon = strchr(path, ':'))) in load_command_list() 235 *colon = 0; in load_command_list() 239 if (!colon) in load_command_list() 241 path = colon + 1; in load_command_list()
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gimp/gimp/gimp/ |
H A D | 0001-libtool-Do-not-add-build-time-library-paths-to-LD_LI.patch | 30 # Some systems cannot cope with colon-terminated $shlibpath_var 31 # The second colon is a workaround for a bug in BeOS R4 sed
|
/openbmc/linux/kernel/module/ |
H A D | kallsyms.c | 432 char *colon; in __module_kallsyms_lookup_name() local 434 colon = strnchr(name, MODULE_NAME_LEN, ':'); in __module_kallsyms_lookup_name() 435 if (colon) { in __module_kallsyms_lookup_name() 436 mod = find_module_all(name, colon - name, false); in __module_kallsyms_lookup_name() 438 return __find_kallsyms_symbol_value(mod, colon + 1); in __module_kallsyms_lookup_name()
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | missing-colon.err | 1 missing-colon.json:1:10: expected ':'
|
H A D | include-nested-err.json | 1 { 'include': 'missing-colon.json' }
|
H A D | doc-missing-colon.err | 1 doc-missing-colon.json:4:1: line should end with ':'
|
H A D | include-before-err.json | 2 { 'command' 'missing-colon' }
|
H A D | doc-missing-colon.json | 4 # @missing-colon
|
H A D | include-nested-err.err | 2 missing-colon.json:1:10: expected ':'
|
/openbmc/linux/tools/testing/selftests/nolibc/ |
H A D | nolibc-test.c | 1292 char *comma, *colon, *dash, *value; in main() local 1299 colon = strchr(test, ':'); in main() 1300 if (colon) in main() 1301 *(colon++) = '\0'; in main() 1315 value = colon; in main() 1317 colon = strchr(value, ':'); in main() 1318 if (colon) in main() 1319 *(colon++) = '\0'; in main() 1333 value = colon; in main() 1341 } while (colon && *colon); in main()
|
/openbmc/u-boot/tools/ |
H A D | genboardscfg.py | 162 colon = line.find(':CONFIG_') 163 if colon == -1: 166 f.write(line[colon + 1:])
|
/openbmc/qemu/qapi/ |
H A D | acpi.json | 47 # @file: colon (:) separated list of pathnames to load and concatenate 52 # @data: colon (:) separated list of pathnames to load and concatenate
|
/openbmc/bmcweb/include/ |
H A D | multipart_parser.hpp | 140 if (c == colon) in parse() 362 static constexpr char colon = ':'; member in MultipartParser
|
/openbmc/linux/kernel/trace/ |
H A D | trace_events_user.c | 1324 char *buf, int len, bool *colon) in user_dyn_field_set_string() argument 1328 *colon = false; in user_dyn_field_set_string() 1338 *colon = true; in user_dyn_field_set_string() 1351 char *buf, int len, bool colon) in user_field_set_string() argument 1362 if (colon) in user_field_set_string() 1832 bool colon = false, match = false; in user_field_match() local 1839 0, &colon); in user_field_match() 1841 len = user_field_set_string(field, field_name, 0, colon); in user_field_match() 1853 dyn_len, &colon); in user_field_match() 1855 user_field_set_string(field, field_name, len, colon); in user_field_match()
|
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/ |
H A D | 18-cve-2014-9913-unzip-buffer-overflow.patch | 24 + * colon, and use four-digit hexadecimal.
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | lcd-panel-cgram.rst | 8 number, and up to 8 couples of hex digits terminated by a semi-colon
|
/openbmc/linux/Documentation/networking/ |
H A D | alias.rst | 12 An alias is formed by adding a colon and a string when running ifconfig.
|
/openbmc/qemu/qga/ |
H A D | commands-posix.c | 902 char *line = NULL, *colon; in guest_get_network_stats() local 926 colon = strchr(trim_line, ':'); in guest_get_network_stats() 927 if (!colon) { in guest_get_network_stats() 930 if (colon - name_len == trim_line && in guest_get_network_stats() 932 if (sscanf(colon + 1, in guest_get_network_stats()
|
/openbmc/linux/net/wireless/ |
H A D | wext-core.c | 1125 char *colon; in compat_wext_handle_ioctl() local 1132 colon = strchr(iwr.ifr_name, ':'); in compat_wext_handle_ioctl() 1133 if (colon) in compat_wext_handle_ioctl() 1134 *colon = 0; in compat_wext_handle_ioctl()
|
/openbmc/linux/net/ipv4/ |
H A D | fib_frontend.c | 528 char *colon; in rtentry_to_fib_config() local 536 colon = strchr(devname, ':'); in rtentry_to_fib_config() 537 if (colon) in rtentry_to_fib_config() 538 *colon = 0; in rtentry_to_fib_config() 544 if (colon) { in rtentry_to_fib_config() 552 *colon = ':'; in rtentry_to_fib_config()
|
/openbmc/u-boot/net/ |
H A D | net.c | 1569 char *colon; in net_parse_bootfile() local 1574 colon = strchr(net_boot_file_name, ':'); in net_parse_bootfile() 1575 if (colon) { in net_parse_bootfile() 1578 strncpy(filename, colon + 1, max_len); in net_parse_bootfile()
|