Home
last modified time | relevance | path

Searched refs:sort_entry (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dsort.h28 extern struct sort_entry sort_comm;
29 extern struct sort_entry sort_dso;
30 extern struct sort_entry sort_sym;
31 extern struct sort_entry sort_parent;
32 extern struct sort_entry sort_dso_from;
33 extern struct sort_entry sort_dso_to;
34 extern struct sort_entry sort_sym_from;
35 extern struct sort_entry sort_sym_to;
36 extern struct sort_entry sort_srcline;
264 struct sort_entry { struct
[all …]
H A Dsort.c120 struct sort_entry sort_thread = {
159 struct sort_entry sort_comm = {
225 struct sort_entry sort_dso = {
352 struct sort_entry sort_sym = {
388 struct sort_entry sort_srcline = {
420 struct sort_entry sort_srcline_from = {
447 struct sort_entry sort_srcline_to = {
480 struct sort_entry sort_sym_ipc = {
498 struct sort_entry sort_sym_ipc_null = {
550 struct sort_entry sort_srcfile = {
[all …]
/OK3568_Linux_fs/kernel/kernel/trace/
H A Dtracing_map.c949 struct tracing_map_sort_entry *sort_entry; in create_sort_entry() local
951 sort_entry = kzalloc(sizeof(*sort_entry), GFP_KERNEL); in create_sort_entry()
952 if (!sort_entry) in create_sort_entry()
955 sort_entry->key = key; in create_sort_entry()
956 sort_entry->elt = elt; in create_sort_entry()
958 return sort_entry; in create_sort_entry()
1075 struct tracing_map_sort_entry *sort_entry, **entries; in tracing_map_sort_entries() local
1078 entries = vmalloc(array_size(sizeof(sort_entry), map->max_elts)); in tracing_map_sort_entries()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/
H A Drestapi.py345 json.dump(layerindexlib.sort_entry(pindex), f, indent=4)
392 json.dump(layerindexlib.sort_entry(pindex), f, indent=4)
H A D__init__.py1355 def sort_entry(item): function
1361 newitem[index] = sort_entry(newitem[index])
1365 newitem[index] = sort_entry(newitem[index])
/OK3568_Linux_fs/kernel/tools/perf/
H A Dbuiltin-c2c.c402 struct sort_entry *se;
422 static int symbol_width(struct hists *hists, struct sort_entry *se) in symbol_width()