Searched refs:symbol (Results 51 - 75 of 190) sorted by relevance

12345678

/linux-master/tools/objtool/include/objtool/
H A Dobjtool.h44 void objtool_pv_add(struct objtool_file *file, int idx, struct symbol *func);
/linux-master/tools/perf/tests/
H A Ddwarf-unwind.c15 #include "symbol.h"
63 * symbol fails.
77 char *symbol = entry->ms.sym ? entry->ms.sym->name : NULL; local
100 if (!symbol) {
108 symbol, entry->ip, funcs[idx]);
109 return strcmp((const char *) symbol, funcs[idx]);
H A Dsymbols.c10 #include "symbol.h"
111 struct symbol *last_sym = NULL;
120 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
132 /* Check for zero-length function symbol */
134 pr_debug("Zero-length symbol:\n");
/linux-master/tools/perf/util/
H A Dannotate.h26 struct symbol;
39 struct symbol *sym;
213 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym);
240 void symbol__calc_percent(struct symbol *sym, struct evsel *evsel);
243 * struct sym_hist - symbol histogram information for an event
296 * @histograms: Array of symbol histograms per event to maintain the total number
303 * @samples: Hash map of sym_hist_entry. Keyed by event index and offset in symbol.
327 * struct annotated_branch - basic block and IPC information for a symbol.
397 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym);
399 void annotation__init_column_widths(struct annotation *notes, struct symbol *sy
[all...]
H A Dprint-events.c47 .symbol = "duration_time",
51 .symbol = "user_time",
55 .symbol = "system_time",
335 event_symbols_tool[i].symbol,
354 pr_debug("Failed to allocate new strlist for symbol events\n");
362 if (syms[i].symbol == NULL)
371 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms[i].symbol, syms[i].alias);
374 strlist__add(evt_name_list, syms[i].symbol);
H A Dsrcline.c21 #include "symbol.h"
48 static int inline_list__append(struct symbol *symbol, char *srcline, argument
57 ilist->symbol = symbol;
92 static struct symbol *new_inline_sym(struct dso *dso,
93 struct symbol *base_sym,
96 struct symbol *inline_sym;
109 /* reuse the real, existing symbol */
111 /* ensure that we don't alias an inlined symbol, whic
[all...]
H A Dprobe-event.h27 struct symbol;
32 char *symbol; /* Base symbol */ member in struct:probe_trace_point
34 unsigned long offset; /* Offset from symbol */
185 struct symbol *sym);
H A Dmap.h135 struct symbol;
141 * @pos: the 'struct symbol *' to use as a loop cursor
152 * @sym_name: the symbol name
153 * @pos: the 'struct symbol *' to use as a loop cursor
154 * @idx: the cursor index in the symbol names array
202 char *map__srcline(struct map *map, u64 addr, struct symbol *sym);
207 struct symbol *map__find_symbol(struct map *map, u64 addr);
208 struct symbol *map__find_symbol_by_name(struct map *map, const char *name);
209 struct symbol *map__find_symbol_by_name_idx(struct map *map, const char *name, size_t *idx);
231 bool map__contains_symbol(const struct map *map, const struct symbol *sy
[all...]
H A Dmaps.h62 struct symbol *maps__find_symbol(struct maps *maps, u64 addr, struct map **mapp);
63 struct symbol *maps__find_symbol_by_name(struct maps *maps, const char *name, struct map **mapp);
H A Dblock-info.h8 #include "symbol.h"
13 struct symbol *sym;
H A Dexpr.l112 symbol ({spec}|{sym})+
129 {symbol} { return str(yyscanner, ID, sctx->runtime); }
/linux-master/drivers/media/rc/
H A Dst_rc.c52 * Enable last symbol IRQ 1 -> bit 1:
57 /* maximum symbol period (microsecs),timeout to detect end of symbol train */
86 * ST hardware returns mark (IRB_RX_ON) and total symbol time (IRB_RX_SYS), so
96 unsigned int symbol, mark = 0;
122 symbol = readl(dev->rx_base + IRB_RX_SYS);
125 if (symbol == IRB_TIMEOUT)
129 if ((mark > 2) && (symbol > 1)) {
130 symbol -= mark;
132 symbol *
95 unsigned int symbol, mark = 0; local
[all...]
/linux-master/tools/perf/scripts/python/
H A Darm-cs-trace-disasm.py139 def print_srccode(comm, param_dict, sample, symbol, dso):
141 if symbol == "[unknown]":
145 start_str = common_start_str(comm, sample) + (symbol + offs).ljust(40)
189 symbol = get_optional(param_dict, "symbol")
216 print_srccode(comm, param_dict, sample, symbol, dso)
275 print_srccode(comm, param_dict, sample, symbol, dso)
/linux-master/scripts/genksyms/
H A Dgenksyms.c2 /* Generate kernel symbol version hashes.
26 static struct symbol *symtab[HASH_BUCKETS];
39 static struct symbol *expansion_trail;
40 static struct symbol *visited_symbols;
152 struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact)
155 struct symbol *sym;
168 static int is_unknown_symbol(struct symbol *sym)
183 static struct symbol *__add_symbol(const char *name, enum symbol_type type,
188 struct symbol *sym;
264 struct symbol **psy
[all...]
/linux-master/kernel/trace/
H A Dtrace_fprobe.c46 const char *symbol; member in struct:trace_fprobe
83 return tf->symbol ? tf->symbol : "unknown";
376 kfree(tf->symbol);
386 const char *symbol,
398 tf->symbol = kstrdup(symbol, GFP_KERNEL);
399 if (!tf->symbol)
715 /* TODO: handle filter, nofilter or symbol list */
716 return register_fprobe(&tf->fp, tf->symbol, NUL
384 alloc_trace_fprobe(const char *group, const char *event, const char *symbol, struct tracepoint *tpoint, int maxactive, int nargs, bool is_return) argument
919 parse_symbol_and_return(int argc, const char *argv[], char **symbol, bool *is_return, bool is_tracepoint) argument
989 char *symbol = NULL; local
[all...]
H A Dtrace_kprobe.c62 const char *symbol; /* symbol name */ member in struct:trace_kprobe
92 return tk->symbol ? tk->symbol : "unknown";
120 if (!tk->symbol)
122 p = strchr(tk->symbol, ':');
127 ret = !!find_module(tk->symbol);
155 if (!tk->symbol)
197 /* Return 0 if it fails to find the symbol address */
203 if (tk->symbol) {
263 alloc_trace_kprobe(const char *group, const char *event, void *addr, const char *symbol, unsigned long offs, int maxactive, int nargs, bool is_return) argument
793 char *symbol = NULL, *tmp = NULL; local
1673 bpf_get_kprobe_info(const struct perf_event *event, u32 *fd_type, const char **symbol, u64 *probe_offset, u64 *probe_addr, unsigned long *missed, bool perf_type_tracepoint) argument
[all...]
/linux-master/scripts/
H A Dkallsyms.c1 /* Generate assembler source containing symbol information
13 * map char code 0xF7 to represent "write_" and then in every symbol where
172 /* include the type field in the symbol name, so that it gets
263 /* When valid symbol is not registered, exit to error */
265 fprintf(stderr, "No valid symbol.\n");
323 /* uncompress a compressed symbol. When this function is called, the best table
437 /* There cannot be any symbol of length zero. */
440 "unexpected zero symbol length\n");
447 "unexpected huge symbol length\n");
470 * Now that we wrote out the compressed symbol name
567 learn_symbol(const unsigned char *symbol, int len) argument
576 forget_symbol(const unsigned char *symbol, int len) argument
720 const char *symbol = sym_name(se); local
[all...]
/linux-master/lib/xz/
H A Dxz_dec_lzma2.c20 * Minimum number of usable input buffer to safely decode one LZMA symbol.
554 uint32_t symbol = 1; local
557 if (rc_bit(rc, &probs[symbol]))
558 symbol = (symbol << 1) + 1;
560 symbol <<= 1;
561 } while (symbol < limit);
563 return symbol;
571 uint32_t symbol = 1; local
575 if (rc_bit(rc, &probs[symbol])) {
616 uint32_t symbol; local
[all...]
/linux-master/scripts/kconfig/
H A Dconfdata.c133 /* touch depfile for symbol 'name' */
236 static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
260 conf_warning("symbol value '%s' invalid for %s",
288 conf_warning("symbol value '%s' invalid for %s",
325 struct symbol *sym;
450 conf_warning("unknown symbol: %s", sym_name);
458 conf_warning("override: reassigning to symbol %s", sym->name);
464 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
491 struct symbol *sym;
636 static void __print_symbol(FILE *fp, struct symbol *sy
[all...]
H A Dqconf.h207 QString debug_info(struct symbol *sym);
209 static void expr_print_help(void *data, struct symbol *sym, const char *str);
212 struct symbol *sym;
234 struct symbol **result;
H A Dmenu.c67 void menu_add_entry(struct symbol *sym)
136 struct symbol *sym = current_entry->sym;
164 /* append property to the prop list of symbol */
231 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep)
236 static int menu_validate_number(struct symbol *sym, struct symbol *sym2)
242 static void sym_check_prop(struct symbol *sym)
245 struct symbol *sym2;
254 "default for config symbol '%s'"
255 " must be a single symbol", sy
[all...]
/linux-master/include/acpi/platform/
H A Daclinux.h109 #define ACPI_EXPORT_SYMBOL(symbol) EXPORT_SYMBOL(symbol);
/linux-master/lib/zstd/common/
H A Dfse_decompress.c95 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
144 tableDecode[uPosition].symbol = spread[s + u];
157 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
167 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); local
168 U32 const nextState = symbolNext[symbol]++;
198 cell->symbol = symbolValue;
224 dinfo[s].symbol = (BYTE)s;
/linux-master/drivers/scsi/
H A Dscript_asm.pl171 %symbol_values = (%registers) ; # Traditional symbol table
173 %symbol_references = () ; # Table of symbol references, where
174 # the index is the symbol name,
234 $symbol = '';
238 $symbol = $1;
240 print STDERR "Relative reference $symbol\n" if ($debug);
243 $symbol = $1;
245 print STDERR "Absolute reference $symbol\n" if ($debug);
248 if ($symbol ne '') {
249 print STDERR "Referencing symbol
[all...]
/linux-master/tools/perf/bench/
H A Dkallsyms-parse.c12 #include <symbol/kallsyms.h>

Completed in 366 milliseconds

12345678