Home
last modified time | relevance | path

Searched full:self (Results 1 – 25 of 1658) sorted by relevance

12345678910>>...67

/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py194 def __init__(self, task, param=None, parent=None): argument
195 super(Thread, self).__init__(parent)
196 self.task = task
197 self.param = param
199 def run(self): argument
201 if self.param is None:
202 done, result = self.task()
204 done, result = self.task(self.param)
205 self.done.emit(result)
213 def __init__(self, glb, params, parent=None): argument
[all …]
H A Dsched-migration.py41 def __repr__(self): argument
49 def __init__(self, sleeper): argument
50 self.sleeper = sleeper
52 def __repr__(self): argument
53 return "%s gone to sleep" % thread_name(self.sleeper)
60 def __init__(self, wakee): argument
61 self.wakee = wakee
63 def __repr__(self): argument
64 return "%s woke up" % thread_name(self.wakee)
71 def __init__(self, child): argument
[all …]
/linux/scripts/gdb/linux/
H A Dmm.py24 def __init__(self): argument
28 self.ops = aarch64_page_ops()
33 def __init__(self): argument
34 self.SUBSECTION_SHIFT = 21
35 self.SEBSECTION_SIZE = 1 << self.SUBSECTION_SHIFT
36 self.MODULES_VSIZE = 2 * 1024 * 1024 * 1024
39 self.SECTION_SIZE_BITS = 29
41 self.SECTION_SIZE_BITS = 27
42 self.MAX_PHYSMEM_BITS = constants.LX_CONFIG_ARM64_VA_BITS
44 self.PAGE_SHIFT = constants.LX_CONFIG_PAGE_SHIFT
[all …]
H A Dpgtable.py64 def __init__(self, cr3, page_levels):
65 self.cr3 = cr3
66 self.page_levels = page_levels argument
67 self.page_level_write_through = is_bit_defined_tupled(cr3, 3)
68 self.page_level_cache_disabled = is_bit_defined_tupled(cr3, 4)
69 self.next_entry_physical_address = cr3 & PHYSICAL_ADDRESS_MASK & page_mask()
71 def next_entry(self, va):
72 next_level = self.page_levels
73 return PageHierarchyEntry(entry_va(next_level, self.next_entry_physical_address, va), next_level) argument
75 def mk_string(self)
77 mk_string(self) global() argument
89 __init__(self, address, level) global() argument
136 next_entry(self, va) global() argument
144 mk_string(self) global() argument
204 __init__(self) global() argument
207 invoke(self, arg, from_tty) global() argument
[all...]
/linux/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py23 def __init__(self, sched_tracer, title, parent = None, id = -1): argument
24 wx.Frame.__init__(self, parent, id, title)
26 (self.screen_width, self.screen_height) = wx.GetDisplaySize()
27 self.screen_width -= 10
28 self.screen_height -= 10
29 self.zoom = 0.5
30 self.scroll_scale = 20
31 self.sched_tracer = sched_tracer
32 self.sched_tracer.set_root_win(self)
33 (self.ts_start, self.ts_end) = sched_tracer.interval()
[all …]
/linux/tools/crypto/ccp/
H A Dtest_dbc.py34 def __init__(self, data) -> None: argument
35 self.d = None
36 self.signature = b"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
37 self.uid = b"1111111111111111"
40 def setUp(self) -> None: argument
41 self.d = open(DEVICE_NODE)
44 def tearDown(self) -> None: argument
45 if self.d:
46 self.d.close()
51 def setUp(self) -> None: argument
[all …]
/linux/tools/testing/selftests/drivers/net/lib/py/
H A Denv.py21 def __init__(self, src_path): argument
22 self.src_path = Path(src_path)
23 self.test_dir = self.src_path.parent.resolve()
24 self.net_lib_dir = (Path(__file__).parent / "../../../../net/lib").resolve()
26 self.env = self._load_env_file()
29 self.dev = None
31 def _load_env_file(self):
34 src_dir = Path(self
28 _load_env_file(self) global() argument
56 __init__(self, src_path, nsim_test=None, **kwargs) global() argument
75 __enter__(self) global() argument
80 __exit__(self, ex_type, ex_value, ex_tb) global() argument
86 __del__(self) global() argument
105 __init__(self, src_path, nsim_test=None) global() argument
166 create_local(self) global() argument
186 _check_env(self) global() argument
210 resolve_remote_ifc(self) global() argument
222 __enter__(self) global() argument
225 __exit__(self, ex_type, ex_value, ex_tb) global() argument
231 __del__(self) global() argument
245 require_ipver(self, ipver) global() argument
249 _require_cmd(self, comm, key, host=None) global() argument
257 require_cmd(self, comm, local=True, remote=False) global() argument
265 wait_hw_stats_settle(self) global() argument
[all...]
/linux/scripts/lib/kdoc/
H A Dkdoc_output.py65 def __init__(self): argument
68 self.out_mode = self.OUTPUT_ALL
69 self.enable_lineno = None
70 self.nosymbol = {}
71 self.symbol = None
72 self.function_table = None
73 self.config = None
74 self.no_doc_sections = False
76 self
78 set_config(self, config) global() argument
85 set_filter(self, export, internal, symbol, nosymbol, function_table, enable_lineno, no_doc_sections) global() argument
112 highlight_block(self, block) global() argument
122 out_warnings(self, args) global() argument
132 check_doc(self, name, args) global() argument
152 check_declaration(self, dtype, name, args) global() argument
180 msg(self, fname, name, args) global() argument
220 out_doc(self, fname, name, args) global() argument
223 out_function(self, fname, name, args) global() argument
226 out_enum(self, fname, name, args) global() argument
229 out_typedef(self, fname, name, args) global() argument
232 out_struct(self, fname, name, args) global() argument
263 __init__(self) global() argument
274 print_lineno(self, ln) global() argument
281 output_highlight(self, args) global() argument
333 out_section(self, args, out_docblock=False) global() argument
363 out_doc(self, fname, name, args) global() argument
368 out_function(self, fname, name, args) global() argument
455 out_enum(self, fname, name, args) global() argument
487 out_typedef(self, fname, name, args) global() argument
505 out_struct(self, fname, name, args) global() argument
591 __init__(self, modulename) global() argument
617 output_highlight(self, block) global() argument
638 out_doc(self, fname, name, args) global() argument
651 out_function(self, fname, name, args) global() argument
702 out_enum(self, fname, name, args) global() argument
738 out_typedef(self, fname, name, args) global() argument
754 out_struct(self, fname, name, args) global() argument
[all...]
/linux/tools/testing/selftests/bpf/
H A Djson_writer.c29 static void jsonw_indent(json_writer_t *self) in jsonw_indent() argument
32 for (i = 0; i < self->depth; ++i) in jsonw_indent()
33 fputs(" ", self->out); in jsonw_indent()
37 static void jsonw_eol(json_writer_t *self) in jsonw_eol() argument
39 if (!self->pretty) in jsonw_eol()
42 putc('\n', self->out); in jsonw_eol()
43 jsonw_indent(self); in jsonw_eol()
47 static void jsonw_eor(json_writer_t *self) in jsonw_eor() argument
49 if (self->sep != '\0') in jsonw_eor()
50 putc(self->sep, self->out); in jsonw_eor()
[all …]
/linux/tools/bpf/bpftool/
H A Djson_writer.c29 static void jsonw_indent(json_writer_t *self) in jsonw_indent() argument
32 for (i = 0; i < self->depth; ++i) in jsonw_indent()
33 fputs(" ", self->out); in jsonw_indent()
37 static void jsonw_eol(json_writer_t *self) in jsonw_eol() argument
39 if (!self->pretty) in jsonw_eol()
42 putc('\n', self->out); in jsonw_eol()
43 jsonw_indent(self); in jsonw_eol()
47 static void jsonw_eor(json_writer_t *self) in jsonw_eor() argument
49 if (self->sep != '\0') in jsonw_eor()
50 putc(self->sep, self->out); in jsonw_eor()
[all …]
/linux/tools/verification/rvgen/rvgen/
H A Dgenerator.py15 def __init__(self, extra_params={}): argument
16 self.name = extra_params.get("model_name")
17 self.parent = extra_params.get("parent")
18 self.abs_template_dir = \
19 os.path.join(os.path.dirname(__file__), "templates", self.template_dir)
20 self.main_c = self._read_template_file("main.c")
21 self.kconfig = self._read_template_file("Kconfig")
22 self.description = extra_params.get("description", self.name) or "auto-generated"
23 self.auto_patch = extra_params.get("auto_patch")
24 if self.auto_patch:
[all …]
H A Ddot2c.py25 def __init__(self, file_path, model_name=None): argument
27 self.line_length = 100
29 def __buff_to_string(self, buff): argument
38 def __get_enum_states_content(self): argument
40 buff.append("\t%s%s = 0," % (self.initial_state, self.enum_suffix))
41 for state in self.states:
42 if state != self.initial_state:
43 buff.append("\t%s%s," % (state, self.enum_suffix))
44 buff.append("\tstate_max%s" % (self.enum_suffix))
48 def get_enum_states_string(self): argument
[all …]
H A Dltl2ba.py72 def __init__(self, incoming: set['GraphNode'], new, old, _next): argument
73 self.init = False
74 self.outgoing = set()
75 self.labels = set()
76 self.incoming = incoming.copy()
77 self.new = new.copy()
78 self.old = old.copy()
79 self.next = _next.copy()
80 self.id = GraphNode.uid
83 def expand(self, node_set): argument
[all …]
/linux/tools/testing/selftests/damon/
H A D_damon_sysfs.py47 def __init__(self, size=None, nr_accesses=None, age=None):
48 self.size = size
49 self.nr_accesses = nr_accesses
50 self.age = age
52 if self.size is None:
53 self.size = [0, 2**64 - 1]
54 if self.nr_accesses is None:
55 self.nr_accesses = [0, 2**32 - 1] argument
56 if self.age is None:
57 self
43 __init__(self, size=None, nr_accesses=None, age=None) global() argument
58 stage(self) global() argument
96 __init__(self, metric, target_value=10000, current_value=0) global() argument
101 sysfs_dir(self) global() argument
104 stage(self) global() argument
126 __init__(self, sz=0, ms=0, goals=None, reset_interval_ms=0) global() argument
135 sysfs_dir(self) global() argument
138 stage(self) global() argument
171 __init__(self, nr_tried, sz_tried, nr_applied, sz_applied, qt_exceeds) global() argument
179 __init__(self, start, end, nr_accesses, age) global() argument
197 __init__(self, action='stat', access_pattern=DamosAccessPattern(), quota=DamosQuota(), apply_interval_us=0) global() argument
206 sysfs_dir(self) global() argument
210 stage(self) global() argument
244 __init__(self, pid) global() argument
247 sysfs_dir(self) global() argument
251 stage(self) global() argument
267 __init__(self, sample_us=5000, aggr_us=100000, update_us=1000000, min_nr_regions=10, max_nr_regions=1000) global() argument
275 interval_sysfs_dir(self) global() argument
279 nr_regions_range_sysfs_dir(self) global() argument
283 stage(self) global() argument
317 __init__(self, ops='paddr', monitoring_attrs=DamonAttrs(), targets=[], schemes=[]) global() argument
333 sysfs_dir(self) global() argument
337 stage(self) global() argument
382 __init__(self, contexts=[]) global() argument
388 sysfs_dir(self) global() argument
391 start(self) global() argument
409 stop(self) global() argument
413 update_schemes_tried_regions(self) global() argument
443 update_schemes_tried_bytes(self) global() argument
456 update_schemes_stats(self) global() argument
473 update_schemes_effective_quotas(self) global() argument
489 commit(self) global() argument
508 commit_schemes_quota_goals(self) global() argument
523 __init__(self, kdamonds=[]) global() argument
529 sysfs_dir(self) global() argument
532 start(self) global() argument
543 stop(self) global() argument
[all...]
/linux/tools/perf/pmu-events/
H A Dmetric.py13 def ToPerfJson(self) -> str: argument
17 def ToPython(self) -> str: argument
21 def Simplify(self): argument
22 """Returns a simplified version of self."""
25 def Equals(self, other) -> bool: argument
29 def Substitute(self, name: str, expression: 'Expression') -> 'Expression': argument
32 def __str__(self) -> str: argument
33 return self.ToPerfJson()
35 def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
36 return Operator('|', self, other)
[all …]
/linux/drivers/net/ethernet/aquantia/atlantic/
H A Daq_nic.c43 static void aq_nic_update_ndev_stats(struct aq_nic_s *self);
45 static void aq_nic_rss_init(struct aq_nic_s *self, unsigned int num_rss_queues) in aq_nic_rss_init() argument
54 struct aq_nic_cfg_s *cfg = &self->aq_nic_cfg; in aq_nic_rss_init()
69 static void aq_nic_cfg_update_num_vecs(struct aq_nic_s *self) in aq_nic_cfg_update_num_vecs() argument
71 struct aq_nic_cfg_s *cfg = &self->aq_nic_cfg; in aq_nic_cfg_update_num_vecs()
75 if (self->irqvecs > AQ_HW_SERVICE_IRQS) in aq_nic_cfg_update_num_vecs()
76 cfg->vecs = min(cfg->vecs, self->irqvecs - AQ_HW_SERVICE_IRQS); in aq_nic_cfg_update_num_vecs()
80 if (ATL_HW_IS_CHIP_FEATURE(self->aq_hw, ANTIGUA)) { in aq_nic_cfg_update_num_vecs()
92 aq_nic_rss_init(self, cfg->num_rss_queues); in aq_nic_cfg_update_num_vecs()
96 void aq_nic_cfg_start(struct aq_nic_s *self) in aq_nic_cfg_start() argument
[all …]
H A Daq_vec.c30 struct aq_vec_s *self = container_of(napi, struct aq_vec_s, napi); in aq_vec_poll() local
38 if (!self) { in aq_vec_poll()
41 for (i = 0U; self->tx_rings > i; ++i) { in aq_vec_poll()
42 ring = self->ring[i]; in aq_vec_poll()
46 if (self->aq_hw_ops->hw_ring_tx_head_update) { in aq_vec_poll()
47 err = self->aq_hw_ops->hw_ring_tx_head_update( in aq_vec_poll()
48 self->aq_hw, in aq_vec_poll()
60 err = self->aq_hw_ops->hw_ring_rx_receive(self->aq_hw, in aq_vec_poll()
80 err = self->aq_hw_ops->hw_ring_rx_fill( in aq_vec_poll()
81 self->aq_hw, in aq_vec_poll()
[all …]
/linux/tools/testing/selftests/hid/tests/
H A Dbase_device.py46 def __init__(self, path): argument
47 self.path = path
49 def __set_value(self, value): argument
50 with open(self.path, "w") as f:
53 def __get_value(self): argument
54 with open(self.path) as f:
58 def int_value(self) -> int: argument
59 return int(self.__get_value())
62 def int_value(self, v: int) -> None: argument
63 self.__set_value(v)
[all …]
/linux/tools/testing/kunit/
H A Dkunit_tool_test.py44 def test_is_subset_of(self): argument
46 self.assertTrue(kconfig0.is_subset_of(kconfig0))
50 self.assertTrue(kconfig1.is_subset_of(kconfig1))
51 self.assertTrue(kconfig0.is_subset_of(kconfig1))
52 self.assertFalse(kconfig1.is_subset_of(kconfig0))
54 def test_read_from_file(self): argument
66 self.assertEqual(kconfig, expected_kconfig)
68 def test_write_to_file(self): argument
81 self.assertEqual(actual_kconfig, expected_kconfig)
84 def setUp(self): argument
[all …]
/linux/tools/perf/tests/shell/lib/
H A Dperf_metric_validation.py11 …def __init__(self, metric: list[str], wl: str, value: list[float], low: float, up=float('nan'), de… argument
12 self.metric: list = metric # multiple metrics in relationship type tests
13 self.workloads = [wl] # multiple workloads possible
14 self.collectedValue: list = value
15 self.valueLowBound = low
16 self.valueUpBound = up
17 self.description = description
19 def __repr__(self) -> str: argument
20 if len(self.metric) > 1:
24 … \tRelationship rule description: \'{5}\'".format(self.metric, self.collectedValue, self.workloads,
[all …]
/linux/tools/net/ynl/pyynl/lib/
H A Dynl.py103 def __init__(self, nl_msg):
104 self.nl_msg = nl_msg argument
105 self.error = -nl_msg.error
107 def __str__(self):
108 return f"Netlink error: {os.strerror(self.error)}\n{self.nl_msg}" argument
128 def __init__(self, raw, offset):
129 self._len, self._type = struct.unpack("HH", raw[offset : offset + 4]) argument
130 self
145 as_scalar(self, attr_type, byte_order=None) global() argument
149 as_auto_scalar(self, attr_type, byte_order=None) global() argument
156 as_strz(self) global() argument
159 as_bin(self) global() argument
162 as_c_array(self, type) global() argument
166 __repr__(self) global() argument
171 __init__(self, msg, offset=0) global() argument
179 __iter__(self) global() argument
182 __repr__(self) global() argument
192 __init__(self, msg, offset, attr_space=None) global() argument
236 _decode_policy(self, raw) global() argument
260 annotate_extack(self, attr_space) global() argument
272 cmd(self) global() argument
275 __repr__(self) global() argument
285 __init__(self, data) global() argument
294 __iter__(self) global() argument
364 __init__(self, nl_msg) global() argument
369 cmd(self) global() argument
372 __repr__(self) global() argument
381 __init__(self, family_name, proto_num) global() argument
385 _message(self, nl_type, nl_flags, seq=None) global() argument
391 message(self, flags, command, version, seq=None) global() argument
394 _decode(self, nl_msg) global() argument
397 decode(self, ynl, nl_msg, op) global() argument
405 get_mcast_id(self, mcast_name, mcast_groups) global() argument
410 msghdr_size(self) global() argument
415 __init__(self, family_name) global() argument
425 message(self, flags, command, version, seq=None) global() argument
430 _decode(self, nl_msg) global() argument
433 get_mcast_id(self, mcast_name, mcast_groups) global() argument
438 msghdr_size(self) global() argument
445 __init__(self, attr_space, attrs, outer = None) global() argument
450 lookup(self, name) global() argument
467 __init__(self, def_path, schema=None, process_unknown=False, recv_size=0) global() argument
511 ntf_subscribe(self, mcast_name) global() argument
517 set_recv_dbg(self, enabled) global() argument
520 _recv_dbg_print(self, reply, nl_msgs) global() argument
528 _encode_enum(self, attr_spec, value) global() argument
540 _get_scalar(self, attr_spec, value) global() argument
550 _add_attr(self, space, name, value, search_attrs) global() argument
626 _get_enum_or_unknown(self, enum, raw) global() argument
636 _decode_enum(self, raw, attr_spec) global() argument
650 _decode_binary(self, attr, attr_spec) global() argument
666 _decode_array_attr(self, attr, attr_spec) global() argument
692 _decode_nest_type_value(self, attr, attr_spec) global() argument
702 _decode_unknown(self, attr) global() argument
708 _rsp_add(self, rsp, name, is_multi, decoded) global() argument
723 _resolve_selector(self, attr_spec, search_attrs) global() argument
737 _decode_sub_msg(self, attr, attr_spec, search_attrs) global() argument
752 _decode(self, attrs, space, outer_attrs = None) global() argument
812 _decode_extack_path(self, attrs, attr_set, offset, target, search_attrs) global() argument
848 _decode_extack(self, request, op, extack, vals) global() argument
861 _struct_size(self, name) global() argument
878 _decode_struct(self, data, name) global() argument
907 _encode_struct(self, name, vals) global() argument
931 _formatted_string(self, raw, display_hint) global() argument
947 _from_string(self, string, attr_spec) global() argument
959 handle_ntf(self, decoded) global() argument
972 check_ntf(self) global() argument
997 poll_ntf(self, duration=None) global() argument
1016 operation_do_attributes(self, name) global() argument
1027 _encode_message(self, op, vals, flags, req_seq) global() argument
1041 _ops(self, ops) global() argument
1110 _op(self, method, vals, flags=None, dump=False) global() argument
1118 do(self, method, vals, flags=None) global() argument
1121 dump(self, method, vals) global() argument
1124 do_multi(self, ops) global() argument
[all...]
/linux/tools/testing/selftests/tpm2/
H A Dtpm2_tests.py14 def setUp(self): argument
15 self.client = tpm2.Client()
16 self.root_key = self.client.create_root_key()
18 def tearDown(self): argument
19 self.client.flush_context(self.root_key)
20 self.client.close()
22 def test_seal_with_auth(self): argument
26 blob = self.client.seal(self.root_key, data, auth, None)
27 result = self.client.unseal(self.root_key, blob, auth, None)
28 self.assertEqual(data, result)
[all …]
/linux/tools/kvm/kvm_stat/
H A Dkvm_stat336 def tracepoint_is_child(self, field): argument
343 def __init__(self, exit_reasons): argument
344 self.sc_perf_evt_open = 298
345 self.ioctl_numbers = IOCTL_NUMBERS
346 self.exit_reason_field = 'exit_reason'
347 self.exit_reasons = exit_reasons
349 def debugfs_is_child(self, field): argument
355 def __init__(self): argument
356 self.sc_perf_evt_open = 319
357 self.ioctl_numbers = IOCTL_NUMBERS
[all …]
/linux/tools/testing/selftests/drivers/s390x/uvdevice/
H A Dtest_uvdevice.c40 self->uv_fd = open(UV_PATH, O_ACCMODE); in FIXTURE_SETUP()
42 self->uvio_ioctl.argument_addr = (__u64)self->buffer; in FIXTURE_SETUP()
43 self->uvio_ioctl.argument_len = variant->arg_size; in FIXTURE_SETUP()
44 self->fault_page = in FIXTURE_SETUP()
50 if (self->uv_fd) in FIXTURE_TEARDOWN()
51 close(self->uv_fd); in FIXTURE_TEARDOWN()
52 munmap((void *)self->fault_page, (size_t)getpagesize()); in FIXTURE_TEARDOWN()
59 rc = ioctl(self->uv_fd, variant->ioctl_cmd, NULL); in TEST_F()
64 rc = ioctl(self->uv_fd, variant->ioctl_cmd, self->fault_page); in TEST_F()
74 self->uvio_ioctl.argument_addr = 0; in TEST_F()
[all …]
/linux/tools/net/ynl/pyynl/
H A Dynl_gen_c.py43 def get_family_id(self):
48 def __init__(self, family, attr_set, attr, value):
51 self.attr = attr
52 self.attr_set = attr_set
53 self.type = attr['type']
54 self.checks = attr.get('checks', {})
56 self.request = False
57 self.reply = False
59 self.is_selector = False
62 self
44 get_family_id(self) global() argument
49 __init__(self, family, attr_set, attr, value) global() argument
94 _get_real_attr(self) global() argument
98 set_request(self) global() argument
103 set_reply(self) global() argument
108 get_limit(self, limit, default=None) global() argument
118 get_limit_str(self, limit, default=None, suffix='') global() argument
131 resolve(self) global() argument
144 is_multi_val(self) global() argument
147 is_scalar(self) global() argument
150 is_recursive(self) global() argument
153 is_recursive_for_op(self, ri) global() argument
156 presence_type(self) global() argument
159 presence_member(self, space, type_filter) global() argument
171 _complex_member_type(self, ri) global() argument
174 free_needs_iter(self) global() argument
177 _free_lines(self, ri, var, ref) global() argument
182 free(self, ri, var, ref) global() argument
187 arg_member(self, ri) global() argument
197 struct_member(self, ri) global() argument
210 _attr_policy(self, policy) global() argument
213 attr_policy(self, cw) global() argument
222 _attr_typol(self) global() argument
225 attr_typol(self, cw) global() argument
229 _attr_put_line(self, ri, var, line) global() argument
235 _attr_put_simple(self, ri, var, put_type) global() argument
239 attr_put(self, ri, var) global() argument
242 _attr_get(self, ri, var) global() argument
245 attr_get(self, ri, var, first) global() argument
275 _setter_lines(self, ri, member, presence) global() argument
278 setter(self, ri, space, direction, deref=False, ref=None, var="req") global() argument
313 presence_type(self) global() argument
316 arg_member(self, ri) global() argument
319 _attr_get(self, ri, var) global() argument
322 _attr_typol(self) global() argument
325 attr_policy(self, cw) global() argument
328 attr_put(self, ri, var) global() argument
331 attr_get(self, ri, var, first) global() argument
334 setter(self, ri, space, direction, deref=False, ref=None, var=None) global() argument
339 presence_type(self) global() argument
342 arg_member(self, ri) global() argument
345 _attr_typol(self) global() argument
348 attr_put(self, ri, var) global() argument
351 attr_get(self, ri, var, first) global() argument
354 attr_policy(self, cw) global() argument
357 setter(self, ri, space, direction, deref=False, ref=None, var=None) global() argument
362 __init__(self, family, attr_set, attr, value) global() argument
380 resolve(self) global() argument
397 _init_checks(self) global() argument
422 _attr_policy(self, policy) global() argument
444 _attr_typol(self) global() argument
447 arg_member(self, ri) global() argument
450 attr_put(self, ri, var) global() argument
453 _attr_get(self, ri, var) global() argument
456 _setter_lines(self, ri, member, presence) global() argument
461 arg_member(self, ri) global() argument
464 _attr_typol(self) global() argument
467 attr_put(self, ri, var) global() argument
470 _attr_get(self, ri, var) global() argument
473 _setter_lines(self, ri, member, presence) global() argument
478 arg_member(self, ri) global() argument
481 presence_type(self) global() argument
484 struct_member(self, ri) global() argument
487 _attr_typol(self) global() argument
493 _attr_policy(self, policy) global() argument
503 attr_policy(self, cw) global() argument
512 attr_put(self, ri, var) global() argument
515 _attr_get(self, ri, var) global() argument
524 _setter_lines(self, ri, member, presence) global() argument
532 arg_member(self, ri) global() argument
535 presence_type(self) global() argument
538 struct_member(self, ri) global() argument
541 _attr_typol(self) global() argument
544 _attr_policy(self, policy) global() argument
565 attr_put(self, ri, var) global() argument
569 _attr_get(self, ri, var) global() argument
577 _setter_lines(self, ri, member, presence) global() argument
584 struct_member(self, ri) global() argument
587 _attr_get(self, ri, var) global() argument
601 arg_member(self, ri) global() argument
604 presence_type(self) global() argument
607 struct_member(self, ri) global() argument
610 attr_put(self, ri, var) global() argument
618 _attr_get(self, ri, var) global() argument
627 _setter_lines(self, ri, member, presence) global() argument
635 _complex_member_type(self, ri) global() argument
638 _attr_typol(self) global() argument
641 _attr_policy(self, policy) global() argument
648 attr_put(self, ri, var) global() argument
652 _attr_get(self, ri, var) global() argument
655 _setter_lines(self, ri, member, presence) global() argument
660 is_recursive(self) global() argument
663 _complex_member_type(self, ri) global() argument
666 _free_lines(self, ri, var, ref) global() argument
675 _attr_typol(self) global() argument
678 _attr_policy(self, policy) global() argument
681 attr_put(self, ri, var) global() argument
686 _attr_get(self, ri, var) global() argument
697 setter(self, ri, space, direction, deref=False, ref=None, var="req") global() argument
708 __init__(self, family, attr_set, attr, value, base_type) global() argument
713 is_multi_val(self) global() argument
716 presence_type(self) global() argument
719 _complex_member_type(self, ri) global() argument
732 arg_member(self, ri) global() argument
738 free_needs_iter(self) global() argument
741 _free_lines(self, ri, var, ref) global() argument
763 _attr_policy(self, policy) global() argument
766 _attr_typol(self) global() argument
769 _attr_get(self, ri, var) global() argument
772 attr_put(self, ri, var) global() argument
790 _setter_lines(self, ri, member, presence) global() argument
796 is_multi_val(self) global() argument
799 presence_type(self) global() argument
802 _complex_member_type(self, ri) global() argument
813 arg_member(self, ri) global() argument
819 _attr_typol(self) global() argument
827 _attr_get(self, ri, var) global() argument
837 attr_put(self, ri, var) global() argument
854 _setter_lines(self, ri, member, presence) global() argument
860 _complex_member_type(self, ri) global() argument
863 _attr_typol(self) global() argument
866 _attr_get(self, ri, var) global() argument
890 __init__(self, family, attr_set, attr, value) global() argument
895 _attr_typol(self) global() argument
905 _attr_get(self, ri, var) global() argument
922 __init__(self, msg_attr, attr_set) global() argument
934 set_attr(self, attr) global() argument
937 is_external(self) global() argument
942 __init__(self, family, space_name, type_list=None, fixed_header=None, inherited=None, submsg=None) global() argument
989 __iter__(self) global() argument
992 __getitem__(self, key) global() argument
995 member_list(self) global() argument
998 set_inherited(self, new_inherited) global() argument
1003 external_selectors(self) global() argument
1010 free_needs_iter(self) global() argument
1018 __init__(self, enum_set, yaml, prev, value_start) global() argument
1031 resolve(self) global() argument
1038 __init__(self, family, yaml) global() argument
1061 new_entry(self, entry, prev_entry, value_start) global() argument
1064 value_range(self) global() argument
1075 __init__(self, family, yaml) global() argument
1097 resolve(self) global() argument
1104 new_attr(self, elem, value) global() argument
1145 __init__(self, family, yaml, req_value, rsp_value) global() argument
1167 resolve(self) global() argument
1175 mark_has_ntf(self) global() argument
1180 __init__(self, family, yaml) global() argument
1185 resolve(self) global() argument
1190 __init__(self, file_name, exclude_ops) global() argument
1222 resolve(self) global() argument
1263 new_enum(self, elem) global() argument
1266 new_attr_set(self, elem) global() argument
1269 new_operation(self, elem, req_value, rsp_value) global() argument
1272 new_sub_message(self, elem) global() argument
1275 is_classic(self) global() argument
1278 _mark_notify(self) global() argument
1284 _mock_up_events(self) global() argument
1293 _load_root_sets(self) global() argument
1314 _sort_pure_types(self) global() argument
1346 _load_nested_set_nest(self, spec) global() argument
1367 _load_nested_set_submsg(self, spec) global() argument
1406 _load_nested_sets(self) global() argument
1470 _load_attr_use(self) global() argument
1486 _load_selector_passing(self) global() argument
1510 _load_global_policy(self) global() argument
1536 _load_hooks(self) global() argument
1552 __init__(self, cw, family, ku_space, op, op_mode, attr_set=None) global() argument
1612 type_empty(self, key) global() argument
1616 needs_nlflags(self, direction) global() argument
1621 __init__(self, nlib, out_file=None, overwrite=True) global() argument
1636 __del__(self) global() argument
1639 close_out_file(self) global() argument
1657 p(self, line, add_ind=0) global() argument
1682 nl(self) global() argument
1685 block_start(self, line='') global() argument
1691 block_end(self, line='') global() argument
1704 write_doc_line(self, doc, indent=True) global() argument
1716 write_func_prot(self, qual_ret, name, args=None, doc=None, suffix='') global() argument
1758 write_func_lvar(self, local_vars) global() argument
1770 write_func(self, qual_ret, name, body, args=None, local_vars=None) global() argument
1779 writes_defines(self, defines) global() argument
1794 write_struct_init(self, members) global() argument
1804 ifdef_block(self, config) global() argument
[all...]

12345678910>>...67