Searched refs:str (Results 226 - 250 of 1869) sorted by relevance

1234567891011>>

/linux-master/arch/csky/include/asm/
H A Dbug.h22 void die(struct pt_regs *regs, const char *str);
/linux-master/tools/perf/util/
H A Dstrfilter.h61 * @str: target string
63 * Compare @str and @filter. Return true if the str match the rule
65 bool strfilter__compare(struct strfilter *filter, const char *str);
H A Dtime-utils.h13 int parse_nsec_time(const char *str, u64 *ptime);
29 int perf_time__parse_for_ranges_reltime(const char *str, struct perf_session *session,
34 int perf_time__parse_for_ranges(const char *str, struct perf_session *session,
H A Dunits.c10 unsigned long parse_tag_value(const char *str, struct parse_tag *tags) argument
15 char *s = strchr(str, i->tag);
21 value = strtoul(str, &endptr, 10);
/linux-master/drivers/char/ipmi/
H A Dkcs_bmc.h21 * @str: Status Register
26 u32 str; member in struct:kcs_ioreg
/linux-master/arch/powerpc/include/asm/
H A Dbtext.h25 extern void btext_drawstring(const char *str);
/linux-master/fs/gfs2/
H A Ddentry.c80 static int gfs2_dhash(const struct dentry *dentry, struct qstr *str) argument
82 str->hash = gfs2_disk_hash(str->name, str->len);
/linux-master/arch/sh/include/asm/
H A Dbug.h117 extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn));
118 extern void die_if_kernel(const char *str, struct pt_regs *regs, long err);
119 extern void die_if_no_fixup(const char *str, struct pt_regs *regs, long err);
/linux-master/arch/m68k/atari/
H A Ddebug.c42 static void atari_mfp_console_write(struct console *co, const char *str, argument
46 if (*str == '\n')
48 ata_mfp_out(*str++);
61 static void atari_scc_console_write(struct console *co, const char *str, argument
65 if (*str == '\n')
67 ata_scc_out(*str++);
78 static void atari_midi_console_write(struct console *co, const char *str, argument
82 if (*str == '\n')
84 ata_midi_out(*str++);
109 static void atari_par_console_write(struct console *co, const char *str, argument
[all...]
/linux-master/drivers/xen/xenfs/
H A Dxenstored.c15 const char *str = (const char *)file->private_data; local
16 return simple_read_from_buffer(buf, size, off, str, strlen(str));
/linux-master/arch/x86/boot/
H A Dtty.c61 void __section(".inittext") puts(const char *str) argument
63 while (*str)
64 putchar(*str++);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dprobe_read_user_str.c9 static int test_one_str(struct test_probe_read_user_str *skel, const char *str, argument
17 memcpy(buf, str, len);
31 err = memcmp(skel->bss->buf, str, len);
H A Dctx_rewrite.c213 static char *skip_space(char *str) argument
215 while (*str && isspace(*str))
216 ++str;
217 return str;
220 static char *skip_space_and_semi(char *str) argument
222 while (*str && (isspace(*str) || *str == ';'))
223 ++str;
227 match_str(char *str, char *prefix) argument
238 match_number(char *str, int num) argument
358 max_line_len(char *str) argument
665 remove_insn_prefix(char *str, int size) argument
[all...]
/linux-master/tools/gpio/
H A Dgpio-utils.h21 static inline int check_prefix(const char *str, const char *prefix) argument
23 return strlen(str) > strlen(prefix) &&
24 strncmp(str, prefix, strlen(prefix)) == 0;
/linux-master/sound/isa/sb/
H A Dsb_common.c95 char *str; local
123 str = "1.0";
128 str = "2.01+";
131 str = "2.0";
136 str = "Pro";
140 str = "16";
149 str = "16 (ALS-100)";
152 str = "16 (ALS-4000)";
155 str = "(DT019X/ALS007)";
158 str
[all...]
/linux-master/drivers/firmware/efi/
H A Defibc.c40 const u8 *str = data; local
54 for (l = 0; l < MAX_DATA_LEN - 1 && str[l] != '\0'; l++)
55 wdata[l] = str[l];
/linux-master/arch/sh/kernel/
H A Dnmi_debug.c45 static int __init nmi_debug_setup(char *str) argument
51 if (*str != '=')
54 for (p = str + 1; *p; p = sep + 1) {
/linux-master/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py33 str = "%5u.%09u" % (nsecs_secs(nsecs), nsecs_nsecs(nsecs)),
34 return str
86 return str(id)
/linux-master/drivers/usb/mon/
H A Dmon_stat.c24 char str[STAT_BUF_SIZE]; member in struct:snap
38 sp->slen = scnprintf(sp->str, STAT_BUF_SIZE,
51 return simple_read_from_buffer(buf, nbytes, ppos, sp->str, sp->slen);
/linux-master/security/selinux/ss/
H A Dcontext.h34 char *str; /* string representation if context cannot be mapped. */ member in struct:context
163 if (src->str) {
164 dst->str = kstrdup(src->str, GFP_ATOMIC);
165 if (!dst->str)
169 dst->str = NULL;
174 kfree(dst->str);
175 dst->str = NULL;
185 kfree(c->str);
186 c->str
[all...]
/linux-master/sound/xen/
H A Dxen_snd_front_cfg.c294 char *str = NULL; local
306 str = xenbus_read(XBT_NIL, stream_path, XENSND_FIELD_TYPE, NULL);
307 if (IS_ERR(str)) {
308 ret = PTR_ERR(str);
309 str = NULL;
313 if (!strncasecmp(str, XENSND_STREAM_TYPE_PLAYBACK,
316 } else if (!strncasecmp(str, XENSND_STREAM_TYPE_CAPTURE,
327 kfree(str);
336 char *str = NULL; local
348 str
388 char *str; local
[all...]
/linux-master/drivers/usb/host/
H A Dxhci.h1994 static inline const char *xhci_decode_trb(char *str, size_t size, argument
2001 snprintf(str, size,
2018 snprintf(str, size,
2031 snprintf(str, size,
2049 snprintf(str, size,
2063 snprintf(str, size,
2077 snprintf(str, size,
2094 snprintf(str, size,
2101 snprintf(str, size,
2108 snprintf(str, siz
2216 xhci_decode_ctrl_ctx(char *str, unsigned long drop, unsigned long add) argument
2246 xhci_decode_slot_context(char *str, u32 info, u32 info2, u32 tt_info, u32 state) argument
2332 xhci_decode_portsc(char *str, u32 portsc) argument
2382 xhci_decode_usbsts(char *str, u32 usbsts) argument
2413 xhci_decode_doorbell(char *str, u32 slot, u32 doorbell) argument
2481 xhci_decode_ep_context(char *str, u32 info, u32 info2, u64 deq, u32 tx_info) argument
[all...]
/linux-master/kernel/trace/
H A Dtrace_events_filter.c134 static bool is_not(const char *str) argument
136 switch (str[1]) {
190 typedef int (*parse_pred_fn)(const char *str, void *data, int pos,
470 predicate_parse(const char *str, int nr_parens, int nr_preds, argument
476 const char *ptr = str;
529 parse_error(pe, FILT_ERR_TOO_MANY_PREDS, next - str);
536 len = parse_pred(next, data, ptr - str, pe, &prog[N].pred);
565 next - str);
593 parse_error(pe, FILT_ERR_TOO_MANY_CLOSE, ptr - str);
602 parse_error(pe, FILT_ERR_TOO_MANY_OPEN, ptr - str);
799 test_string(char *str) argument
816 test_ustring(char *str) argument
849 filter_pchar(struct filter_pred *pred, char *str) argument
865 char *str; local
878 char *str; local
1024 regex_match_full(char *str, struct regex *r, int len) argument
1033 regex_match_front(char *str, struct regex *r, int len) argument
1041 regex_match_middle(char *str, struct regex *r, int len) argument
1049 regex_match_end(char *str, struct regex *r, int len) argument
1059 regex_match_glob(char *str, struct regex *r, int len __maybe_unused) argument
1499 parse_pred(const char *str, void *data, int pos, struct filter_parse_error *pe, struct filter_pred **pred_ptr) argument
1978 calc_stack(const char *str, int *parens, int *preds, int *err) argument
2463 char *str, **re; local
[all...]
/linux-master/init/
H A Ddo_mounts.c37 static int __init load_ramdisk(char *str) argument
44 static int __init readonly(char *str) argument
46 if (*str)
52 static int __init readwrite(char *str) argument
54 if (*str)
71 static int __init rootwait_setup(char *str) argument
73 if (*str)
81 static int __init rootwait_timeout_setup(char *str) argument
85 if (kstrtoint(str, 0, &sec) || sec < 0) {
107 static int __init root_data_setup(char *str) argument
114 fs_names_setup(char *str) argument
121 root_delay_setup(char *str) argument
[all...]
/linux-master/arch/arm/kernel/
H A Dtraps.c58 static int __init user_debug_setup(char *str) argument
60 get_option(&str, &user_debug);
100 char str[80], *p; local
104 for (reg = 10, x = 0, p = str; reg >= 0; reg--) {
109 p = str;
110 printk("%s%s\n", loglvl, str);
114 if (p != str)
115 printk("%s%s\n", loglvl, str);
138 void dump_mem(const char *lvl, const char *str, unsigned long bottom, argument
144 printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, botto
148 char str[sizeof(" 12345678") * 8 + 1]; local
171 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; local
279 __die(const char *str, int err, struct pt_regs *regs) argument
363 die(const char *str, struct pt_regs *regs, int err) argument
380 arm_notify_die(const char *str, struct pt_regs *regs, int signo, int si_code, void __user *addr, unsigned long err, unsigned long trap) argument
[all...]

Completed in 526 milliseconds

1234567891011>>