/openbmc/linux/kernel/trace/ |
H A D | trace_dynevent.c | 294 * appended to the current cmd string, followed by a separator, if 299 * The cmd string and separator should be set using the 317 ret = seq_buf_printf(&cmd->seq, " %s%c", arg->str, arg->separator); in dynevent_arg_add() 319 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add() 335 * followed by a separator, if applicable. This can be used to add 340 * followed finally by a separator, if applicable. Before the 344 * The cmd strings, operator, and separator should be set using the 364 arg_pair->separator); in dynevent_arg_pair_add() 368 arg_pair->separator); in dynevent_arg_pair_add() 432 * @separator: An (optional) separator, appended after adding the arg [all …]
|
H A D | trace_dynevent.h | 131 char separator; /* e.g. ';', ',', or nothing */ member 135 char separator); 144 char separator; /* e.g. ';', ',', or nothing */ member 148 char operator, char separator);
|
/openbmc/linux/tools/perf/scripts/python/ |
H A D | task-analyzer.py | 350 separator, fix_csv_align = _prepare_fmt_sep() 353 fmt += "{}{{:>{}}}".format(separator, db["task_info"]["tid"] * fix_csv_align) 354 fmt += "{}{{:>{}}}".format(separator, db["task_info"]["comm"] * fix_csv_align) 355 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["runs"] * fix_csv_align) 356 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["acc"] * fix_csv_align) 357 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["mean"] * fix_csv_align) 359 separator, db["runtime_info"]["median"] * fix_csv_align 362 separator, (db["runtime_info"]["min"] - decimal_precision) * fix_csv_align 365 separator, (db["runtime_info"]["max"] - decimal_precision) * fix_csv_align 368 separator, (db["runtime_info"]["max_at"] - time_precision) * fix_csv_align [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/gnome-layer/recipes-graphics/openbox/openbox-xdgmenu/ |
H A D | port-gnome-menus3.patch | 78 + GMenuTreeSeparator *separator = NULL; 129 + if (separator != NULL) 133 + process_separator(separator); 134 + gmenu_tree_item_unref (separator); 135 + separator = NULL; 142 + if (separator != NULL) 146 + process_separator(separator); 147 + gmenu_tree_item_unref (separator); 148 + separator = NULL; 155 + separator = gmenu_tree_iter_get_separator(iter); [all …]
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | types.py | 16 separator (optional), and re-joins itself when converted to a string with 18 'separator' flag may be specified (defaulting to whitespace).""" 22 def __init__(self, value, separator = None): argument 24 list.__init__(self, value.split(separator)) 28 if separator is None: 29 self.separator = " " 31 self.separator = separator 34 return self.separator.join(self)
|
/openbmc/qemu/tests/qtest/fuzz/ |
H A D | generic_fuzz.c | 35 * SEPARATOR is used to separate "operations" in the fuzz input 37 #define SEPARATOR "FUZZ" macro 597 * Some commands can be variable-width, so we use a separator, SEPARATOR, to 598 * specify the boundaries between commands. SEPARATOR is used to separate 599 * "operations" in the fuzz input. Why use a separator, instead of just using 603 * For example take the input "AbBcgDefg", where there is no separator and 608 * By adding a separator, we avoid this problem: 614 * SEPARATOR is trivial for the fuzzer to discover when using ASan. Optionally, 615 * SEPARATOR can be manually specified as a dictionary value (see libfuzzer's 619 * In a simplified example where SEPARATOR is 0xFF: [all …]
|
/openbmc/qemu/tests/bench/ |
H A D | qtree-bench.c | 259 char separator[97]; in main() local 260 for (int i = 0; i < ARRAY_SIZE(separator) - 1; i++) { in main() 261 separator[i] = '-'; in main() 263 separator[ARRAY_SIZE(separator) - 1] = '\0'; in main() 264 printf("%s\n", separator); in main() 284 printf("%s\n", separator); in main()
|
/openbmc/qemu/qobject/ |
H A D | block-qdict.c | 270 * at the first '.' separator. Allows double dot ('..') to escape the 271 * normal separator. 288 const char *separator; in qdict_split_flat_key() local 291 /* Find first '.' separator, but if there is a pair '..' in qdict_split_flat_key() 293 separator = NULL; in qdict_split_flat_key() 295 if (separator) { in qdict_split_flat_key() 296 separator += 2; in qdict_split_flat_key() 298 separator = key; in qdict_split_flat_key() 300 separator = strchr(separator, '.'); in qdict_split_flat_key() 301 } while (separator && separator[1] == '.'); in qdict_split_flat_key() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pidgin/pidgin/ |
H A D | fix_incompatible_pointer_types_for_gtkitemfactorycallbacks_on_gcc-14.patch | 43 { "/Buddies/sep1", NULL, NULL, 0, "<Separator>", NULL }, 56 { "/Buddies/sep2", NULL, NULL, 0, "<Separator>", NULL }, 61 { "/Tools/sep2", NULL, NULL, 0, "<Separator>", NULL }, 66 { "/Tools/sep3", NULL, NULL, 0, "<Separator>", NULL }, 86 { "/Conversation/sep0", NULL, NULL, 0, "<Separator>", NULL }, 99 { "/Conversation/sep1", NULL, NULL, 0, "<Separator>", NULL }, 130 { "/Conversation/sep2", NULL, NULL, 0, "<Separator>", NULL }, 148 { "/Conversation/sep3", NULL, NULL, 0, "<Separator>", NULL }, 157 { "/Conversation/sep4", NULL, NULL, 0, "<Separator>", NULL }, 170 { "/Options/sep0", NULL, NULL, 0, "<Separator>", NULL },
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | perf-mem.txt | 54 --field-separator=<separator>:: 55 Specify the field separator used when dump raw samples (-D option). By default, 56 The separator is the space character.
|
H A D | perf-diff.txt | 65 --field-separator=:: 67 Use a special separator character and don't pad with spaces, replacing 68 all occurrences of this separator in symbol names (and other output) 69 with a '.' character, that thus it's the only non valid separator. 289 behind ':' separator like '-c wdiff:1,2'.
|
/openbmc/qemu/hw/nvme/ |
H A D | nguid.c | 71 * using the '-' separator. The number of bytes needs to be exactly 16 and the 72 * separator '-' has to be exactly in a byte boundary. The following are 92 * We need to make sure the separator is in a byte boundary, the in nvme_nguid_is_valid() 93 * string does not start with the separator and they are not back to in nvme_nguid_is_valid() 105 * separator in nvme_nguid_is_valid()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hddtemp/hddtemp/ |
H A D | hddtemp_0.3-beta15-52.diff | 198 msgid "ERROR: invalid separator.\n" 232 " -s --separator=C : separator to use between fields (in TCP/IP daemon " 497 msgid "ERROR: invalid separator.\n" 530 " -s --separator=C : separator to use between fields (in TCP/IP daemon " 763 msgid "ERROR: invalid separator.\n" 764 msgstr "FEL: ogiltig separator.\n" 797 " -s --separator=C : separator to use between fields (in TCP/IP daemon " 1035 msgid "ERROR: invalid separator.\n" 1069 " -s --separator=C : separator to use between fields (in TCP/IP daemon " 1100 -" -s --separator=C : separador a utilizar entre campos (no modo daemon TCP/IP).\n" [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/ |
H A D | types.py | 42 obj = create(value, 'list', separator=sep) 45 self.assertEqual(obj.separator, sep) 46 self.assertEqual(str(obj), obj.separator.join(obj))
|
/openbmc/bmcweb/include/ |
H A D | authentication.hpp | 55 std::size_t separator = authData.find(':'); in performBasicAuth() local 56 if (separator == std::string::npos) in performBasicAuth() 61 std::string user = authData.substr(0, separator); in performBasicAuth() 62 separator += 1; in performBasicAuth() 63 if (separator > authData.size()) in performBasicAuth() 67 std::string pass = authData.substr(separator); in performBasicAuth()
|
/openbmc/openbmc-test-automation/lib/ |
H A D | rest_client.robot | 45 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 71 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 96 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 120 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 229 ${msg}= Catenate SEPARATOR= URI: ${AUTH_URI} ${kwargs["base_uri"]} 238 ${msg}= Catenate SEPARATOR= Response code: ${resp.status_code} 300 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 342 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 374 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} 431 ${base_uri}= Catenate SEPARATOR= ${DBUS_PREFIX} ${uri} [all …]
|
H A D | openbmc_ffdc_methods.robot | 92 ... Split String ${ffdc_function_list} separator=: 236 ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]} 296 ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]} 322 ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]} 382 ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]} 408 ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]} 609 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} ${file_enum_name} 638 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} 673 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} esel
|
/openbmc/u-boot/drivers/mmc/ |
H A D | mmc_legacy.c | 102 void print_mmc_devices(char separator) in print_mmc_devices() argument 121 printf("%c", separator); in print_mmc_devices() 122 if (separator != '\n') in print_mmc_devices() 131 void print_mmc_devices(char separator) { } in print_mmc_devices() argument
|
/openbmc/linux/drivers/md/ |
H A D | dm-init.c | 80 * str_field_delimit - delimit a string based on a separator char. 82 * @separator: char that delimits the field 84 * Find a @separator and replace it by '\0'. 86 * Return the remainder string after the @separator. 88 static char __init *str_field_delimit(char **str, char separator) in str_field_delimit() argument 94 s = strchr(*str, separator); in str_field_delimit()
|
/openbmc/openbmc/poky/scripts/ |
H A D | patchtest-get-branch | 76 …parser.add_argument('--separator', '-s', metavar='SEPARATOR', default=' ', help='Char separator fo…
|
/openbmc/linux/scripts/ |
H A D | parse-maintainers.pl | 114 my $separator; 119 if (! defined $separator) { 120 $separator = "\n"; 122 print $file $separator;
|
/openbmc/phosphor-logging/ |
H A D | util.cpp | 208 constexpr auto separator = '='; in parse() local 211 auto pos = entryItem.find(separator); in parse() 214 auto key = entryItem.substr(0, entryItem.find(separator)); in parse() 215 auto value = entryItem.substr(entryItem.find(separator) + 1); in parse()
|
/openbmc/qemu/hw/i386/ |
H A D | acpi-microvm.c | 52 gchar *separator; in acpi_dsdt_add_virtio() local 70 separator = g_strrstr(mmio_bus->name, "."); in acpi_dsdt_add_virtio() 71 if (!separator) { in acpi_dsdt_add_virtio() 74 if (qemu_strtol(separator + 1, NULL, 10, &index) != 0) { in acpi_dsdt_add_virtio()
|
/openbmc/linux/drivers/acpi/acpica/ |
H A D | exconvrt.c | 381 u8 separator = ','; in acpi_ex_convert_to_string() local 441 /* Setup string length, base, and separator */ in acpi_ex_convert_to_string() 455 * are variable length (include separator for each) in acpi_ex_convert_to_string() 478 separator = ' '; in acpi_ex_convert_to_string() 491 separator = ','; in acpi_ex_convert_to_string() 501 * (-1 because of extra separator included in string_length from above) in acpi_ex_convert_to_string() 535 *new_buf++ = separator; in acpi_ex_convert_to_string()
|
/openbmc/linux/drivers/target/ |
H A D | target_core_fabric_lib.c | 170 * The SEPARATOR field shall contain the five ASCII in iscsi_get_pr_transport_id() 237 len += 5; /* For ",i,0x" ASCII separator */ in iscsi_get_pr_transport_id_len() 299 * Check for ',i,0x' separator between iSCSI Name and iSCSI Initiator in iscsi_parse_pr_out_transport_id() 306 pr_err("Unable to locate \",i,0x\" separator" in iscsi_parse_pr_out_transport_id() 312 p += 5; /* Skip over ",i,0x" separator */ in iscsi_parse_pr_out_transport_id()
|