Home
last modified time | relevance | path

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

12345678910>>...72

/freebsd/tools/sched/
H A Dschedgraph.py138 def __init__(self, table): argument
139 self.table = table
140 self.map = {}
142 self.map[entry[0]] = entry[1]
144 def lookup(self, name): argument
146 color = self.map[name]
150 self.map[name] = color
151 self.table.append((name, color))
170 def __init__(self, master, target): argument
171 Frame.__init__(self, master)
[all …]
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/test/
H A Dtest_nvlist.py38 def _dict_to_nvlist_to_dict(self, props): argument
45 def _assertIntDictsEqual(self, dict1, dict2): argument
46 self.assertEqual(
50 self.assertEqual(int(dict1[key]), int(dict2[key]))
52 def _assertIntArrayDictsEqual(self, dict1, dict2): argument
53 self.assertEqual(
59 self.assertEqual(
62 self.assertEqual(int(x), int(y))
64 def test_empty(self): argument
65 res = self._dict_to_nvlist_to_dict({})
[all …]
H A Dtest_libzfs_core.py306 def setUp(self): argument
309 def tearDown(self): argument
313 def assertExists(self, name): argument
314 self.assertTrue(
317 def assertNotExists(self, name): argument
318 self.assertFalse(
321 def test_exists(self): argument
322 self.assertExists(ZFSTest.pool.makeName())
324 def test_exists_in_ro_pool(self): argument
325 self.assertExists(ZFSTest.readonly_pool.makeName())
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig3 def __eq__(self, rhs):
4 if not isinstance(rhs, type(self)):
7 return getattr(_lldb,self.__class__.__name__+"___eq__")(self, rhs)
9 def __ne__(self, rhs):
10 if not isinstance(rhs, type(self)):
13 return getattr(_lldb,self.__class__.__name__+"___ne__")(self, rhs)
19 def __eq__(self, rhs):
20 if not isinstance(rhs, type(self))
[all...]
/freebsd/tools/tools/shlib-compat/
H A Dshlib-compat.py56 def init(self, outname): argument
58 self.out = open(outname, "w")
86 def __init__(self): argument
87 self.exclude = []
88 self.include = []
90 def compile(self): argument
91 self.re_exclude = [ re.compile(x) for x in self.exclude ]
92 self.re_include = [ re.compile(x) for x in self.include ]
94 def match(self, s): argument
95 if len(self.re_include):
[all …]
/freebsd/crypto/krb5/doc/tools/
H A Ddocmodel.py29 def __init__(self, **argkw): argument
30 self.definition = argkw.get('definition')
31 self.name = argkw.get('name')
32 self.type = argkw.get('type')
33 self.typeId = argkw.get('typeId')
34 self.short_description = argkw.get('short_description')
35 self.long_description = argkw.get('long_description')
36 self.version = argkw.get('version')
38 def __repr__(self): argument
40 for (attr,value) in self.__dict__.iteritems():
[all …]
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A Dexceptions.py44 def __str__(self): argument
45 if self.name is not None:
47 self.errno, self.message, self.name)
49 return "[Errno %d] %s" % (self.errno, self.message)
51 def __repr__(self): argument
53 self.__class__.__name__, self.errno, self.message)
58 def __init__(self, errno, name, message): argument
59 self.errno = errno
60 self.message = message
61 self.name = name
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dp9conn.py59 def __init__(self, client, op, msg, etype, errno): argument
60 self.client = str(client)
61 self.op = op
62 self.msg = msg
63 self.etype = etype # 'Rerror' or 'Rlerror'
64 self.errno = errno # may be None
65 self.message = self._get_message()
66 super(RemoteError, self).__init__(self, self.message)
68 def __repr__(self): argument
70 '{5})'.format(self.__class__.__name__, self.client, self.op,
[all …]
/freebsd/tests/atf_python/sys/netlink/
H A Dattrs.py12 def __init__(self, nla_type, data): argument
14 self._nla_type = nla_type.value
15 self._enum = nla_type
17 self._nla_type = nla_type
18 self._enum = None
19 self.nla_list = []
20 self._data = data
23 def nla_type(self): argument
24 return self._nla_type & 0x3FFF
27 def nla_len(self): argument
[all …]
H A Dnetlink.py82 def __init__(self): argument
83 self._pmap = {}
84 self._af_cls = self.get_af_cls()
85 self._seq_counter = 1
86 self.pid = os.getpid()
88 def get_seq(self): argument
89 ret = self._seq_counter
90 self._seq_counter += 1
93 def get_af_cls(self): argument
100 def get_propmap(self, cls): argument
[all …]
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in76 def __init__(self): argument
77 self.starttime = None
78 self.returncode = None
79 self.runtime = ''
80 self.stdout = []
81 self.stderr = []
82 self.kmemleak = ''
83 self.result = ''
85 def done(self, proc, killed, reran): argument
90 m, s = divmod(monotonic_time() - self.starttime, 60)
[all …]
/freebsd/sys/tools/syscalls/core/
H A Dsyscall.lua41 self.thr = "SY_THR_STATIC"
42 for k, _ in pairs(self.type) do
44 self.thr = "SY_THR_ABSENT"
52 self.cap = "0"
53 local stripped = util.stripAbiPrefix(self.name, self.prefix)
54 for k, _ in pairs(self.type) do
56 self.cap = "SYF_CAPENABLED"
75 if config.syscall_no_abi_change[self.name] then
76 self.changes_abi = false
78 self.noproto = not util.isEmpty(config.abi_flags) and
[all …]
/freebsd/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py57 def __init__(self, why): # pylint: disable=super-init-not-called argument
58 self.why = why
60 def __str__(self): argument
61 return str(self.why)
66 def __init__(self, name): argument
67 self._name = name
68 self._entries = []
69 self._tags = {}
72 def AddEntry(self, entry): argument
73 if entry.Tag() in self._tags:
[all …]
/freebsd/contrib/libevent/
H A Devent_rpcgen.py57 def __init__(self, why): # pylint: disable=super-init-not-called argument
58 self.why = why
60 def __str__(self): argument
61 return str(self.why)
66 def __init__(self, name): argument
67 self._name = name
68 self._entries = []
69 self._tags = {}
72 def AddEntry(self, entry): argument
73 if entry.Tag() in self._tags:
[all …]
/freebsd/share/mk/
H A Dmeta2deps.py205 def __init__(self, name, conf={}): argument
246 self.name = name
247 self.debug = conf.get('debug', 0)
248 self.debug_out = conf.get('debug_out', sys.stderr)
250 self.machine = conf.get('MACHINE', '')
251 self.machine_arch = conf.get('MACHINE_ARCH', '')
252 self.target_spec = conf.get('TARGET_SPEC', self.machine)
253 self.exts = target_spec_exts(self.target_spec)
254 self.curdir = conf.get('CURDIR')
255 self.reldir = conf.get('RELDIR')
[all …]
/freebsd/contrib/bmake/mk/
H A Dmeta2deps.py205 def __init__(self, name, conf={}): argument
246 self.name = name
247 self.debug = conf.get('debug', 0)
248 self.debug_out = conf.get('debug_out', sys.stderr)
250 self.machine = conf.get('MACHINE', '')
251 self.machine_arch = conf.get('MACHINE_ARCH', '')
252 self.target_spec = conf.get('TARGET_SPEC', self.machine)
253 self.exts = target_spec_exts(self.target_spec)
254 self.curdir = conf.get('CURDIR')
255 self.reldir = conf.get('RELDIR')
[all …]
/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DClientHello.pm24 my $self = $class->SUPER::new(
32 $self->{client_version} = 0;
33 $self->{random} = [];
34 $self->{session_id_len} = 0;
35 $self->{session} = "";
36 $self->{ciphersuite_len} = 0;
37 $self->{ciphersuites} = [];
38 $self->{comp_meth_len} = 0;
39 $self->{comp_meths} = [];
40 $self->{extensions_len} = 0;
[all …]
H A DProxy.pm83 my $self = {
113 my $proxaddr = $self->{proxy_addr};
123 $self->{proxy_sock} = $sock;
124 $self->{proxy_port} = $sock->sockport();
125 $self->{proxy_addr} = $sock->sockhost();
126 $self->{proxy_addr} =~ s/(.*:.*)/[$1]/;
128 "$self->{proxy_addr}:$self->{proxy_port}\n";
130 $self->{server_addr} = $self->{proxy_addr};
135 return bless $self, $class;
140 my $self = shift;
[all …]
/freebsd/tests/atf_python/sys/netpfil/ipfw/
H A Dinsns.py71 def __init__(self, opcode, is_or, is_not, arg1): argument
73 self.obj_type = opcode.value
74 self._enum = opcode
76 self.obj_type = opcode
77 self._enum = enum_from_int(self.obj_enum_class, self.obj_type)
78 self.is_or = is_or
79 self.is_not = is_not
80 self.arg1 = arg1
81 self.is_action = self.obj_type in insn_actions
82 self.ilen = 1
[all …]
H A Dioctl.py57 def __init__(self, obj_type): argument
59 self.obj_type = obj_type.value
60 self._enum = obj_type
62 self.obj_type = obj_type
63 self._enum = enum_from_int(self.obj_enum_class, obj_type)
64 self.obj_list = []
66 def add_obj(self, obj): argument
67 self.obj_list.append(obj)
70 def len(self): argument
71 return len(bytes(self))
[all …]
/freebsd/tests/atf_python/sys/net/
H A Dvnet.py52 def __init__(self, iface_alias: str, iface_name: str): argument
53 self.name = iface_name
54 self.alias = iface_alias
55 self.vnet_name = ""
56 self.jailed = False
57 self.addr_map: Dict[str, Dict] = {"inet6": {}, "inet": {}}
58 self.prefixes4: List[List[str]] = []
59 self.prefixes6: List[List[str]] = []
61 self.iftype = self.IFT_LOOP
63 self.iftype = self.IFT_ETHER
[all …]
/freebsd/contrib/ntp/scripts/monitoring/
H A Dlr.pl45 my $self = shift;
47 $self->{n} = 0;
48 $self->{sx} = 0.0;
49 $self->{sx2} = 0.0;
50 $self->{sxy} = 0.0;
51 $self->{sy} = 0.0;
52 $self->{sy2} = 0.0;
57 my $self = shift;
60 ++($self->{n});
61 $self->{sx} += $_x;
[all …]
/freebsd/contrib/wpa/wpa_supplicant/examples/p2p/
H A Dp2p_connect.py78 def __init__(self,ifname,wpas_dbus_interface,addr, argument
81 self.ifname = ifname
82 self.wpas_dbus_interface = wpas_dbus_interface
83 self.wps_method = wps_method
84 self.go_intent = go_intent
85 self.addr = addr
86 self.pin = pin
89 self.wpas_dbus_opath = \
90 "/" + self.wpas_dbus_interface.replace(".","/")
91 self.wpas_wpas_dbus_interfaces_opath = \
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeCategoryExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
14 def __init__(self, sbcategory, get_count_function, get_at_index_function, get_by_name_function):
15 self.sbcategory = sbcategory
16 self.get_count_function = get_count_function
17 self.get_at_index_function = get_at_index_function
18 self.get_by_name_function = get_by_name_function
19 self.regex_type = type(re.compile('.'))
22 def __len__(self):
23 if self
[all...]
H A DSBDataExtensions.i6 def __len__(self):
7 return self.GetByteSize()
10 def __init__(self, sbdata, readerfunc, item_size):
11 self.sbdata = sbdata
12 self.readerfunc = readerfunc
13 self.item_size = item_size
14 def __getitem__(self,key):
17 for x in range(*key.indices(self.__len__())):
18 list.append(self.__getitem__(x))
22 …key = key * self.item_size # SBData uses byte-based indexes, but we want to use itemsize-based ind…
[all …]

12345678910>>...72