Home
last modified time | relevance | path

Searched refs:flp (Results 1 – 23 of 23) sorted by relevance

/titanic_44/usr/src/cmd/sgs/libld/common/
H A Dsupport.c145 Func_list *flp; in ld_sup_start() local
148 for (ALIST_TRAVERSE(support[LDS_START].sup_funcs, idx, flp)) { in ld_sup_start()
149 DBG_CALL(Dbg_support_action(ofl->ofl_lml, flp->fl_obj, in ld_sup_start()
151 (*flp->fl_fptr)(ofl->ofl_name, etype, caller); in ld_sup_start()
158 Func_list *flp; in ld_sup_atexit() local
161 for (ALIST_TRAVERSE(support[LDS_ATEXIT].sup_funcs, idx, flp)) { in ld_sup_atexit()
162 DBG_CALL(Dbg_support_action(ofl->ofl_lml, flp->fl_obj, in ld_sup_atexit()
164 (*flp->fl_fptr)(ecode); in ld_sup_atexit()
172 Func_list *flp; in ld_sup_open() local
175 for (ALIST_TRAVERSE(support[LDS_OPEN].sup_funcs, idx, flp)) { in ld_sup_open()
[all …]
/titanic_44/usr/src/cmd/newform/
H A Dnewform.c118 *flp = optl; /* Pointer to next open slot */ variable
184 flp->option = 'a'; in options()
185 flp->param = inputn(scan); in options()
186 if (flp->param <= NCOLS) in options()
187 flp++; in options()
197 flp->option = c; in options()
198 flp->param = inputn(scan); in options()
199 flp++; in options()
202 flp->option = 'p'; in options()
203 flp->param = inputn(scan); in options()
[all …]
/titanic_44/usr/src/lib/libldap5/sources/ldap/common/
H A Dfree.c45 LDAPFiltList *flp, *nextflp; in ldap_getfilter_free() local
52 for ( flp = lfdp->lfd_filtlist; flp != NULL; flp = nextflp ) { in ldap_getfilter_free()
53 for ( fip = flp->lfl_ilist; fip != NULL; fip = nextfip ) { in ldap_getfilter_free()
59 nextflp = flp->lfl_next; in ldap_getfilter_free()
60 NSLDAPI_FREE( flp->lfl_pattern ); in ldap_getfilter_free()
61 NSLDAPI_FREE( flp->lfl_delims ); in ldap_getfilter_free()
62 NSLDAPI_FREE( flp->lfl_tag ); in ldap_getfilter_free()
63 NSLDAPI_FREE( flp ); in ldap_getfilter_free()
H A Dgetfilter.c106 LDAPFiltList *flp, *nextflp; in ldap_init_getfilter_buf() local
118 flp = nextflp = NULL; in ldap_init_getfilter_buf()
155 if ( flp == NULL ) { /* first one */ in ldap_init_getfilter_buf()
158 flp->lfl_next = nextflp; in ldap_init_getfilter_buf()
160 flp = nextflp; in ldap_init_getfilter_buf()
260 LDAPFiltList *flp; in ldap_getfirstfilter() local
274 for ( flp = lfdp->lfd_filtlist; flp != NULL; flp = flp->lfl_next ) { in ldap_getfirstfilter()
275 if ( re_comp( tagpat ) == NULL && re_exec( flp->lfl_tag ) == 1 in ldap_getfirstfilter()
276 && re_comp( flp->lfl_pattern ) == NULL in ldap_getfirstfilter()
278 lfdp->lfd_curfip = flp->lfl_ilist; in ldap_getfirstfilter()
[all …]
/titanic_44/usr/src/uts/common/fs/ufs/
H A Dlufs.c506 struct fiolog *flp) in lufs_initialize() argument
525 ud->od_requestsize = flp->nbytes_actual; in lufs_initialize()
661 lufs_alloc(struct ufsvfs *ufsvfsp, struct fiolog *flp, size_t minb, cred_t *cr) in lufs_alloc() argument
672 size_t nb = flp->nbytes_actual; in lufs_alloc()
782 tb, flp); in lufs_alloc()
824 flp->nbytes_actual = tb; in lufs_alloc()
848 lufs_disable(vnode_t *vp, struct fiolog *flp) in lufs_disable() argument
857 flp->error = FIOLOG_ENONE; in lufs_disable()
869 flp->error = FIOLOG_EROFS; in lufs_disable()
881 flp->error = FIOLOG_EULOCK; in lufs_disable()
[all …]
/titanic_44/usr/src/uts/common/syscall/
H A Dfcntl.c717 flock_check(vnode_t *vp, flock64_t *flp, offset_t offset, offset_t max) in flock_check() argument
726 switch (flp->l_whence) { in flock_check()
728 start = (u_offset_t)flp->l_start; in flock_check()
733 if (flp->l_start > (max - offset)) in flock_check()
735 start = (u_offset_t)(flp->l_start + offset); in flock_check()
743 if (flp->l_start > (max - (offset_t)vattr.va_size)) in flock_check()
745 start = (u_offset_t)(flp->l_start + (offset_t)vattr.va_size); in flock_check()
756 if (flp->l_len == 0) in flock_check()
758 else if ((offset_t)flp->l_len > 0) { in flock_check()
759 if (flp->l_len > (max - start + 1)) in flock_check()
[all …]
/titanic_44/usr/src/uts/common/klm/
H A Dnlm_client.c85 #define NLM_FLOCK_IS_SAFE(flp) \ argument
86 ((flp)->l_start == 0 && (flp)->l_len == 0)
662 struct flock64 *flp, int32_t orig_state) in nlm_reclaim_lock() argument
681 return (nlm_call_lock(vp, flp, hostp, &lm_fh, in nlm_reclaim_lock()
732 nlm_local_cancelk(vnode_t *vp, struct flock64 *flp) in nlm_local_cancelk() argument
734 flp->l_type = F_UNLCK; in nlm_local_cancelk()
735 (void) nlm_local_setlk(vp, flp, FREAD | FWRITE); in nlm_local_cancelk()
736 nlm_send_siglost(flp->l_pid); in nlm_local_cancelk()
748 nlm_call_lock(vnode_t *vp, struct flock64 *flp, in nlm_call_lock() argument
762 nlm_init_lock(&args.alock, flp, fhp, &oh); in nlm_call_lock()
[all …]
H A Dnlm_service.c83 struct flock64 *flp; member
683 struct flock64 *flp, in nlm_block() argument
701 error = nlm_slreq_register(host, nvp, flp); in nlm_block()
715 cb_data.flp = flp; in nlm_block()
719 error = nlm_vop_frlock(nvp->nv_vp, F_SETLKW, flp, in nlm_block()
728 (void) nlm_slreq_unregister(host, nvp, flp); in nlm_block()
758 cb_data->nvp, cb_data->flp); in nlm_block_callback()
H A Dnlm_impl.c2022 struct flock64 *flp) in nlm_slreq_register() argument
2028 slr = nlm_slreq_find_locked(hostp, nvp, flp); in nlm_slreq_register()
2034 bcopy(flp, &new_slr->nsr_fl, sizeof (*flp)); in nlm_slreq_register()
2037 slr = nlm_slreq_find_locked(hostp, nvp, flp); in nlm_slreq_register()
2063 struct flock64 *flp) in nlm_slreq_unregister() argument
2068 slr = nlm_slreq_find_locked(hostp, nvp, flp); in nlm_slreq_unregister()
2086 struct flock64 *flp) in nlm_slreq_find_locked() argument
2092 if (slr->nsr_fl.l_start == flp->l_start && in nlm_slreq_find_locked()
2093 slr->nsr_fl.l_len == flp->l_len && in nlm_slreq_find_locked()
2094 slr->nsr_fl.l_pid == flp->l_pid && in nlm_slreq_find_locked()
[all …]
/titanic_44/usr/src/cmd/fs.d/ufs/mount/
H A Dmount.c275 reportlogerror(int ret, char *mp, char *special, char *cmd, fiolog_t *flp) in reportlogerror() argument
278 if ((ret != -1) && (flp->error == FIOLOG_ENONE)) in reportlogerror()
282 if (ret == -1 || flp->error != FIOLOG_ENONE) in reportlogerror()
291 switch (flp->error) { in reportlogerror()
293 if (flp->nbytes_requested && in reportlogerror()
294 (flp->nbytes_requested != flp->nbytes_actual)) { in reportlogerror()
297 flp->nbytes_requested, in reportlogerror()
298 flp->nbytes_actual); in reportlogerror()
339 " %d.\n"), flp->error); in reportlogerror()
/titanic_44/usr/src/lib/libc/port/gen/
H A Dmalloc.c909 char **flp; in cleanfree() local
911 flp = (char **)&(flist[freeidx]); in cleanfree()
913 if (flp == (char **)&(flist[0])) in cleanfree()
914 flp = (char **)&(flist[FREESIZE]); in cleanfree()
915 if (*--flp == NULL) in cleanfree()
917 if (*flp != ptr) in cleanfree()
918 realfree(*flp); in cleanfree()
919 *flp = NULL; in cleanfree()
/titanic_44/usr/src/uts/common/fs/fifofs/
H A Dfifosubr.c174 fifolock_t *flp = &fdp->fifo_lock; in fnode_constructor() local
178 mutex_init(&flp->flk_lock, NULL, MUTEX_DEFAULT, NULL); in fnode_constructor()
179 cv_init(&flp->flk_wait_cv, NULL, CV_DEFAULT, NULL); in fnode_constructor()
180 flp->flk_ocsync = 0; in fnode_constructor()
194 fnp->fn_lock = flp; in fnode_constructor()
227 fifolock_t *flp = &fdp->fifo_lock; in fnode_destructor() local
231 mutex_destroy(&flp->flk_lock); in fnode_destructor()
232 cv_destroy(&flp->flk_wait_cv); in fnode_destructor()
233 ASSERT(flp->flk_ocsync == 0); in fnode_destructor()
245 ASSERT(fnp->fn_lock == flp); in fnode_destructor()
/titanic_44/usr/src/lib/fm/topo/libtopo/common/
H A Dhc.c2035 struct fac_lookup *flp = (struct fac_lookup *)pdata; in hc_fac_get() local
2036 topo_walk_cb_t cb = (topo_walk_cb_t)flp->fl_callback; in hc_fac_get()
2044 if (topo_node_facility(mod->tm_hdl, node, flp->fl_fac_type, in hc_fac_get()
2045 flp->fl_fac_subtype, &faclist, &err) != 0) { in hc_fac_get()
2059 (void *)flp->fl_callback_args)) != 0) { in hc_fac_get()
2081 struct fac_lookup *flp; in hc_fmri_facility() local
2086 if ((flp = topo_mod_alloc(mod, sizeof (struct fac_lookup))) == NULL) in hc_fmri_facility()
2093 err = nvlist_lookup_nvlist(in, TOPO_PROP_RESOURCE, &flp->fl_rsrc); in hc_fmri_facility()
2095 (char **)&flp->fl_fac_type); in hc_fmri_facility()
2096 err |= nvlist_lookup_uint32(in, "type", &flp->fl_fac_subtype); in hc_fmri_facility()
[all …]
/titanic_44/usr/src/tools/scripts/
H A DMakefile37 flg.flp \
86 flg.flp.1 \
H A Dxref.mk67 FLGFLP = $(BUILD_TOOLS)/onbld/bin/flg.flp
/titanic_44/usr/src/cmd/fm/dicts/
H A DSCF.dict57 fault.chassis.SPARC-Enterprise.asic.flp.fe=41
58 fault.chassis.SPARC-Enterprise.asic.flp.ce=42
60 fault.chassis.SPARC-Enterprise.if.fe-ioc-flp=51
71 fault.chassis.SPARC-Enterprise.if.se-ioc-flp=62
79 fault.chassis.SPARC-Enterprise.if.ce-ioc-flp=70
119 fault.chassis.SPARC-Enterprise.asic.flp.power.fail=137
H A DSCF.po446 # keys: fault.chassis.SPARC-Enterprise.asic.flp.fe
462 # keys: fault.chassis.SPARC-Enterprise.asic.flp.ce
494 # keys: fault.chassis.SPARC-Enterprise.if.fe-ioc-flp
670 # keys: fault.chassis.SPARC-Enterprise.if.se-ioc-flp
798 # keys: fault.chassis.SPARC-Enterprise.if.ce-ioc-flp
1438 # keys: fault.chassis.SPARC-Enterprise.asic.flp.power.fail
/titanic_44/usr/src/lib/libipmi/common/
H A Dipmi_sdr.c231 ipmi_sdr_fru_locator_t *flp = in ipmi_sdr_refresh() local
234 namelen = flp->is_fl_idlen; in ipmi_sdr_refresh()
235 name = flp->is_fl_idstring; in ipmi_sdr_refresh()
236 type = flp->is_fl_idtype; in ipmi_sdr_refresh()
H A Dipmi_entity.c163 ipmi_sdr_fru_locator_t *flp = in ipmi_entity_sdr_parse() local
165 *id = flp->is_fl_entity; in ipmi_entity_sdr_parse()
166 *instance = flp->is_fl_instance; in ipmi_entity_sdr_parse()
/titanic_44/usr/src/uts/common/os/
H A Dflock.c3790 create_flock(lock_descriptor_t *lp, flock64_t *flp) in create_flock() argument
3795 flp->l_type = lp->l_type; in create_flock()
3796 flp->l_whence = 0; in create_flock()
3797 flp->l_start = lp->l_start; in create_flock()
3798 flp->l_len = (lp->l_end == MAX_U_OFFSET_T) ? 0 : in create_flock()
3800 flp->l_sysid = lp->l_flock.l_sysid; in create_flock()
3801 flp->l_pid = lp->l_flock.l_pid; in create_flock()
3811 flk_convert_lock_data(vnode_t *vp, flock64_t *flp, in flk_convert_lock_data() argument
3820 switch (flp->l_whence) { in flk_convert_lock_data()
3822 *start = (u_offset_t)flp->l_start; in flk_convert_lock_data()
[all …]
/titanic_44/usr/src/cmd/mailx/
H A Dcmd3.c1124 register int flp = (value("flipr") != NOSTR); in reply2sender() local
1126 return((rep && !flp)|| (!rep && flp)); in reply2sender()
/titanic_44/usr/src/pkg/manifests/
H A Ddeveloper-build-onbld.mf104 file path=opt/onbld/bin/flg.flp mode=0555
203 file path=opt/onbld/man/man1/flg.flp.1
/titanic_44/
H A D.gitignore8974 usr/src/tools/scripts/flg.flp