Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 4 of 4) sorted by relevance

/pciutils/
H A Dcommon.c93 char *sep = strchr(arg, '='); in set_pci_option() local
94 if (!sep) in set_pci_option()
96 *sep++ = 0; in set_pci_option()
97 if (pci_set_param(pacc, arg, sep) < 0) in set_pci_option()
/pciutils/lib/
H A Dmmio-ports.c113 const char *sep, *next; in validate_addrs() local
126 sep = strchr(addrs, '/'); in validate_addrs()
127 if (!sep) in validate_addrs()
130 if (!isxdigit(*addrs) || !isxdigit(*(sep+1))) in validate_addrs()
135 if (errno || endptr != sep || (num & 3)) in validate_addrs()
139 num = strtoull(sep+1, &endptr, 16); in validate_addrs()
H A Dinit.c298 char *path, *sep; in pci_init_name_list_path() local
392 sep = strrchr(path, '\\'); in pci_init_name_list_path()
393 if (!sep) in pci_init_name_list_path()
405 memcpy(sep+1, PCI_IDS, sizeof(PCI_IDS)); in pci_init_name_list_path()
H A Dfilter.c35 split_to_fields(char *str, char *buffer, int sep, char **fields, int num_fields) in split_to_fields() argument
52 while (*str && *str != sep) in split_to_fields()