/freebsd/tools/sched/ |
H A D | schedgraph.py | 138 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 D | test_nvlist.py | 37 def _dict_to_nvlist_to_dict(self, props): argument 44 def _assertIntDictsEqual(self, dict1, dict2): argument 45 self.assertEqual( 49 self.assertEqual(int(dict1[key]), int(dict2[key])) 51 def _assertIntArrayDictsEqual(self, dict1, dict2): argument 52 self.assertEqual( 58 self.assertEqual( 61 self.assertEqual(int(x), int(y)) 63 def test_empty(self): argument 64 res = self._dict_to_nvlist_to_dict({}) [all …]
|
/freebsd/crypto/openssl/util/perl/TLSProxy/ |
H A D | Proxy.pm | 83 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 …]
|
H A D | ClientHello.pm | 24 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 D | ServerHello.pm | 29 my $self = $class->SUPER::new( 37 $self->{server_version} = 0; 38 $self->{random} = []; 39 $self->{session_id_len} = 0; 40 $self->{session} = ""; 41 $self->{ciphersuite} = 0; 42 $self->{comp_meth} = 0; 43 $self->{extension_data} = ""; 45 return $self; 50 my $self = shift; [all …]
|
H A D | ServerKeyExchange.pm | 24 my $self = $class->SUPER::new( 33 $self->{p} = ""; 34 $self->{g} = ""; 35 $self->{pub_key} = ""; 36 $self->{sigalg} = -1; 37 $self->{sig} = ""; 39 return $self; 44 my $self = shift; 53 my $p_len = unpack('n', $self->data); 55 my $p = substr($self->data, $ptr, $p_len); [all …]
|
/freebsd/sys/tools/syscalls/core/ |
H A D | syscall.lua | 41 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 D | event_rpcgen.py | 57 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 D | event_rpcgen.py | 57 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/lib9p/pytest/ |
H A D | p9conn.py | 59 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 …]
|
H A D | sequencer.py | 54 def __init__(self, name, aux): argument 55 self.name = name 56 self.aux = aux 88 def pack(self, vdict, cdict, val): argument 90 return b''.join(self.apack(vdict, cdict, val)) 93 def apack(self, vdict, cdict, val): argument 97 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument 203 def __init__(self, name, fmt, aux=None): argument 204 super(EncDecSimple, self).__init__(name, aux) 205 self.fmt = fmt [all …]
|
/freebsd/contrib/ntp/scripts/monitoring/ |
H A D | lr.pl | 45 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/tools/tools/shlib-compat/ |
H A D | shlib-compat.py | 56 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/contrib/bmake/mk/ |
H A D | meta2deps.py | 205 def __init__(self, name, conf={}): 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 198 __init__(self, name, conf={}) global() argument 323 reset(self) global() argument 330 dirdeps(self, sep='n') global() argument 334 src_dirdeps(self, sep='n') global() argument 338 file_depends(self, out=None) global() argument 349 seenit(self, dir) global() argument 353 add(self, list, data, clue='') global() argument 360 find_top(self, path, list) global() argument 369 find_obj(self, objroot, dir, path, input) global() argument 403 try_parse(self, name=None, file=None) global() argument 412 parse(self, name=None, file=None) global() argument 570 is_src(self, base, dir, rdir) global() argument 585 parse_path(self, path, cwd, op=None, w=[]) global() argument [all...] |
/freebsd/share/mk/ |
H A D | meta2deps.py | 205 def __init__(self, name, conf={}): 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 198 __init__(self, name, conf={}) global() argument 323 reset(self) global() argument 330 dirdeps(self, sep='n') global() argument 334 src_dirdeps(self, sep='n') global() argument 338 file_depends(self, out=None) global() argument 349 seenit(self, dir) global() argument 353 add(self, list, data, clue='') global() argument 360 find_top(self, path, list) global() argument 369 find_obj(self, objroot, dir, path, input) global() argument 403 try_parse(self, name=None, file=None) global() argument 412 parse(self, name=None, file=None) global() argument 570 is_src(self, base, dir, rdir) global() argument 585 parse_path(self, path, cwd, op=None, w=[]) global() argument [all...] |
/freebsd/contrib/sendmail/contrib/ |
H A D | qtool.pl | 490 my $self = {}; 491 bless $self, $class; 492 $self->initialize(@_); 493 return $self; 498 my $self = shift; 500 $self->{id} = shift; 502 $self->{file_name} = $queue_dir . '/' . $qprefix . $self->{id}; 503 $self->{headers} = {}; 516 my $self = shift; 517 if ($self->{parsed}) [all …]
|
/freebsd/crypto/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 165 my $self = {}; 169 bless $self,$class; 170 $self->{op} = $1; 171 $ret = $self; 174 undef $self->{sz}; 175 if ($self->{op} =~ /^(movz)x?([bw]).*/) { # movz is pain... 176 $self->{op} = $1; 177 $self->{sz} = $2; 178 } elsif ($self->{op} =~ /call|jmp/) { 179 $self->{sz} = ""; [all …]
|
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | exceptions.py | 43 def __str__(self): argument 44 if self.name is not None: 46 self.errno, self.message, self.name) 48 return "[Errno %d] %s" % (self.errno, self.message) 50 def __repr__(self): argument 52 self.__class__.__name__, self.errno, self.message) 57 def __init__(self, errno, name, message): argument 58 self.errno = errno 59 self.message = message 60 self.name = name [all …]
|
/freebsd/contrib/wpa/wpa_supplicant/examples/p2p/ |
H A D | p2p_connect.py | 78 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/python/ |
H A D | python-extensions.swig | 3 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/libexec/nuageinit/ |
H A D | yaml.lua | 92 function Parser.new (self, tokens) 93 self.tokens = tokens 94 self.parse_stack = {} 95 self.refs = {} 96 self.current = 0 97 return self 246 Parser.peek = function (self, offset) 248 return self.tokens[offset + self.current] 251 Parser.advance = function (self) 252 self.current = self.current + 1 [all …]
|
/freebsd/tests/atf_python/sys/netlink/ |
H A D | attrs.py | 12 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 …]
|
/freebsd/crypto/openssl/Configurations/ |
H A D | gentemplate.pm | 53 my $self = shift; 56 my $fh = $self->{output}; 82 my $self = shift; 88 my @list = @{ $self->{info}->{depends}->{$thing} // 89 $self->{info}->{depends}->{$extensionlessthing} 100 next if defined $self->{info}->{attributes}->{depends}->{$thing}->{$item}->{'weak'}; 101 my @resolved = $self->collectdepends($item, @listsofar, $item); 113 my $self = shift; 140 } @{$self->{info}->{depends}->{$item} // []} 186 my $self = shift; [all …]
|
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/ |
H A D | test-runner.py.in | 75 def __init__(self): argument 76 self.starttime = None 77 self.returncode = None 78 self.runtime = '' 79 self.stdout = [] 80 self.stderr = [] 81 self.kmemleak = '' 82 self.result = '' 84 def done(self, proc, killed, reran): argument 89 m, s = divmod(monotonic_time() - self.starttime, 60) [all …]
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-filter-unittest.py | 259 def AssertSetEqual(self, lhs, rhs): argument 263 self.assertTrue(elem in rhs, '%s in %s' % (elem, rhs)) 266 self.assertTrue(elem in lhs, '%s in %s' % (elem, lhs)) 268 def AssertPartitionIsValid(self, set_var, list_of_sets): argument 274 self.assertEqual(len(set_var), len(full_partition)) 275 self.assertEqual(set(set_var), set(full_partition)) 277 def AdjustForParameterizedTests(self, tests_to_run): argument 286 def RunAndVerify(self, gtest_filter, tests_to_run): argument 289 tests_to_run = self.AdjustForParameterizedTests(tests_to_run) 303 self.AssertSetEqual(tests_run, tests_to_run) [all …]
|