Home
last modified time | relevance | path

Searched refs:m (Results 1 – 25 of 1591) sorted by relevance

12345678910>>...64

/titanic_41/usr/src/man/man1m/
H A DMakefile20 MANSECT= 1m
22 _MANFILES= 6to4relay.1m \
23 Intro.1m \
24 Uutry.1m \
25 accept.1m \
26 acct.1m \
27 acctadm.1m \
28 acctcms.1m \
29 acctcon.1m \
30 acctmerg.1m \
[all …]
/titanic_41/usr/src/man/man3m/
H A DMakefile16 MANSECT = 3m
18 MANFILES = acos.3m \
19 acosh.3m \
20 asin.3m \
21 asinh.3m \
22 atan.3m \
23 atan2.3m \
24 atanh.3m \
25 cabs.3m \
26 cacos.3m \
[all …]
/titanic_41/usr/src/lib/libeti/menu/inc/
H A Dprivate.h44 #define Height(m) (m)->height argument
45 #define Width(m) (m)->width argument
46 #define Rows(m) (m)->rows argument
47 #define Cols(m) (m)->cols argument
48 #define FRows(m) (m)->frows argument
49 #define FCols(m) (m)->fcols argument
50 #define MaxName(m) (m)->namelen argument
51 #define MaxDesc(m) (m)->desclen argument
52 #define Marklen(m) (m)->marklen argument
53 #define Itemlen(m) (m)->itemlen argument
[all …]
/titanic_41/usr/src/lib/libeti/menu/common/
H A Dpost.c39 _post_item(MENU *m, ITEM *k) in _post_item() argument
50 (void) wattron(Win(m), Grey(m)); in _post_item()
52 for (i = Marklen(m); i > 0; i--) { in _post_item()
53 (void) waddch(Win(m), ' '); in _post_item()
56 if (Value(k) || k == Current(m)) { in _post_item()
57 (void) wattron(Win(m), Fore(m)); in _post_item()
60 (void) wattron(Win(m), Back(m)); in _post_item()
65 if (Value(k) || (OneValue(m) && k == Current(m))) { in _post_item()
66 if (Marklen(m)) { in _post_item()
67 (void) waddstr(Win(m), Mark(m)); in _post_item()
[all …]
H A Dlink.c39 link_col_major(MENU *m) in link_col_major() argument
48 for (i = IthItem(m, 0), n = 0; i; i = IthItem(m, ++n)) { in link_col_major()
51 Left(i) = c ? IthItem(m, n-Rows(m)) : (ITEM *) NULL; in link_col_major()
52 if (n + Rows(m) >= Nitems(m)) { in link_col_major()
55 Right(i) = IthItem(m, n + Rows(m)); in link_col_major()
57 Up(i) = r ? IthItem(m, n-1) : (ITEM *) NULL; in link_col_major()
58 Down(i) = (r == Rows(m)-1) ? (ITEM *)0 : IthItem(m, n+1); in link_col_major()
59 if (++r == Rows(m)) { in link_col_major()
65 Down(IthItem(m, n-1)) = IthItem(m, n - Rows(m)); in link_col_major()
68 if (Cyclic(m)) { in link_col_major()
[all …]
H A Dpattern.c40 substr(MENU *m, char *s1, char *s2) in substr() argument
42 if (IgnoreCase(m)) { in substr()
62 _match(MENU *m, char c, ITEM **current) in _match() argument
77 if (Pindex(m)+1 > MaxName(m)) { in _match()
80 IthPattern(m, Pindex(m)) = c; in _match()
81 IthPattern(m, ++Pindex(m)) = '\0'; in _match()
83 i = Nitems(m)-1; in _match()
94 i = Nitems(m)-1; in _match()
97 if (++i >= Nitems(m)) { in _match()
101 if (substr(m, Pattern(m), Name(IthItem(m, i)))) { in _match()
[all …]
H A Ddriver.c39 menu_driver(MENU *m, int c) in menu_driver() argument
46 if (!m) { in menu_driver()
50 if (Indriver(m)) { in menu_driver()
53 if (!Posted(m)) { in menu_driver()
56 top = Top(m); in menu_driver()
57 current = Current(m); in menu_driver()
65 Pindex(m) = 0; in menu_driver()
66 IthPattern(m, 0) = '\0'; in menu_driver()
113 if (++top > Rows(m) - Height(m)) { in menu_driver()
122 n = min(Height(m), top); in menu_driver()
[all …]
H A Dmenuopts.c39 set_menu_opts(MENU *m, int opt) in set_menu_opts() argument
43 if (m) { in set_menu_opts()
44 if (Posted(m)) { in set_menu_opts()
50 if ((opt & O_ROWMAJOR) != RowMajor(m)) { in set_menu_opts()
51 Top(m) = 0; in set_menu_opts()
52 Current(m) = IthItem(m, 0); in set_menu_opts()
53 (void) set_menu_format(m, FRows(m), FCols(m)); in set_menu_opts()
57 if ((opt & O_NONCYCLIC) != (Mopt(m) & O_NONCYCLIC)) { in set_menu_opts()
58 SetLink(m); in set_menu_opts()
61 Mopt(m) = opt; in set_menu_opts()
[all …]
H A Dmenuformat.c39 set_menu_format(MENU *m, int rows, int cols) in set_menu_format() argument
44 if (m) { in set_menu_format()
45 if (Posted(m)) { in set_menu_format()
49 rows = FRows(m); in set_menu_format()
52 cols = FCols(m); in set_menu_format()
57 if (Pattern(m)) { in set_menu_format()
58 IthPattern(m, 0) = '\0'; in set_menu_format()
59 Pindex(m) = 0; in set_menu_format()
62 FRows(m) = rows; in set_menu_format()
63 FCols(m) = cols; in set_menu_format()
[all …]
H A Dterminit.c39 set_menu_init(MENU *m, PTF_void mi) in set_menu_init() argument
41 if (m) { in set_menu_init()
42 SMinit(m) = mi; in set_menu_init()
50 menu_init(MENU *m) in menu_init() argument
52 return (SMinit(m ? m : Dfl_Menu)); in menu_init()
56 set_menu_term(MENU *m, PTF_void mt) in set_menu_term() argument
58 if (m) { in set_menu_term()
59 SMterm(m) = mt; in set_menu_term()
67 menu_term(MENU *m) in menu_term() argument
69 return (SMterm(m ? m : Dfl_Menu)); in menu_term()
[all …]
H A Dtopitem.c39 set_top_row(MENU *m, int top) in set_top_row() argument
43 if (m) { in set_top_row()
44 if (Indriver(m)) { in set_top_row()
47 if (!Items(m)) { in set_top_row()
50 if (top < 0 || top > Rows(m) - Height(m)) { in set_top_row()
53 if (top != Top(m)) { in set_top_row()
55 if (LinkNeeded(m)) { in set_top_row()
56 _link_items(m); in set_top_row()
59 current = IthItem(m, RowMajor(m) ? top * Cols(m) : top); in set_top_row()
60 Pindex(m) = 0; /* Clear the pattern buffer */ in set_top_row()
[all …]
H A Dconnect.c45 maxlengths(MENU *m) in maxlengths() argument
51 for (ip = Items(m); *ip; ip++) { in maxlengths()
59 MaxName(m) = maxn; in maxlengths()
60 MaxDesc(m) = maxd; in maxlengths()
64 _connect(MENU *m, ITEM **items) in _connect() argument
87 if (OneValue(m)) { in _connect()
92 Imenu(*ip) = m; in _connect()
95 Nitems(m) = i; in _connect()
96 Items(m) = items; in _connect()
99 maxlengths(m); in _connect()
[all …]
/titanic_41/usr/src/uts/common/rpc/
H A Dxdr_mblk.c82 xdrmblk_init(XDR *xdrs, mblk_t *m, enum xdr_op op, int sz) in xdrmblk_init() argument
86 xdrs->x_base = (caddr_t)m; in xdrmblk_init()
91 xdrs->x_handy = (int)(m->b_wptr - m->b_rptr); in xdrmblk_init()
93 xdrs->x_handy = (int)(m->b_datap->db_lim - m->b_datap->db_base); in xdrmblk_init()
105 mblk_t *m; in xdrmblk_getint32() local
108 m = (mblk_t *)xdrs->x_base; in xdrmblk_getint32()
109 if (m == NULL) in xdrmblk_getint32()
116 if (!IS_P2ALIGNED(m->b_rptr, sizeof (int32_t)) || in xdrmblk_getint32()
118 while (!pullupmsg(m, sizeof (int32_t))) { in xdrmblk_getint32()
123 if (xmsgsize(m) < sizeof (int32_t)) in xdrmblk_getint32()
[all …]
/titanic_41/usr/src/pkg/manifests/
H A DSUNWcs.man1m.inc17 file path=usr/share/man/man1m/6to4relay.1m
18 file path=usr/share/man/man1m/Intro.1m
19 file path=usr/share/man/man1m/acctadm.1m
20 file path=usr/share/man/man1m/add_drv.1m
21 file path=usr/share/man/man1m/addbadsec.1m
22 file path=usr/share/man/man1m/arp.1m
23 file path=usr/share/man/man1m/audit.1m
24 file path=usr/share/man/man1m/audit_warn.1m
25 file path=usr/share/man/man1m/auditconfig.1m
26 file path=usr/share/man/man1m/auditd.1m
[all …]
H A Dsystem-library-math.man3m.inc14 file path=usr/share/man/man3m/acos.3m
15 file path=usr/share/man/man3m/acosh.3m
16 file path=usr/share/man/man3m/asin.3m
17 file path=usr/share/man/man3m/asinh.3m
18 file path=usr/share/man/man3m/atan.3m
19 file path=usr/share/man/man3m/atan2.3m
20 file path=usr/share/man/man3m/atanh.3m
21 file path=usr/share/man/man3m/cabs.3m
22 file path=usr/share/man/man3m/cacos.3m
23 file path=usr/share/man/man3m/cacosh.3m
[all …]
/titanic_41/usr/src/cmd/ttymon/
H A Dstty.c86 static void delay(int m, char *s);
237 int m; in prmodes() local
240 m = stio.imode; in prmodes()
241 if (m & IUCLC) in prmodes()
245 m = stio.omode; in prmodes()
246 if (m & OLCUC) in prmodes()
250 if (m & TAB3) in prmodes()
252 m = stio.lmode; in prmodes()
253 if (m & XCASE) in prmodes()
257 if (m & STFLUSH) in prmodes()
[all …]
/titanic_41/usr/src/man/man7m/
H A DMakefile19 MANSECT= 7m
21 _MANFILES = bufmod.7m \
22 connld.7m \
23 ldterm.7m \
24 pckt.7m \
25 pfmod.7m \
26 pipemod.7m \
27 ptem.7m \
28 sppptun.7m \
29 timod.7m \
[all …]
/titanic_41/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_util.c88 mbuf_t *m; in smb_mbc_alloc() local
95 MGET(m, M_WAIT, MT_DATA); in smb_mbc_alloc()
96 m->m_len = 0; in smb_mbc_alloc()
97 mbc->chain = m; in smb_mbc_alloc()
99 MCLGET(m, M_WAIT); in smb_mbc_alloc()
126 struct mbuf *m = 0; in smb_mbuf_get() local
136 m = mhead; in smb_mbuf_get()
138 MGET(m->m_next, M_WAIT, MT_DATA); in smb_mbuf_get()
139 m = m->m_next; in smb_mbuf_get()
143 MCLGET(m, M_WAIT); in smb_mbuf_get()
[all …]
/titanic_41/usr/src/ucbcmd/stty/
H A Dstty.c185 int m; in prmodes() local
188 m = stio.imode; in prmodes()
189 if (m & IUCLC) in prmodes()
193 m = stio.omode; in prmodes()
194 if (m & OLCUC) in prmodes()
198 if (m & TAB3) in prmodes()
200 m = stio.lmode; in prmodes()
201 if (m & XCASE) in prmodes()
205 if (m & STFLUSH) in prmodes()
209 if (m & STWRAP) in prmodes()
[all …]
/titanic_41/usr/src/uts/common/io/comstar/port/pppt/
H A Dalua_ic_if.c53 #define FREE_IF_ALLOC(m) \ argument
55 if ((m)) kmem_free((m), sizeof (*(m))); \
229 static void stmf_ic_reg_port_msg_free(stmf_ic_reg_port_msg_t *m,
231 static void stmf_ic_dereg_port_msg_free(stmf_ic_dereg_port_msg_t *m,
233 static void stmf_ic_reg_dereg_lun_msg_free(stmf_ic_reg_dereg_lun_msg_t *m,
235 static void stmf_ic_scsi_cmd_msg_free(stmf_ic_scsi_cmd_msg_t *m,
237 static void stmf_ic_scsi_data_msg_free(stmf_ic_scsi_data_msg_t *m,
240 stmf_ic_scsi_data_xfer_done_msg_t *m,
242 static void stmf_ic_scsi_status_msg_free(stmf_ic_scsi_status_msg_t *m,
244 static void stmf_ic_r2t_msg_free(stmf_ic_r2t_msg_t *m,
[all …]
/titanic_41/usr/src/lib/libc/port/locale/
H A Dengine.c137 #define SP(t, s, c) print(m, t, s, c, stdout)
138 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
139 #define NOTE(str) { if (m->eflags&REG_TRACE) printf("=%s\n", (str)); }
159 struct match *m = &mv; in matcher() local
235 m->g = g; in matcher()
236 m->eflags = eflags; in matcher()
237 m->pmatch = NULL; in matcher()
238 m->lastpos = NULL; in matcher()
239 m->offp = string; in matcher()
240 m->beginp = start; in matcher()
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNS.c2130 mDNSlocal void SetNextQueryTime(mDNS *const m, const DNSQuestion *const q) in SetNextQueryTime() argument
2133 if (m->NextScheduledQuery - (q->LastQTime + q->ThisQInterval) > 0) in SetNextQueryTime()
2134 m->NextScheduledQuery = (q->LastQTime + q->ThisQInterval); in SetNextQueryTime()
2137 mDNSlocal CacheGroup *CacheGroupForName(const mDNS *const m, const mDNSu32 slot, const mDNSu32 name… in CacheGroupForName() argument
2140 for (cg = m->rrcache_hash[slot]; cg; cg=cg->next) in CacheGroupForName()
2146 mDNSlocal CacheGroup *CacheGroupForRecord(const mDNS *const m, const mDNSu32 slot, const ResourceRe… in CacheGroupForRecord() argument
2148 return(CacheGroupForName(m, slot, rr->namehash, rr->name)); in CacheGroupForRecord()
2151 mDNSlocal mDNSBool AddressIsLocalSubnet(mDNS *const m, const mDNSInterfaceID InterfaceID, const mDN… in AddressIsLocalSubnet() argument
2158 for (intf = m->HostInterfaces; intf; intf = intf->next) in AddressIsLocalSubnet()
2167 for (intf = m->HostInterfaces; intf; intf = intf->next) in AddressIsLocalSubnet()
[all …]
/titanic_41/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsubr_mchain.c247 mb_initm(struct mbchain *mbp, mblk_t *m) in mb_initm() argument
250 mbp->mb_top = mbp->mb_cur = m; in mb_initm()
290 mblk_t *m; in mb_detach() local
292 m = mbp->mb_top; in mb_detach()
294 return (m); in mb_detach()
331 mblk_t *m, *mn; in mb_reserve() local
334 m = mbp->mb_cur; in mb_reserve()
339 if (MBLKTAIL(m) < size) { in mb_reserve()
343 mbp->mb_cur = m->b_cont = mn; in mb_reserve()
344 m = mn; in mb_reserve()
[all …]
/titanic_41/usr/src/cmd/sendmail/src/
H A Dmilter.c122 else if (bitnset(SMF_TEMPFAIL, m->mf_flags)) \
124 else if (bitnset(SMF_TEMPDROP, m->mf_flags)) \
126 else if (bitnset(SMF_REJECT, m->mf_flags)) \
202 if (SM_FD_SETSIZE > 0 && m->mf_sock >= SM_FD_SETSIZE) \
206 (routine), m->mf_name, m->mf_sock, \
211 m->mf_name, (routine), m->mf_sock, \
213 milter_error(m, e); \
220 SM_FD_SET(m->mf_sock, &fds); \
223 ret = select(m->mf_sock + 1, \
234 (routine), m->mf_name, (function)); \
[all …]
/titanic_41/usr/src/cmd/sendmail/libsmutil/
H A Derr.c29 const char *m; local
32 m = msg; local
33 if (isascii(m[0]) && isdigit(m[0]) &&
34 isascii(m[1]) && isdigit(m[1]) &&
35 isascii(m[2]) && isdigit(m[2]) && m[3] == ' ')
36 m += 4;
38 (void) vfprintf(stderr, m, ap);
53 const char *m; local
56 m = msg; local
57 if (isascii(m[0]) && isdigit(m[0]) &&
[all …]

12345678910>>...64