Searched refs:quote (Results 1 – 10 of 10) sorted by relevance
| /tools/perf/util/ |
| A D | string.c | 334 static char *remove_consumed_esc(char *str, int len, int quote) in remove_consumed_esc() argument 338 while (*ptr != quote && ptr < end) { in remove_consumed_esc() 339 if (*ptr == '\\' && *(ptr + 1) == quote) { in remove_consumed_esc() 347 return *ptr == quote ? ptr : NULL; in remove_consumed_esc() 375 int quote = *d; in strdup_esq() local 384 d = remove_consumed_esc(d, len, quote); in strdup_esq()
|
| A D | config.c | 94 int quote = 0, comment = 0, space = 0; in parse_value() local 103 if (quote) in parse_value() 110 if (isspace(c) && !quote) { in parse_value() 114 if (!quote) { in parse_value() 150 quote = 1-quote; in parse_value()
|
| A D | demangle-rust-v0.c | 500 static NODISCARD size_t char_to_string(uint32_t ch, uint8_t quote, bool first, char (*buf)[ESCAPED_… in char_to_string() argument 522 if (ch == quote) { in char_to_string() 543 uint8_t quote = '"'; in nibbles_to_string() local 558 *out++ = quote; in nibbles_to_string() 605 *out++ = quote; in nibbles_to_string()
|
| A D | header.c | 1670 char *quote = strchr(argv_i, '\''); in print_cmdline() local 1671 if (!quote) in print_cmdline() 1673 *quote++ = '\0'; in print_cmdline() 1675 argv_i = quote; in print_cmdline()
|
| /tools/bpf/bpftool/ |
| A D | main.c | 296 char quote = *cp++; in make_args() local 300 cp = strchr(cp, quote); in make_args()
|
| /tools/testing/kunit/ |
| A D | kunit_kernel.py | 134 print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command)) 156 print('Running tests with:\n$', linux_bin, ' '.join(shlex.quote(arg) for arg in params))
|
| /tools/build/ |
| A D | Build.include | 38 # Escape single quote for use in echo statements
|
| /tools/perf/scripts/python/ |
| A D | parallel-perf.py | 52 sh_cmd = [ shlex.quote(x) for x in self.cmd ]
|
| /tools/perf/Documentation/ |
| A D | perf-config.txt | 64 newline (double quote `"` and backslash have to be escaped as `\"` and `\\`,
|
| /tools/power/pm-graph/ |
| A D | sleepgraph.py | 636 quote=0 640 quote = (quote + 1) % 2 641 if quote and c == ' ':
|
Completed in 34 milliseconds