Searched defs:stype (Results 1 - 25 of 29) sorted by relevance

12

/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_reparse.c152 char *stype, *sdata; local
162 stype = nvpair_name(nvp);
164 if ((stype != NULL) && (strcasecmp(stype, svctype) == 0)) {
/illumos-gate/usr/src/cmd/filesync/
H A Drename.c92 int stype, dtype, btype, side; local
101 stype = np->f_info[OPT_SRC].f_type;
105 if (btype == 0 && stype != dtype && (!stype || !dtype)) {
106 side = stype ? OPT_SRC : OPT_DST;
/illumos-gate/usr/src/uts/common/syscall/
H A Dlseek.c77 lseek32_common(file_t *fp, int stype, offset_t off, offset_t max, argument
92 switch (stype) {
206 lseek32(int32_t fdes, off32_t off, int32_t stype) argument
222 * When VREG is not set we do the check for stype != SEEK_SET
227 if (fp->f_vnode->v_type == VREG || stype != SEEK_SET)
228 error = lseek32_common(fp, stype, (offset_t)off,
230 else if (stype == SEEK_SET)
231 error = lseek32_common(fp, stype, (offset_t)(uint_t)off,
244 llseek32(int32_t fdes, uint32_t off1, uint32_t off2, int stype) argument
258 error = lseek32_common(fp, stype, of
274 lseek64(int fdes, off_t off, int stype) argument
[all...]
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/x86pi/
H A Dx86pi_subr.c138 x86pi_smb_strcnt(topo_mod_t *mod, smbs_cnt_t *stype) argument
147 stype->count = 0;
155 if (sp->smbst_hdr->smbh_type == stype->type) {
156 stype->ids[cnt].node = NULL;
157 stype->ids[cnt].id = sp->smbst_hdr->smbh_hdl;
162 stype->count = cnt;
/illumos-gate/usr/src/lib/krb5/kadm5/clnt/
H A Dclient_principal.c617 ktype, krb5_int32 stype, krb5_int32
615 kadm5_decrypt_key(void *server_handle, kadm5_principal_ent_t entry, krb5_int32 ktype, krb5_int32 stype, krb5_int32 kvno, krb5_keyblock *keyblock, krb5_keysalt *keysalt, int *kvnop) argument
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPHeaderV1.java552 static String checkServiceType(String stype) argument
557 if (!stype.endsWith(":")) {
562 new Object[] {stype});
566 String type = stype.substring(0, stype.length()-1);
/illumos-gate/usr/src/lib/libreparse/common/
H A Dfs_reparse_lib.c98 char *buf, *stype, *val; local
112 if (!(stype = nvpair_name(curr))) {
117 (strlcat(buf, stype, buflen) >= buflen) ||
/illumos-gate/usr/src/cmd/latencytop/common/
H A Ddwrapper.c254 int stype; local
281 stype = rec_get_value(
293 lt_stat_update_sobj(pid, tid, stype, wchan, stat_type, agg_value);
H A Dstat.c1023 lt_stat_update_sobj(pid_t pid, id_t tid, int stype, argument
1038 id.lt_soi_type = stype;
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_isoch.c462 uint_t fmt, dbs, fn, f5060, stype; /* CIP fields */ local
484 stype = (axp->ax_ciph[5] >> 2) & 0x1F;
496 if ((fmt == 0) && (dbs == 0x78) && (fn == 0) && (stype == 0)) {
/illumos-gate/usr/src/lib/krb5/kadm5/
H A Dstr_conv.c300 krb5_int32 stype; local
346 stype = -1;
353 (!sp || !(kret = krb5_string_to_salttype(sp, &stype))) &&
355 !krb5_keysalt_is_present(*ksaltp, *nksaltp, ktype, stype))) {
375 (*ksaltp)[(*nksaltp)].ks_salttype = stype;
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dgen_struct_layout.c730 ctf_id_t stype; local
736 if ((stype = ctf_lookup_by_name(ctf, rtname)) == CTF_ERR)
738 if ((stype = ctf_type_resolve(ctf, stype)) == CTF_ERR)
741 if ((sz = (int)ctf_type_size(ctf, stype)) < 0) {
807 int stype, typekind; local
810 if ((stype = ctf_lookup_by_name(ctf, tname)) == CTF_ERR)
812 if ((stype = ctf_type_resolve(ctf, stype)) == CTF_ERR)
815 typekind = ctf_type_kind(ctf, stype);
853 ctf_id_t stype; local
[all...]
/illumos-gate/usr/src/cmd/mailx/
H A Doptim.c833 register int dtype, stype; local
836 stype = nettype(src);
839 if (stype == 0 || dtype == 0) {
843 if ((stype & dtype) == 0)
846 while ((np->no_stat & stype & dtype) == 0)
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_smb.c99 smb_share_typename(uint32_t stype) argument
103 switch (stype) {
130 int stype; local
134 stype = STYPE_DISKTREE;
137 stype = STYPE_DEVICE;
140 stype = STYPE_IPC;
143 stype = STYPE_PRINTQ;
146 stype = STYPE_UNKNOWN;
149 return (stype);
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_pathname.c660 * Parse path: pname\\fname:sname:stype
714 * find sname and stype in fname.
999 char *fname, *sname, *stype; local
1013 stype = strchr(stream + 1, ':');
1014 if (stype == NULL)
1017 (void) smb_strupr(stype);
H A Dsmb_tree.c212 * Lookup the share name dispatch the appropriate stype handler.
882 uint32_t stype = si->shr_type; local
898 if (STYPE_ISDSK(stype) || STYPE_ISPRN(stype)) {
934 tree->t_res_type = stype;
945 if (STYPE_ISDSK(stype) || STYPE_ISPRN(stype)) {
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_hdrs_ui.c42 sip_get_val_from_hdr(sip_hdr_value_t *val, int val_type, boolean_t stype, argument
63 if (stype == B_TRUE) {
72 if (stype == B_TRUE) {
93 boolean_t stype, boolean_t empty_val, int *error)
119 return (sip_get_val_from_hdr(value, val_type, stype, error));
92 sip_get_val_from_msg(sip_msg_t msg, char *hdr_name, int val_type, boolean_t stype, boolean_t empty_val, int *error) argument
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dctx.c826 smb_ctx_setshare(struct smb_ctx *ctx, const char *share, int stype) argument
838 ctx->ct_shtype_req = stype;
/illumos-gate/usr/src/lib/krb5/kadm5/srv/
H A Dsvr_principal.c2140 * stype (r) salt type to search for, or -1 to ignore
2142 * only if it also matches ktype and stype
2154 * If ktype or stype is -1, it is ignored for the search. If kvno is
2155 * -1, ktype and stype are ignored and the key with the max kvno is
2157 * and only if it matches the ktype and stype; otherwise, ENOENT is
2162 ktype, krb5_int32 stype, krb5_int32
2180 stype, kvno, &key_data)))
2160 kadm5_decrypt_key(void *server_handle, kadm5_principal_ent_t entry, krb5_int32 ktype, krb5_int32 stype, krb5_int32 kvno, krb5_keyblock *keyblock, krb5_keysalt *keysalt, int *kvnop) argument
/illumos-gate/usr/src/uts/intel/os/
H A Dfmsmb.c197 smb_strcnt(smbios_hdl_t *shp, smbs_cnt_t *stype) argument
212 if (sp->smbst_hdr->smbh_type == stype->type) {
213 stype->ids[cnt]->id = sp->smbst_hdr->smbh_hdl;
214 stype->ids[cnt]->inst = cnt;
215 stype->ids[cnt]->visited = 0;
216 stype->ids[cnt]->cont_by_id = -1;
217 if (stype->type == SMB_TYPE_BASEBOARD) {
219 stype->ids[cnt]->id, &bb);
249 stype->ids[cnt]->inst = inst;
255 stype
264 smb_bb_contains(smbios_hdl_t *shp, smbs_cnt_t *stype) argument
[all...]
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_backup_reader.c1209 zprop_source_t stype; local
1224 &stype, sbuf, sizeof (sbuf), B_TRUE) != 0) {
1233 switch (stype) {
/illumos-gate/usr/src/uts/i86pc/os/
H A Dtrap.c2121 char *sym, *stype; local
2154 stype = "sysc"; /* syscall */
2157 stype = "lcal"; /* lcall */
2160 stype = "syse"; /* sysenter */
/illumos-gate/usr/src/lib/krb5/kdb/
H A Dkdb5.c1474 krb5_int32 stype,
1478 return krb5_dbe_search_enctype(kcontext, dbentp, &start, ktype, stype,
1487 krb5_int32 stype,
1510 stype,
1471 krb5_dbe_find_enctype(krb5_context kcontext, krb5_db_entry * dbentp, krb5_int32 ktype, krb5_int32 stype, krb5_int32 kvno, krb5_key_data ** kdatap) argument
1483 krb5_dbe_search_enctype(krb5_context kcontext, krb5_db_entry * dbentp, krb5_int32 * start, krb5_int32 ktype, krb5_int32 stype, krb5_int32 kvno, krb5_key_data ** kdatap) argument
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dldc_impl.h210 * 0 | seqid | env | ctrl | stype | type |
218 * 0 | seqid | env | ctrl | stype | type |
254 #define stype _pkt._tpkt._stype macro
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_as.c3225 int stype, sflags; local
3272 stype = SEGOP_GETTYPE(seg, raddr);
3273 sflags = stype & (MAP_TEXT | MAP_INITDATA);
3274 stype &= (MAP_SHARED | MAP_PRIVATE);
3276 rtype != stype)) {
3288 rtype = stype;
3293 rtype = stype;

Completed in 138 milliseconds

12