Home
last modified time | relevance | path

Searched refs:el (Results 1 – 25 of 59) sorted by relevance

123

/illumos-gate/usr/src/cmd/vntsd/
H A Dqueue.c50 vntsd_que_t *el; in alloc_que_el() local
54 if (el == NULL) { in alloc_que_el()
59 el->nextp = NULL; in alloc_que_el()
60 el->prevp = NULL; in alloc_que_el()
63 return (el); in alloc_que_el()
71 vntsd_que_t *el; in vntsd_que_append() local
87 *que_hd = el; in vntsd_que_append()
92 p->nextp = el; in vntsd_que_append()
95 el->prevp = p; in vntsd_que_append()
130 q->nextp = el; in vntsd_que_insert_after()
[all …]
H A Dvntsd.h409 typedef int (*compare_func_t)(void *el, void *data);
410 typedef int (*el_func_t)(void *el);
411 typedef void (*clean_func_t)(void *el);
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dmemcluster.c367 memcluster_element *el; in __memput_record() local
403 el = activelists[size]; in __memput_record()
404 while (el != NULL && el != e) { in __memput_record()
405 prev = el; in __memput_record()
406 el = el->next; in __memput_record()
415 prev->next = el->next; in __memput_record()
443 el = freelists[new_size]; in __memput_record()
444 while (el != NULL && el->next != NULL) in __memput_record()
445 el = el->next; in __memput_record()
446 if (el) in __memput_record()
[all …]
/illumos-gate/usr/src/lib/krb5/dyn/
H A Ddyn_put.c52 int DynAdd(obj, el) in DynAdd() argument
54 void *el;
58 ret = DynPut(obj, el, obj->num_el);
79 DynPtr el = (DynPtr) el_in; local
84 obj->el_size, el, obj->array, idx*obj->el_size);
90 memmove(obj->array + idx*obj->el_size, el, obj->el_size);
92 bcopy(el, obj->array + idx*obj->el_size, obj->el_size);
H A Ddyn.h59 int DynAdd P((DynObject obj, void *el));
60 int DynPut P((DynObject obj, void *el, int idx));
/illumos-gate/usr/src/cmd/tip/
H A Detc.remote5 :dv=/dev/term/b:br#9600:el=^C^S^Q^U^D:ie=%$:oe=^D:
12 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#300:tc=dialers:
14 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#1200:tc=dialers:
16 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#2400:tc=dialers:
18 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#9600:tc=dialers:
20 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#19200:tc=dialers:
22 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#300:tc=dialers:
24 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#1200:tc=dialers:
31 el EOL marks (default is NULL)
/illumos-gate/usr/src/cmd/svc/profile/
H A Dlistsvcs.pl60 my ($p, $el, %attrs) = @_;
66 if ($el eq "service") {
68 } elsif ($el eq "instance" && defined $servicename) {
76 my ($p, $el) = @_;
78 if ($el eq "service") {
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_common.h16 #define __BIT_VEC64_SET_BIT(el, bit) \ argument
18 el = ((el) | ((u64)0x1 << (bit))); \
21 #define __BIT_VEC64_CLEAR_BIT(el, bit) \ argument
23 el = ((el) & (~((u64)0x1 << (bit)))); \
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSrvLocHeader.java555 String el = ""; in parseCommaSeparatedListIn() local
572 el += tok; in parseCommaSeparatedListIn()
583 el += tok; in parseCommaSeparatedListIn()
590 el += tok; in parseCommaSeparatedListIn()
596 if (el.length() <= 0) { in parseCommaSeparatedListIn()
606 v.addElement(el); in parseCommaSeparatedListIn()
607 el = ""; in parseCommaSeparatedListIn()
611 el += tok; in parseCommaSeparatedListIn()
618 if (el.length() <= 0) { in parseCommaSeparatedListIn()
626 v.addElement(el); in parseCommaSeparatedListIn()
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_traverse.c300 *el = 0; in fs_readdir()
309 *el = strlen(dp->d_name); in fs_readdir()
311 *el = 0; in fs_readdir()
422 el = NAME_MAX; in traverse_post()
442 if (el == 0) { in traverse_post()
448 nm[el] = '\0'; in traverse_post()
508 pl += el; in traverse_post()
891 el = NAME_MAX; in traverse_level()
908 if (el == 0) in traverse_level()
911 nm[el] = '\0'; in traverse_level()
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/common/devtree/
H A Dpicldevtree.c2282 el = list; in free_conf_entries()
2284 del = el; in free_conf_entries()
2285 el = el->next; in free_conf_entries()
2331 if ((el->name == NULL) || (el->piclclass == NULL)) { in read_conf_file()
2332 free(el); in read_conf_file()
2392 el = list; in free_asr_conf_entries()
2394 del = el; in free_asr_conf_entries()
2395 el = el->next; in free_asr_conf_entries()
2469 if ((el->name == NULL) || (el->piclclass == NULL) || in read_asr_conf_file()
2470 (el->address == NULL) || (el->status == NULL)) { in read_asr_conf_file()
[all …]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dpci_cfgacc_x86.c252 #define BUS_INSERT(prev, el) \ argument
253 el->next = *prev; \
254 *prev = el;
256 #define BUS_REMOVE(prev, el) \ argument
257 *prev = el->next;
/illumos-gate/usr/src/cmd/lgrpinfo/
H A Dlgrpinfo.pl442 my $el = pop @$tree;
447 return unless defined ($el);
452 lgrp_print($el, "$printprefix$printpostfix");
577 foreach my $el (@args) {
578 if ($el == ($end + 1)) {
583 $end = $el;
598 $start = $end = $el;
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/grover/envd/
H A Dpiclenvsetup.c243 node_list_t *el; in add_node_to_list() local
246 el = malloc(sizeof (node_list_t)); in add_node_to_list()
247 if (el == NULL) in add_node_to_list()
249 el->nodeh = nodeh; in add_node_to_list()
250 el->next = NULL; in add_node_to_list()
252 listp = el; in add_node_to_list()
263 tmp->next = el; in add_node_to_list()
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/excalibur/envd/
H A Dpiclenvsetup.c266 node_list_t *el; in add_node_to_list() local
269 el = malloc(sizeof (node_list_t)); in add_node_to_list()
270 if (el == NULL) in add_node_to_list()
272 el->nodeh = nodeh; in add_node_to_list()
273 el->next = NULL; in add_node_to_list()
275 listp = el; in add_node_to_list()
286 tmp->next = el; in add_node_to_list()
/illumos-gate/usr/src/cmd/hal/hald/
H A Ddevice_info.c914 if (strcmp (el, "match") == 0) { in start()
935 } else if (strcmp (el, "merge") == 0) { in start()
952 } else if (strcmp (el, "append") == 0) { in start()
969 } else if (strcmp (el, "prepend") == 0) { in start()
986 } else if (strcmp (el, "remove") == 0) { in start()
1003 } else if (strcmp (el, "clear") == 0) { in start()
1020 } else if (strcmp (el, "device") == 0) { in start()
1030 } else if (strcmp (el, "deviceinfo") == 0) { in start()
1040 } else if (strcmp (el, "spawn") == 0) { in start()
1059 XML_GetCurrentColumnNumber (pc->parser), el)); in start()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Devchannels.c139 x->dl_next = el; in evch_dl_add()
140 y->dl_prev = el; in evch_dl_add()
141 el->dl_next = y; in evch_dl_add()
142 el->dl_prev = x; in evch_dl_add()
229 q->sq_tail->q_next = el; in evch_q_in()
230 el->q_next = NULL; in evch_q_in()
231 q->sq_tail = el; in evch_q_in()
244 evch_qelem_t *el; in evch_q_out() local
253 return (el); in evch_q_out()
263 if (el == NULL) in evch_q_next()
[all …]
/illumos-gate/usr/src/lib/libpicltree/
H A Dpicltree.c2550 if (el == NULL) in append_entry_to_list()
2554 list = el; in append_entry_to_list()
2566 ptr->next = el; in append_entry_to_list()
2593 prop_list_t *el; in parse_prl() local
2656 el->pname = pname; in parse_prl()
2657 el->pval = pval; in parse_prl()
2658 el->next = NULL; in parse_prl()
3248 if (el == NULL) in picld_plugin_register()
3259 el->next = NULL; in picld_plugin_register()
3262 plugin_reg_list = el; in picld_plugin_register()
[all …]
/illumos-gate/usr/src/uts/i86pc/io/psm/
H A Dpsm_common.c545 psm_acpi_edgelevel(UINT32 el) in psm_acpi_edgelevel() argument
547 switch (el) { in psm_acpi_edgelevel()
762 int i, el, po, irqlist_len; in acpi_get_possible_irq_resources() local
788 el = resp->Data.Irq.Triggering; in acpi_get_possible_irq_resources()
794 el = resp->Data.ExtendedIrq.Triggering; in acpi_get_possible_irq_resources()
815 intr_flags.intr_el = psm_acpi_edgelevel(el); in acpi_get_possible_irq_resources()
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/
H A DPg.pm1466 foreach my $el (@args) {
1467 if (!$el =~ /^\d+$/) {
1468 $result = "$result $el";
1469 $end = $el;
1470 } elsif ($el == ($end + 1)) {
1475 $end = $el;
1490 $start = $end = $el;
/illumos-gate/usr/src/uts/sun4u/os/
H A Dmemscrub.c1372 struct memlist *el; in new_memscrub() local
1374 el = list; in new_memscrub()
1376 kmem_free(el, sizeof (struct memlist)); in new_memscrub()
1394 struct memlist *el; in new_memscrub() local
1396 el = old_list; in new_memscrub()
1398 kmem_free(el, sizeof (struct memlist)); in new_memscrub()
/illumos-gate/usr/src/lib/libdwarf/common/
H A Dpro_die.c367 const struct Dwarf_P_debug_str_entry_s*el = l; in _dwarf_debug_str_compare_func() local
373 if (el->dse_has_table_offset) { in _dwarf_debug_str_compare_func()
378 lname = el->dse_dbg->de_debug_str->ds_data + in _dwarf_debug_str_compare_func()
379 el->dse_table_offset; in _dwarf_debug_str_compare_func()
382 lname = el->dse_name; in _dwarf_debug_str_compare_func()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dlc.tab50 el greek ell|gre iso8859-7
204 gr greece el
252 sv el-salvador es
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dcudbg.h238 struct el {char *name; char *file_name; int bit; u32 flag; }; argument
239 static struct el ATTRIBUTE_UNUSED entity_list[] = {
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_eeprom.c248 uint32_t sum = 0, el; in ath9k_hw_check_def_eeprom() local
296 el = swab16(ahp->ah_eeprom.def.baseEepHeader.length); in ath9k_hw_check_def_eeprom()
298 el = ahp->ah_eeprom.def.baseEepHeader.length; in ath9k_hw_check_def_eeprom()
300 if (el > sizeof (struct ar5416_eeprom_def)) in ath9k_hw_check_def_eeprom()
303 el = el / sizeof (uint16_t); in ath9k_hw_check_def_eeprom()
307 for (i = 0; i < el; i++) in ath9k_hw_check_def_eeprom()
378 uint32_t sum = 0, el; in ath9k_hw_check_4k_eeprom() local
428 el = ahp->ah_eeprom.map4k.baseEepHeader.length; in ath9k_hw_check_4k_eeprom()
430 if (el > sizeof (struct ar5416_eeprom_def)) in ath9k_hw_check_4k_eeprom()
433 el = el / sizeof (uint16_t); in ath9k_hw_check_4k_eeprom()
[all …]

123