Home
last modified time | relevance | path

Searched refs:self (Results 1 – 25 of 221) sorted by relevance

123456789

/dragonfly/contrib/bmake/mk/
H A Dmeta2deps.py246 self.exts = target_spec_exts(self.target_spec)
271 if self.target_spec != self.machine:
305 if self.dpdeps and not self.reldir:
309 srctop = self.find_top(self.curdir, self.srctops)
318 self.last_dir = self.cwd
444 cwd = self.last_dir = self.cwd
565 srctop = self.find_top(path, self.srctops)
590 path = resolve(path, cwd, self.last_dir, self.debug, self.debug_out)
601 dir = abspath(dir, cwd, self.last_dir, self.debug, self.debug_out)
613 if path in [self.last_dir, cwd, self.cwd, self.curdir]:
[all …]
/dragonfly/sys/libprop/
H A Dprop_rb.c222 RB_TAILQ_INSERT_BEFORE(RB_FATHER(self), self, rb_link); in _prop_rb_tree_insert_node()
602 rbt->rbt_minmax[RB_POSITION(self)] = RB_FATHER(self); in rb_tree_swap_prune_and_rebalance()
908 self = self->rb_nodes[direction]; in _prop_rb_tree_iterate()
922 self = RB_FATHER(self); in _prop_rb_tree_iterate()
931 self = self->rb_nodes[direction]; in _prop_rb_tree_iterate()
934 self = self->rb_nodes[other]; in _prop_rb_tree_iterate()
956 self = self->rb_nodes[direction]; in rb_tree_iterate_const()
969 self = RB_FATHER(self); in rb_tree_iterate_const()
978 self = self->rb_nodes[direction]; in rb_tree_iterate_const()
981 self = self->rb_nodes[other]; in rb_tree_iterate_const()
[all …]
/dragonfly/contrib/dhcpcd/compat/
H A Drb.c300 RB_TAILQ_INSERT_BEFORE(RB_FATHER(self), self, rb_link); in rb_tree_insert_node()
679 rbt->rbt_minmax[RB_POSITION(self)] = RB_FATHER(self); in rb_tree_swap_prune_and_rebalance()
985 self = self->rb_nodes[direction]; in rb_tree_iterate()
999 self = RB_FATHER(self); in rb_tree_iterate()
1008 self = self->rb_nodes[direction]; in rb_tree_iterate()
1011 self = self->rb_nodes[other]; in rb_tree_iterate()
1033 self = self->rb_nodes[direction]; in rb_tree_iterate_const()
1046 self = RB_FATHER(self); in rb_tree_iterate_const()
1055 self = self->rb_nodes[direction]; in rb_tree_iterate_const()
1058 self = self->rb_nodes[other]; in rb_tree_iterate_const()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dgdb-gdb.py39 self.name = name
40 self.value = value
63 def __init__(self, val): argument
64 self.val = val
65 def __str__(self): argument
69 if not self.val:
112 self.val = val
113 def to_string(self): argument
127 self.val = val
181 def bounds_img(self): argument
[all …]
/dragonfly/sys/bus/u4b/controller/
H A Dehci_pci.c98 ehci_pci_match(device_t self) in ehci_pci_match() argument
217 ehci_pci_probe(device_t self) in ehci_pci_probe() argument
222 device_set_desc(self, desc); in ehci_pci_probe()
282 sc->sc_bus.parent = self; in ehci_pci_attach()
293 pci_enable_busmaster(self); in ehci_pci_attach()
386 pci_get_devid(self)); in ehci_pci_attach()
418 ehci_pci_via_quirk(self); in ehci_pci_attach()
431 device_printf(self, in ehci_pci_attach()
444 device_printf(self, in ehci_pci_attach()
462 ehci_pci_detach(self); in ehci_pci_attach()
[all …]
H A Dohci_pci.c111 ohci_pci_match(device_t self) in ohci_pci_match() argument
187 ohci_pci_probe(device_t self) in ohci_pci_probe() argument
192 device_set_desc(self, desc); in ohci_pci_probe()
207 sc->sc_bus.parent = self; in ohci_pci_attach()
217 sc->sc_dev = self; in ohci_pci_attach()
219 pci_enable_busmaster(self); in ohci_pci_attach()
225 if (pci_get_devid(self) == 0x1103108e && pci_get_intpin(self) == 0) in ohci_pci_attach()
226 pci_set_intpin(self, 4); in ohci_pci_attach()
293 pci_get_devid(self)); in ohci_pci_attach()
318 ohci_pci_detach(self); in ohci_pci_attach()
[all …]
H A Duhci_pci.c92 uhci_pci_match(device_t self) in uhci_pci_match() argument
235 uhci_pci_probe(device_t self) in uhci_pci_probe() argument
240 device_set_desc(self, desc); in uhci_pci_probe()
248 uhci_pci_attach(device_t self) in uhci_pci_attach() argument
255 sc->sc_bus.parent = self; in uhci_pci_attach()
265 sc->sc_dev = self; in uhci_pci_attach()
267 pci_enable_busmaster(self); in uhci_pci_attach()
312 pci_get_devid(self)); in uhci_pci_attach()
364 uhci_pci_detach(self); in uhci_pci_attach()
369 uhci_pci_detach(device_t self) in uhci_pci_detach() argument
[all …]
H A Dxhci_pci.c89 xhci_pci_match(device_t self) in xhci_pci_match() argument
136 xhci_pci_probe(device_t self) in xhci_pci_probe() argument
141 device_set_desc(self, desc); in xhci_pci_probe()
229 pci_enable_busmaster(self); in xhci_pci_attach()
261 self, SYS_RES_IRQ, in xhci_pci_attach()
266 pci_release_msi(self); in xhci_pci_attach()
289 pci_release_msi(self); in xhci_pci_attach()
290 device_printf(self, in xhci_pci_attach()
334 device_printf(self, in xhci_pci_attach()
343 xhci_pci_detach(self); in xhci_pci_attach()
[all …]
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/
H A Dprinting.py52 self.name = name
54 self.enabled = True
56 def __call__(self, val): argument
71 def __init__(self, name): argument
72 self.name = name
73 self.enabled = True
194 self.subprinters.append(self.RegexpSubprinter(name, regexp,
220 self.val = val
222 def to_string(self): argument
224 v = long(self.val)
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_xz.c396 self->name = "xz"; in xz_bidder_init()
404 self->name = "lzma"; in lzma_bidder_init()
412 self->name = "lzip"; in lzip_bidder_init()
491 self->data = state; in xz_lzma_bidder_init()
526 set_error(self, ret); in xz_lzma_bidder_init()
530 self->data = NULL; in xz_lzma_bidder_init()
578 set_error(self, ret); in lzip_init()
584 set_error(self, ret); in lzip_init()
759 self->name = "lzma"; in lzma_bidder_init()
773 self->name = "xz"; in xz_bidder_init()
[all …]
H A Darchive_rb.c206 RB_MARK_RED(self); in __archive_rb_tree_insert_node()
311 self = grandpa; in __archive_rb_tree_insert_rebalance()
516 const int rebalance = RB_BLACK_P(self) && !RB_ROOT_P(rbt, self); in __archive_rb_tree_remove_node()
680 if (self == NULL) { in __archive_rb_tree_iterate()
681 self = rbt->rbt_root; in __archive_rb_tree_iterate()
685 self = self->rb_nodes[direction]; in __archive_rb_tree_iterate()
686 return self; in __archive_rb_tree_iterate()
696 self = RB_FATHER(self); in __archive_rb_tree_iterate()
705 self = self->rb_nodes[direction]; in __archive_rb_tree_iterate()
707 self = self->rb_nodes[other]; in __archive_rb_tree_iterate()
[all …]
H A Darchive_read_support_filter_lzop.c140 (void)self; /* UNUSED */ in lzop_bidder_bid()
167 self->code = ARCHIVE_FILTER_LZOP; in lzop_bidder_init()
168 self->name = "lzop"; in lzop_bidder_init()
187 self->code = ARCHIVE_FILTER_LZOP; in lzop_bidder_init()
188 self->name = "lzop"; in lzop_bidder_init()
197 self->data = state; in lzop_bidder_init()
198 self->vtable = &lzop_reader_vtable; in lzop_bidder_init()
300 archive_set_error(&self->archive->archive, in consume_header()
304 archive_set_error(&self->archive->archive, in consume_header()
380 ret = consume_header(self); in lzop_filter_read()
[all …]
H A Darchive_read_support_filter_lz4.c149 (void)self; /* UNUSED */ in lz4_reader_bid()
203 self->code = ARCHIVE_FILTER_LZ4; in lz4_reader_init()
204 self->name = "lz4"; in lz4_reader_init()
225 self->code = ARCHIVE_FILTER_LZ4; in lz4_reader_init()
226 self->name = "lz4"; in lz4_reader_init()
235 self->data = state; in lz4_reader_init()
237 self->vtable = &lz4_reader_vtable; in lz4_reader_init()
311 archive_set_error(&self->archive->archive, in lz4_filter_read()
325 archive_set_error(&self->archive->archive, in lz4_filter_read()
350 self->upstream, 4, NULL); in lz4_filter_read()
[all …]
H A Darchive_read_support_filter_gzip.c243 (void)self; /* UNUSED */ in gzip_bidder_bid()
266 self->code = ARCHIVE_FILTER_GZIP; in gzip_bidder_init()
267 self->name = "gzip"; in gzip_bidder_init()
278 state = (struct private_data *)self->data; in gzip_read_header()
310 self->code = ARCHIVE_FILTER_GZIP; in gzip_bidder_init()
311 self->name = "gzip"; in gzip_bidder_init()
323 self->data = state; in gzip_bidder_init()
326 self->vtable = &gzip_reader_vtable; in gzip_bidder_init()
341 state = (struct private_data *)self->data; in consume_header()
443 ret = consume_header(self); in gzip_filter_read()
[all …]
H A Darchive_read_support_filter_bzip2.c121 (void)self; /* UNUSED */ in bzip2_reader_bid()
168 self->code = ARCHIVE_FILTER_BZIP2; in bzip2_reader_init()
169 self->name = "bzip2"; in bzip2_reader_init()
192 self->code = ARCHIVE_FILTER_BZIP2; in bzip2_reader_init()
193 self->name = "bzip2"; in bzip2_reader_init()
205 self->data = state; in bzip2_reader_init()
208 self->vtable = &bzip2_reader_vtable; in bzip2_reader_init()
224 state = (struct private_data *)self->data; in bzip2_filter_read()
238 if (bzip2_reader_bid(self->bidder, self->upstream) == 0) { in bzip2_filter_read()
285 archive_set_error(&self->archive->archive, in bzip2_filter_read()
[all …]
/dragonfly/contrib/gdb-7/gdb/python/
H A Dpy-objfile.c65 Py_TYPE (self)->tp_free (self); in objfpy_dealloc()
73 if (self) in objfpy_new()
75 self->objfile = NULL; in objfpy_new()
78 if (!self->printers) in objfpy_new()
80 Py_DECREF (self); in objfpy_new()
87 Py_DECREF (self); in objfpy_new()
91 return (PyObject *) self; in objfpy_new()
99 Py_INCREF (self->printers); in objfpy_get_printers()
100 return self->printers; in objfpy_get_printers()
124 tmp = self->printers; in objfpy_set_printers()
[all …]
H A Dpy-progspace.c67 pspy_dealloc (PyObject *self) in pspy_dealloc() argument
73 Py_TYPE (self)->tp_free (self); in pspy_dealloc()
81 if (self) in pspy_new()
83 self->pspace = NULL; in pspy_new()
86 if (!self->printers) in pspy_new()
88 Py_DECREF (self); in pspy_new()
95 Py_DECREF (self); in pspy_new()
99 return (PyObject *) self; in pspy_new()
108 return self->printers; in pspy_get_printers()
132 tmp = self->printers; in pspy_set_printers()
[all …]
H A Dpy-value.c84 if (self->prev) in valpy_dealloc()
85 self->prev->next = self->next; in valpy_dealloc()
91 if (self->next) in valpy_dealloc()
92 self->next->prev = self->prev; in valpy_dealloc()
94 value_free (self->value); in valpy_dealloc()
96 if (self->address) in valpy_dealloc()
102 if (self->type) in valpy_dealloc()
104 Py_DECREF (self->type); in valpy_dealloc()
109 Py_TYPE (self)->tp_free (self); in valpy_dealloc()
644 valpy_str (PyObject *self) in valpy_str() argument
[all …]
H A Dpy-param.c113 return gdbpy_parameter_value (self->type, &self->value); in get_attr()
126 switch (self->type) in set_parameter_value()
133 && (self->type == var_filename in set_parameter_value()
181 if (! self->enumeration[i]) in set_parameter_value()
187 self->value.cstringval = self->enumeration[i]; in set_parameter_value()
201 self->value.intval = cmp; in set_parameter_value()
243 if (self->type == var_uinteger) in set_parameter_value()
265 self->value.intval = (int) l; in set_parameter_value()
549 self->value.cstringval = self->enumeration[0]; in add_setshow_generic()
724 Py_INCREF (self); in parmpy_init()
[all …]
H A Dpy-block.c85 blpy_iter (PyObject *self) in blpy_iter() argument
90 BLPY_REQUIRE_VALID (self, block); in blpy_iter()
99 Py_INCREF (self); in blpy_iter()
110 BLPY_REQUIRE_VALID (self, block); in blpy_get_start()
120 BLPY_REQUIRE_VALID (self, block); in blpy_get_end()
131 BLPY_REQUIRE_VALID (self, block); in blpy_get_function()
147 BLPY_REQUIRE_VALID (self, block); in blpy_get_superblock()
165 BLPY_REQUIRE_VALID (self, block); in blpy_get_global_block()
184 BLPY_REQUIRE_VALID (self, block); in blpy_get_static_block()
298 Py_INCREF (self); in blpy_block_syms_iter()
[all …]
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/command/
H A Dtype_printers.py28 def __init__ (self): argument
32 def list_type_printers(self, type_printers): argument
45 def invoke(self, arg, from_tty): argument
62 def __init__(self, setting, name): argument
64 self.setting = setting
66 def set_some(self, name, printers): argument
70 p.enabled = self.setting
74 def invoke(self, arg, from_tty): argument
93 def complete(self, text, word): argument
109 def __init__(self): argument
[all …]
/dragonfly/sys/bus/firewire/
H A Dfwohci_pci.c200 fwohci_pci_init(device_t self) in fwohci_pci_init() argument
264 fwohci_pci_init(self); in fwohci_pci_attach()
282 fwohci_pci_detach(self); in fwohci_pci_attach()
296 fwohci_pci_detach(self); in fwohci_pci_attach()
326 err = fwohci_init(sc, self); in fwohci_pci_attach()
330 fwohci_pci_detach(self); in fwohci_pci_attach()
335 bus_generic_probe(self); in fwohci_pci_attach()
336 bus_generic_attach(self); in fwohci_pci_attach()
348 fwohci_stop(sc, self); in fwohci_pci_detach()
350 bus_generic_detach(self); in fwohci_pci_detach()
[all …]
/dragonfly/contrib/binutils-2.34/gprof/
H A Dutils.c43 print_name_only (Sym *self) in print_name_only() argument
45 const char *name = self->name; in print_name_only()
63 filename = self->file->name; in print_name_only()
73 filename = self->file->name; in print_name_only()
100 print_name (Sym *self) in print_name() argument
102 print_name_only (self); in print_name()
104 if (self->cg.cyc.num != 0) in print_name()
108 if (self->cg.index != 0) in print_name()
110 if (self->cg.print_flag) in print_name()
112 printf (" [%d]", self->cg.index); in print_name()
[all …]
/dragonfly/contrib/binutils-2.27/gprof/
H A Dutils.c43 print_name_only (Sym *self) in print_name_only() argument
45 const char *name = self->name; in print_name_only()
63 filename = self->file->name; in print_name_only()
73 filename = self->file->name; in print_name_only()
100 print_name (Sym *self) in print_name() argument
102 print_name_only (self); in print_name()
104 if (self->cg.cyc.num != 0) in print_name()
108 if (self->cg.index != 0) in print_name()
110 if (self->cg.print_flag) in print_name()
112 printf (" [%d]", self->cg.index); in print_name()
[all …]
/dragonfly/crypto/openssh/
H A Dnchan.c123 c->self, c->istate); in chan_read_failed()
134 c->self); in chan_ibuf_empty()
145 c->self, c->istate); in chan_ibuf_empty()
156 c->self); in chan_obuf_empty()
166 c->self, c->ostate); in chan_obuf_empty()
201 c->self, c->istate); in chan_send_eof2()
215 c->self, c->istate, c->ostate); in chan_send_close2()
237 c->self); in chan_send_eow2()
274 c->self); in chan_rcvd_oclose()
321 c->self, c->ostate); in chan_write_failed()
[all …]

123456789