Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 5 of 5) sorted by relevance

/tools/bpf/bpftool/
Djson_writer.h51 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val);
52 void jsonw_bool_field(json_writer_t *self, const char *prop, bool value);
53 void jsonw_float_field(json_writer_t *self, const char *prop, double num);
54 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num);
55 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num);
56 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num);
57 void jsonw_null_field(json_writer_t *self, const char *prop);
58 void jsonw_lluint_field(json_writer_t *self, const char *prop,
60 void jsonw_float_field_fmt(json_writer_t *self, const char *prop,
Djson_writer.c247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val) in jsonw_string_field() argument
249 jsonw_name(self, prop); in jsonw_string_field()
253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val) in jsonw_bool_field() argument
255 jsonw_name(self, prop); in jsonw_bool_field()
260 void jsonw_float_field(json_writer_t *self, const char *prop, double val) in jsonw_float_field() argument
262 jsonw_name(self, prop); in jsonw_float_field()
268 const char *prop, in jsonw_float_field_fmt() argument
272 jsonw_name(self, prop); in jsonw_float_field_fmt()
276 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num) in jsonw_uint_field() argument
278 jsonw_name(self, prop); in jsonw_uint_field()
[all …]
/tools/memory-model/
Dlinux-kernel.cat79 let prop = [Marked] ; (overwrite & ext)? ; cumul-fence* ;
84 * No fences needed here for prop because relation confined to one process.
86 let hb = [Marked] ; (ppo | rfe | ((prop \ id) & int)) ; [Marked]
94 let pb = prop ; strong-fence ; hb* ; [Marked]
121 let rcu-link = po? ; hb* ; pb* ; prop ; po
146 let rb = prop ; rcu-fence ; hb* ; pb* ; [Marked]
/tools/memory-model/Documentation/
Dexplanation.txt1193 cache coherence. The relation is called prop, and it links two events
1220 8. In this case there is a prop link from P0's write event to its read
1246 case there is a prop link from P0's first read event to its second,
1250 Less trivial examples of prop all involve fences. Unlike the simple
1273 stores. If r1 = 1 and r2 = 0 at the end then there is a prop link
1280 The prop link says that in order to obtain the r1 = 1, r2 = 0 result,
1292 prop relation would give an hb link from the second load to the first.
1297 The formal definition of the prop relation involves a coe or fre link,
1330 If x = 2, r0 = 1, and r2 = 1 after this code runs then there is a prop
1416 Note that this pb link is not included in hb as an instance of prop,
[all …]
/tools/power/pm-graph/
Dsleepgraph.py1137 for prop in info.split('\n'):
1138 if prop.startswith('DRIVER=') or prop.startswith('PCI_ID='):
1139 vals.append(prop.split('=')[-1])
6459 for prop in val[1:-1].split(','):
6460 p = prop.split('=')