/titanic_41/usr/src/cmd/vntsd/ |
H A D | queue.c | 51 vntsd_que_t *el; in alloc_que_el() local 54 el = (vntsd_que_t *)malloc(sizeof (vntsd_que_t)); in alloc_que_el() 55 if (el == NULL) { in alloc_que_el() 60 el->nextp = NULL; in alloc_que_el() 61 el->prevp = NULL; in alloc_que_el() 62 el->handle = handle; in alloc_que_el() 64 return (el); in alloc_que_el() 72 vntsd_que_t *el; in vntsd_que_append() local 78 el = alloc_que_el(handle); in vntsd_que_append() 80 if (el == NULL) { in vntsd_que_append() [all …]
|
H A D | vntsd.h | 409 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);
|
/titanic_41/usr/src/tools/ctf/cvt/ |
H A D | alist.c | 55 alist_hash(int nbuckets, alist_el_t *el) in alist_hash() argument 57 uintptr_t num = (uintptr_t)el->ale_name; in alist_hash() 91 alist_free_cb(alist_el_t *el, alist_t *alist) in alist_free_cb() argument 94 alist->al_namefree(el->ale_name); in alist_free_cb() 96 alist->al_valfree(el->ale_name); in alist_free_cb() 97 free(el); in alist_free_cb() 110 alist_el_t *el; in alist_add() local 112 el = xmalloc(sizeof (alist_el_t)); in alist_add() 113 el->ale_name = name; in alist_add() 114 el->ale_value = value; in alist_add() [all …]
|
H A D | tdata.c | 218 elist_t *el = tdp->t_emem; in free_elist() local 221 while (el) { in free_elist() 222 oel = el; in free_elist() 223 el = el->el_next; in free_elist()
|
/titanic_41/usr/src/lib/krb5/dyn/ |
H A D | dyn_put.c | 54 int DynAdd(obj, el) in DynAdd() argument 56 void *el; 60 ret = DynPut(obj, el, obj->num_el); 81 DynPtr el = (DynPtr) el_in; local 86 obj->el_size, el, obj->array, idx*obj->el_size); 92 memmove(obj->array + idx*obj->el_size, el, obj->el_size); 94 bcopy(el, obj->array + idx*obj->el_size, obj->el_size);
|
H A D | dyn.h | 61 int DynAdd P((DynObject obj, void *el)); 62 int DynPut P((DynObject obj, void *el, int idx));
|
/titanic_41/usr/src/lib/libresolv2/common/isc/ |
H A D | memcluster.c | 372 memcluster_element *el; in __memput_record() local 406 el = activelists[max_size]; in __memput_record() 408 el = activelists[size]; in __memput_record() 409 while (el != NULL && el != e) { in __memput_record() 410 prev = el; in __memput_record() 411 el = el->next; in __memput_record() 413 INSIST(el != NULL); /*%< double free */ in __memput_record() 416 activelists[max_size] = el->next; in __memput_record() 418 activelists[size] = el->next; in __memput_record() 420 prev->next = el->next; in __memput_record() [all …]
|
/titanic_41/usr/src/cmd/tip/ |
H A D | etc.remote | 5 :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)
|
/titanic_41/usr/src/cmd/svc/profile/ |
H A D | listsvcs.pl | 60 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") {
|
/titanic_41/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/ |
H A D | ecore_common.h | 16 #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)))); \
|
/titanic_41/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | SrvLocHeader.java | 555 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()
|
/titanic_41/usr/src/cmd/ndmpd/tlm/ |
H A D | tlm_traverse.c | 287 char *nm, int *el, fs_fhandle_t *efh, struct stat64 *est) in fs_readdir() argument 300 *el = 0; in fs_readdir() 309 *el = strlen(dp->d_name); in fs_readdir() 311 *el = 0; in fs_readdir() 333 int pl, el; /* path and directory entry length */ in traverse_post() local 422 el = NAME_MAX; in traverse_post() 424 &tsp->ts_dpos, nm, &el, in traverse_post() 442 if (el == 0) { in traverse_post() 448 nm[el] = '\0'; in traverse_post() 459 if (pl + 1 + el > PATH_MAX) { in traverse_post() [all …]
|
/titanic_41/usr/src/cmd/picl/plugins/common/devtree/ |
H A D | picldevtree.c | 2256 conf_entries_t *el; in free_conf_entries() local 2261 el = list; in free_conf_entries() 2262 while (el != NULL) { in free_conf_entries() 2263 del = el; in free_conf_entries() 2264 el = el->next; in free_conf_entries() 2269 return (el); in free_conf_entries() 2282 conf_entries_t *el; in read_conf_file() local 2305 el = malloc(sizeof (conf_entries_t)); in read_conf_file() 2306 if (el == NULL) in read_conf_file() 2308 el->name = strdup(nametok); in read_conf_file() [all …]
|
/titanic_41/usr/src/uts/i86pc/os/ |
H A D | pci_cfgacc_x86.c | 254 #define BUS_INSERT(prev, el) \ argument 255 el->next = *prev; \ 256 *prev = el; 258 #define BUS_REMOVE(prev, el) \ argument 259 *prev = el->next;
|
/titanic_41/usr/src/cmd/lgrpinfo/ |
H A D | lgrpinfo.pl | 442 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;
|
/titanic_41/usr/src/cmd/picl/plugins/sun4u/grover/envd/ |
H A D | piclenvsetup.c | 245 node_list_t *el; in add_node_to_list() local 248 el = malloc(sizeof (node_list_t)); in add_node_to_list() 249 if (el == NULL) in add_node_to_list() 251 el->nodeh = nodeh; in add_node_to_list() 252 el->next = NULL; in add_node_to_list() 254 listp = el; in add_node_to_list() 265 tmp->next = el; in add_node_to_list()
|
/titanic_41/usr/src/cmd/hal/hald/ |
H A D | device_info.c | 892 start (ParsingContext * pc, const char *el, const char **attr) in start() argument 914 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() [all …]
|
/titanic_41/usr/src/cmd/picl/plugins/sun4u/excalibur/envd/ |
H A D | piclenvsetup.c | 268 node_list_t *el; in add_node_to_list() local 271 el = malloc(sizeof (node_list_t)); in add_node_to_list() 272 if (el == NULL) in add_node_to_list() 274 el->nodeh = nodeh; in add_node_to_list() 275 el->next = NULL; in add_node_to_list() 277 listp = el; in add_node_to_list() 288 tmp->next = el; in add_node_to_list()
|
/titanic_41/usr/src/uts/common/os/ |
H A D | evchannels.c | 130 evch_dl_add(evch_dlist_t *hp, evch_dlelem_t *el) in evch_dl_add() argument 135 x->dl_next = el; in evch_dl_add() 136 y->dl_prev = el; in evch_dl_add() 137 el->dl_next = y; in evch_dl_add() 138 el->dl_prev = x; in evch_dl_add() 186 evch_dl_next(evch_dlist_t *hp, void *el) in evch_dl_next() argument 188 evch_dlelem_t *ep = (evch_dlelem_t *)el; in evch_dl_next() 223 evch_q_in(evch_squeue_t *q, evch_qelem_t *el) in evch_q_in() argument 225 q->sq_tail->q_next = el; in evch_q_in() 226 el->q_next = NULL; in evch_q_in() [all …]
|
/titanic_41/usr/src/cmd/ssh/sftp/ |
H A D | sftp.c | 1267 prompt(EditLine *el) in prompt() argument 1296 EditLine *el = NULL; in interactive_loop() local 1301 if ((il = el = el_init(__progname, stdin, stdout, stderr)) == NULL) in interactive_loop() 1306 el_set(el, EL_HIST, history, hl); in interactive_loop() 1308 el_set(el, EL_PROMPT, prompt); in interactive_loop() 1309 el_set(el, EL_EDITOR, "emacs"); in interactive_loop() 1310 el_set(el, EL_TERMINAL, NULL); in interactive_loop() 1311 el_set(el, EL_SIGNAL, 1); in interactive_loop() 1312 el_source(el, NULL); in interactive_loop() 1401 if ((line = el_gets(el, &count)) == NULL || count <= 0) { in interactive_loop() [all …]
|
/titanic_41/usr/src/lib/libpicltree/ |
H A D | picltree.c | 2546 append_entry_to_list(prop_list_t *el, prop_list_t *list) in append_entry_to_list() argument 2550 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 2655 el = (prop_list_t *)malloc(sizeof (prop_list_t)); in parse_prl() 2656 el->pname = pname; in parse_prl() 2657 el->pval = pval; in parse_prl() 2658 el->next = NULL; in parse_prl() 2659 *plist = append_entry_to_list(el, *plist); in parse_prl() [all …]
|
/titanic_41/usr/src/uts/i86pc/io/psm/ |
H A D | psm_common.c | 545 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()
|
/titanic_41/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/ |
H A D | Pg.pm | 1466 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;
|
/titanic_41/usr/src/uts/sun4u/os/ |
H A D | memscrub.c | 1372 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()
|
/titanic_41/usr/src/lib/libast/common/port/ |
H A D | lc.tab | 50 el greek ell|gre iso8859-7 204 gr greece el 252 sv el-salvador es
|