Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 25 of 156) sorted by relevance

1234567

/titanic_41/usr/src/cmd/truss/
H A Dprint.c99 prt_nov(private_t *pri, int raw, long val) /* print nothing */ in prt_nov() argument
105 prt_dec(private_t *pri, int raw, long val) /* print as decimal */ in prt_dec() argument
118 prt_uns(private_t *pri, int raw, long val) /* print as unsigned decimal */ in prt_uns() argument
131 prt_un1(private_t *pri, int raw, long val) in prt_un1() argument
134 prt_dec(pri, raw, val); in prt_un1()
136 prt_uns(pri, raw, val); in prt_un1()
141 prt_oct(private_t *pri, int raw, long val) /* print as octal */ in prt_oct() argument
154 prt_hex(private_t *pri, int raw, long val) /* print as hexadecimal */ in prt_hex() argument
168 prt_hhx(private_t *pri, int raw, long val) in prt_hhx() argument
182 prt_dex(private_t *pri, int raw, long val) in prt_dex() argument
[all …]
H A Dactions.c101 int raw = prismember(&rawout, sys); in report_sleeping() local
103 expound(pri, 0, raw); in report_sleeping()
366 int raw; in sysentry() local
451 raw = prismember(&rawout, what); in sysentry()
473 name = sysname(pri, what, raw? -1 : subcode); in sysentry()
481 if (!raw && pri->sys_valid && in sysentry()
489 } else if (x != NOV && (x != HID || raw)) { in sysentry()
493 (*Print[x])(pri, raw, arg, in sysentry()
496 (*Print[x])(pri, raw, arg); in sysentry()
520 int raw; in sysexit() local
[all …]
/titanic_41/usr/src/cmd/sgs/libelf/common/
H A Drawdata.c42 Dnode * raw; in elf_rawdata() local
85 if ((raw = _elf_dnode()) == 0) { in elf_rawdata()
89 raw->db_myflags |= DBF_READY; in elf_rawdata()
91 d->db_raw = raw; in elf_rawdata()
92 raw->db_data.d_size = d->db_shsz; in elf_rawdata()
93 rc = &raw->db_data; in elf_rawdata()
106 free(raw); in elf_rawdata()
110 raw->db_data.d_size = d->db_fsz; in elf_rawdata()
112 raw->db_data.d_buf = (Elf_Void *)(elf->ed_raw + d->db_off); in elf_rawdata()
113 d->db_raw = raw; in elf_rawdata()
[all …]
/titanic_41/usr/src/cmd/isns/isnsd/
H A Dscn.c314 scn_raw_t *raw in free_raw() argument
317 if (raw->ref == 0) { in free_raw()
318 free(raw->iscsi); in free_raw()
320 if (raw->ip != NULL) { in free_raw()
321 free(raw->ip); in free_raw()
323 free(raw); in free_raw()
801 scn_raw_t *raw; in make_raw_entity() local
803 raw = (scn_raw_t *)malloc(sizeof (scn_raw_t)); in make_raw_entity()
804 if (raw != NULL) { in make_raw_entity()
805 raw->type = obj->type; in make_raw_entity()
[all …]
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Drealpath.c46 pathcanon(raw, canon, dosymlinks) in pathcanon() argument
47 char *raw, in pathcanon()
60 if (raw == NULL || canon == NULL) {
72 s = raw;
236 realpath(raw, canon) in realpath() argument
237 char *raw; in realpath()
240 return (pathcanon(raw, canon, 1) < 0 ? NULL : canon);
/titanic_41/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DExpression.java95 static Expression valueOf(String raw) throws IllegalArgumentException in valueOf() argument
102 if ((exp = KVOpExpression.valueOf(raw)) == null) in valueOf()
103 if ((exp = KVExpression.valueOf(raw)) == null) in valueOf()
104 exp = KExpression.valueOf(raw); in valueOf()
107 "unrecognized expression: " + raw); in valueOf()
250 static Expression valueOf(String raw) throws IllegalArgumentException in valueOf() argument
253 Matcher m = pattern.matcher(raw); in valueOf()
426 static Expression valueOf(String raw) throws IllegalArgumentException in valueOf() argument
429 Matcher m = pattern.matcher(raw); in valueOf()
577 static Expression valueOf(String raw) throws IllegalArgumentException in valueOf() argument
[all …]
/titanic_41/usr/src/cmd/lvm/etc/
H A Dmd.ctlrmap27 "/SUNW,pln@.*/ssd@0,[0-9]:[a-h](,raw){0,1}$" 0 0 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
28 "/SUNW,pln@.*/ssd@1,[0-9]:[a-h](,raw){0,1}$" 0 1 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
29 "/SUNW,pln@.*/ssd@2,[0-9]:[a-h](,raw){0,1}$" 1 2 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
30 "/SUNW,pln@.*/ssd@3,[0-9]:[a-h](,raw){0,1}$" 1 3 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
31 "/SUNW,pln@.*/ssd@4,[0-9]:[a-h](,raw){0,1}$" 2 4 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
32 "/SUNW,pln@.*/ssd@5,[0-9]:[a-h](,raw){0,1}$" 2 5 "/SUNW,pln@" "%*04lx%04lx,%08lx/"
/titanic_41/usr/src/tools/ndrgen/
H A Dndrgen.sh111 $NDRPROG > $BASENAME.raw
127 cat $BASENAME.raw >> ${BASENAME}_ndr.c
129 rm -f $BASENAME.raw
132 rm -f $BASENAME.raw
/titanic_41/usr/src/lib/libtsol/common/
H A Dsetflabel.c269 abspath(char *wd, const char *raw, char *canon) in abspath() argument
276 if (raw == NULL || canon == NULL) in abspath()
283 if (raw[0] != '/') { in abspath()
299 while (d < limit && (*d++ = *raw++)) in abspath()
302 raw = absbuf; in abspath()
308 return (realpath(raw, canon) == NULL ? -1 : 0); in abspath()
/titanic_41/usr/src/lib/libast/common/disc/
H A Dsfdcfilter.c35 char raw[4096]; /* raw data buffer */ member
57 { if((r = sfrd(f,fi->raw,sizeof(fi->raw),disc)) > 0)
58 { fi->next = fi->raw;
59 fi->endb = fi->raw+r;
177 fi->next = fi->endb = fi->raw;
/titanic_41/usr/src/cmd/sendmail/aux/
H A Dmconnect.c60 static int raw = 0; variable
67 if (raw)
113 raw = 1;
195 if (raw) {
217 if (!raw && c == '\n')
237 if (raw)
/titanic_41/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_sp_verbs.c574 static int ecore_raw_wait(struct _lm_device_t *pdev, struct ecore_raw_obj *raw) in ecore_raw_wait() argument
576 return ecore_state_wait(pdev, raw->state, raw->pstate); in ecore_raw_wait()
1077 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_get_rx_tx_flag() local
1080 if ((raw->obj_type == ECORE_OBJ_TYPE_TX) || in ecore_vlan_mac_get_rx_tx_flag()
1081 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag()
1084 if ((raw->obj_type == ECORE_OBJ_TYPE_RX) || in ecore_vlan_mac_get_rx_tx_flag()
1085 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag()
1136 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_set_cmd_hdr_e2() local
1138 hdr->client_id = raw->cl_id; in ecore_vlan_mac_set_cmd_hdr_e2()
1139 hdr->func_id = raw->func_id; in ecore_vlan_mac_set_cmd_hdr_e2()
[all …]
/titanic_41/usr/src/cmd/boot/installgrub/
H A Dinstallgrub.c1466 char *raw; in get_raw_partition_path() local
1480 raw = strdup(device->path_p0); in get_raw_partition_path()
1481 if (raw == NULL) { in get_raw_partition_path()
1486 raw[strlen(raw) - 2] = '1' + part; in get_raw_partition_path()
1487 return (raw); in get_raw_partition_path()
1491 raw = strdup(device->path); in get_raw_partition_path()
1492 if (raw == NULL) { in get_raw_partition_path()
1497 len = strlen(raw); in get_raw_partition_path()
1499 (raw[len - 2] != 's' || raw[len - 1] == '2')) { in get_raw_partition_path()
1501 free(raw); in get_raw_partition_path()
[all …]
/titanic_41/usr/src/uts/common/io/i40e/core/
H A Di40e_common.c394 (struct i40e_aqc_queue_shutdown *)&desc.params.raw; in i40e_aq_queue_shutdown()
426 (struct i40e_aqc_get_set_rss_lut *)&desc.params.raw; in i40e_aq_get_set_rss_lut()
511 (struct i40e_aqc_get_set_rss_key *)&desc.params.raw; in i40e_aq_get_set_rss_key()
1019 (struct i40e_aqc_mac_address_read *)&desc.params.raw; in i40e_aq_mac_address_read()
1045 (struct i40e_aqc_mac_address_write *)&desc.params.raw; in i40e_aq_mac_address_write()
1652 (struct i40e_aq_set_phy_config *)&desc.params.raw; in i40e_aq_set_phy_config()
1765 (struct i40e_aq_set_mac_config *)&desc.params.raw; in i40e_aq_set_mac_config()
1797 (struct i40e_aqc_clear_pxe *)&desc.params.raw; in i40e_aq_clear_pxe_mode()
1824 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw; in i40e_aq_set_link_restart_an()
1856 (struct i40e_aqc_get_link_status *)&desc.params.raw; in i40e_aq_get_link_info()
[all …]
/titanic_41/usr/src/lib/sun_fc/common/
H A DFCHBAPort.cc769 string raw = mappings->entries[i].targetDriver; in getTargetMappings() local
772 if (raw.length() <= 0) { in getTargetMappings()
785 if ((raw.find("/st@") != raw.npos) || in getTargetMappings()
786 (raw.find("/tape@") != raw.npos)) { in getTargetMappings()
787 raw += ":n"; in getTargetMappings()
788 } else if ((raw.find("/ssd@") != raw.npos) || in getTargetMappings()
789 (raw.find("/sd@") != raw.npos) || in getTargetMappings()
790 (raw.find("/disk@") != raw.npos)) { in getTargetMappings()
791 raw += ":c,raw"; in getTargetMappings()
792 } else if ((raw.find("/ses@") != raw.npos) || in getTargetMappings()
[all …]
/titanic_41/usr/src/uts/i86pc/io/
H A Dimmu_dmar.c411 dmar_parse(dmar_table_t **tblpp, char *raw) in dmar_parse() argument
418 ASSERT(raw); in dmar_parse()
427 if (raw[0] != 'D' || raw[1] != 'M' || in dmar_parse()
428 raw[2] != 'A' || raw[3] != 'R') { in dmar_parse()
440 tbl->tbl_raw = raw; in dmar_parse()
445 tbl->tbl_rawlen = get_uint32(&raw[4]); in dmar_parse()
448 tbl->tbl_oem_id = get_str(&raw[10], TBL_OEM_ID_SZ); in dmar_parse()
449 tbl->tbl_oem_tblid = get_str(&raw[16], TBL_OEM_TBLID_SZ); in dmar_parse()
450 tbl->tbl_oem_rev = get_uint32(&raw[24]); in dmar_parse()
451 tbl->tbl_haw = get_uint8(&raw[36]) + 1; in dmar_parse()
[all …]
/titanic_41/usr/src/lib/pyzfs/common/
H A Dallow.py46 def __init__(self, raw): argument
62 for whokey in raw.keys():
63 perms = raw[whokey].keys()
238 for raw in ds.get_fsacl().values():
239 for whokey in raw.keys():
330 for (fs, raw) in ds.get_fsacl().items():
331 p[fs] = FSPerms(raw)
/titanic_41/usr/src/lib/libcmd/common/
H A Dcat.c134 register int raw; in vcat() local
152 raw = !mbwide(); in vcat()
156 if (raw) in vcat()
303 if (raw || n < T_CONTROL) in vcat()
327 } while (states[c = *++cp] == T_CNTL8BIT && raw); in vcat()
334 } while (states[c = *++cp] == T_EIGHTBIT && raw); in vcat()
/titanic_41/usr/src/cmd/zinject/
H A Dzinject.c555 char *raw = NULL; in main() local
622 raw = optarg; in main()
784 if (raw != NULL || range != NULL || type != TYPE_INVAL || in main()
816 if (raw != NULL || range != NULL || type != TYPE_INVAL || in main()
849 } else if (raw != NULL) { in main()
875 if (translate_raw(raw, &record) != 0) in main()
880 if (raw != NULL || range != NULL || type != TYPE_INVAL || in main()
/titanic_41/usr/src/lib/libnsl/key/
H A Dpublickey.c345 char *raw, /* in */ in extract_secret_g() argument
354 char *buf = malloc(strlen(raw) + 1); /* private tmp buf */ in extract_secret_g()
357 if (!buf || !passwd || !raw || !private || !prilen || in extract_secret_g()
366 (void) strcpy(buf, raw); in extract_secret_g()
400 extract_secret(char *raw, char *private, char *passwd) in extract_secret() argument
402 return (extract_secret_g(raw, private, HEXKEYBYTES+1, passwd, in extract_secret()
/titanic_41/usr/src/lib/libsmbfs/smb/
H A Dsigning.c82 uint8_t raw[SMB_HDRLEN]; /* header length (32) */ in smb_compute_MAC() member
101 bcopy(m->m_data, smbhdr.r.raw, SMB_HDRLEN); in smb_compute_MAC()
114 MD5Update(&md5, smbhdr.r.raw, SMB_HDRLEN); in smb_compute_MAC()
/titanic_41/usr/src/uts/common/io/myri10ge/drv/
H A Dmyri10ge_lro.c46 myri10ge_csum_generic(uint16_t *raw, int len) in myri10ge_csum_generic() argument
51 csum += *raw; in myri10ge_csum_generic()
52 raw++; in myri10ge_csum_generic()
53 csum += *raw; in myri10ge_csum_generic()
54 raw++; in myri10ge_csum_generic()
/titanic_41/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dpages.c180 int raw; in restore_page_group() local
212 raw = 0; in restore_page_group()
215 raw = 1; in restore_page_group()
220 if (raw) in restore_page_group()
/titanic_41/usr/src/lib/libast/amd64/src/lib/libast/FEATURE/
H A Dmmap8 #define _mmap_anon 1 /* use mmap MAP_ANON to get raw memory */
9 #define _mmap_devzero 1 /* use mmap on /dev/zero to get raw memory */
/titanic_41/usr/src/lib/libast/i386/src/lib/libast/FEATURE/
H A Dmmap8 #define _mmap_anon 1 /* use mmap MAP_ANON to get raw memory */
9 #define _mmap_devzero 1 /* use mmap on /dev/zero to get raw memory */

1234567