Lines Matching +defs:val +defs:service
925 uint32_t val;
938 val = strtoul(value, NULL, 0);
943 val = pw->pw_uid;
945 val = UID_NOBODY;
949 export->ex_anon = val;
1130 uint32_t val;
1198 val = strtoul(value, NULL, 0);
1203 val = pw->pw_uid;
1205 val = UID_NOBODY;
1209 sp->s_rootid = val;
1900 * svc:/network/nfs/server service first if it isn't running.
1918 * and NFS server service isn't running
2672 char *service;
2675 service = LOCKD;
2678 service = STATD;
2681 service = NFSD;
2684 service = NFS_CLIENT_SVC;
2687 service = NFS4CBD;
2690 service = NFSMAPID;
2693 service = RQUOTAD;
2696 service = NFSLOGD;
2699 service = REPARSED;
2702 service = NFSD;
2704 return (service);
2865 * service_in_state(service, chkstate)
2867 * Want to know if the specified service is in the desired state
2872 service_in_state(char *service, const char *chkstate)
2877 state = smf_get_state(service);
2891 * multiple daemons. Should only restart a service if it is currently
2900 char *service;
2905 service = LOCKD;
2908 service = STATD;
2911 service = NFSD;
2914 service = MOUNTD;
2917 service = NFS4CBD;
2920 service = NFSMAPID;
2923 service = RQUOTAD;
2926 service = NFSLOGD;
2929 service = REPARSED;
2932 service = NFS_CLIENT_SVC;
2939 * Only attempt to restart the service if it is
2944 if (service_in_state(service, SCF_STATE_STRING_ONLINE)) {
2945 ret = smf_restart_instance(service);
2949 * the service into maintenance if there wasn't an
2956 service, scf_strerror(scf_error()));
2963 if (service_in_state(service,
2968 service);
2988 int val;
3006 val = strtoul(pval, NULL, 0);
3009 ret = value <= val ? B_TRUE : B_FALSE;
3012 ret = value >= val ? B_TRUE : B_FALSE;
3049 int val;
3050 val = strtoul(value, NULL, 0);
3051 if (val < proto_options[index].minval ||
3052 val > proto_options[index].maxval)
3060 if (!nfs_minmax_check(index, val)) {