/titanic_51/usr/src/lib/gss_mechs/mech_krb5/profile/ |
H A D | prof_solaris.c | 36 __profile_iter_name_value(profile_t profile, char *section, char *key, in __profile_iter_name_value() argument 52 code = profile_iterator_create(profile, hierarchy, in __profile_iter_name_value() 96 __profile_get_domain_realm(profile_t profile, char *realm, char ***domains) in __profile_get_domain_realm() argument 98 if (profile == NULL || realm == NULL || domains == NULL) in __profile_get_domain_realm() 101 return (__profile_iter_name_value(profile, "domain_realm", realm, in __profile_get_domain_realm() 106 __profile_set_appdefaults(profile_t profile) in __profile_set_appdefaults() argument 111 if (profile == NULL) in __profile_set_appdefaults() 123 (void) profile_clear_relation(profile, hierarchy); in __profile_set_appdefaults() 125 code = profile_add_relation(profile, hierarchy, "true"); in __profile_set_appdefaults() 131 (void) profile_clear_relation(profile, hierarch in __profile_set_appdefaults() 139 __profile_set_logging(profile_t profile) __profile_set_logging() argument 192 __profile_set_libdefaults(profile_t profile,char * realm) __profile_set_libdefaults() argument 215 __profile_set_kdc(profile_t profile,char * realm,char * kdc,boolean_t overwrite) __profile_set_kdc() argument 253 __profile_release(profile_t profile) __profile_release() argument 280 __profile_abandon(profile_t profile) __profile_abandon() argument 294 __profile_add_domain_mapping(profile_t profile,char * domain,char * realm) __profile_add_domain_mapping() argument 326 __profile_remove_domain_mapping(profile_t profile,char * realm) __profile_remove_domain_mapping() argument 369 __profile_get_realm_entry(profile_t profile,char * realm,char * name,char *** ret_value) __profile_get_realm_entry() argument 409 __profile_add_realm_entry(profile_t profile,char * realm,char * name,char ** values) __profile_add_realm_entry() argument 448 __profile_get_default_realm(profile_t profile,char ** realm) __profile_get_default_realm() argument 477 __profile_get_realms(profile_t profile,char *** realms) __profile_get_realms() argument 505 __profile_add_realm(profile_t profile,char * realm,char * master,char ** kdcs,boolean_t set_change,boolean_t default_realm) __profile_add_realm() argument 578 __profile_remove_xrealm_mapping(profile_t profile,char * realm) __profile_remove_xrealm_mapping() argument 673 __profile_remove_realm(profile_t profile,char * realm) __profile_remove_realm() argument 737 __profile_add_xrealm_mapping(profile_t profile,char * source,char * target,char * inter) __profile_add_xrealm_mapping() argument 797 __profile_validate(profile_t profile,int * val_err,char ** val) __profile_validate() argument 927 __profile_init(char * filename,profile_t * profile) __profile_init() argument [all...] |
H A D | prof_init.c | 33 profile_t profile; in profile_init() local 37 profile = malloc(sizeof(struct _profile_t)); in profile_init() 38 if (!profile) in profile_init() 40 memset(profile, 0, sizeof(struct _profile_t)); in profile_init() 41 profile->magic = PROF_MAGIC_PROFILE; in profile_init() 43 /* if the filenames list is not specified return an empty profile */ in profile_init() 52 profile_release(profile); in profile_init() 58 profile->first_file = new_file; in profile_init() 66 profile_release(profile); in profile_init() 71 *ret_profile = profile; in profile_init() 162 profile_is_writable(profile_t profile,int * writable) profile_is_writable() argument 177 profile_is_modified(profile_t profile,int * modified) profile_is_modified() argument 192 profile_flush(profile_t profile) profile_flush() argument 204 profile_flush_to_file(profile_t profile,const_profile_filespec_t outfile) profile_flush_to_file() argument 217 profile_flush_to_buffer(profile_t profile,char ** buf) profile_flush_to_buffer() argument 223 profile_free_buffer(profile_t profile,char * buf) profile_free_buffer() argument 229 profile_abandon(profile_t profile) profile_abandon() argument 245 profile_release(profile_t profile) profile_release() argument 264 profile_ser_size(const char * unused,profile_t profile,size_t * sizep) profile_ser_size() argument 289 profile_ser_externalize(const char * unused,profile_t profile,unsigned char ** bufpp,size_t * remainp) profile_ser_externalize() argument 416 profile_get_options_boolean(profile,section,options) profile_get_options_boolean() argument 462 profile_get_options_string(profile,section,options) profile_get_options_string() argument [all...] |
H A D | prof_set.c | 4 * inserting, updating and deleting items from the profile. 7 * profile. It's not clear how to handle multiple files, actually. 24 static errcode_t rw_setup(profile_t profile) in rw_setup() argument 29 if (!profile) in rw_setup() 32 if (profile->magic != PROF_MAGIC_PROFILE) in rw_setup() 35 file = profile->first_file; in rw_setup() 84 profile_update_relation(profile_t profile, const char **names, in profile_update_relation() argument 92 retval = rw_setup(profile); in profile_update_relation() 102 retval = k5_mutex_lock(&profile->first_file->data->lock); in profile_update_relation() 105 section = profile in profile_update_relation() 137 profile_clear_relation(profile_t profile,const char ** names) profile_clear_relation() argument 182 profile_rename_section(profile_t profile,const char ** names,const char * new_name) profile_rename_section() argument 235 profile_add_relation(profile_t profile,const char ** names,const char * new_value) profile_add_relation() argument [all...] |
H A D | prof_get.c | 3 * querying items from the profile. 18 * profile functions can call upon these basic routines: 127 profile_get_values(profile_t profile, const char *const *names, in profile_get_values() argument 135 if ((retval = profile_node_iterator_create(profile, names, in profile_get_values() 167 errcode_t profile_get_value(profile_t profile, const char **names, in profile_get_value() argument 174 if ((retval = profile_node_iterator_create(profile, names, in profile_get_value() 193 profile_get_string(profile_t profile, const char *name, const char *subname, in profile_get_string() argument 201 if (profile) { in profile_get_string() 206 retval = profile_get_value(profile, names, &value); in profile_get_string() 225 profile_get_integer(profile_t profile, cons argument 306 profile_get_boolean(profile_t profile,const char * name,const char * subname,const char * subsubname,int def_val,int * ret_boolean) profile_get_boolean() argument 337 profile_get_subsection_names(profile_t profile,const char ** names,char *** ret_names) profile_get_subsection_names() argument 373 profile_get_relation_names(profile_t profile,const char ** names,char *** ret_names) profile_get_relation_names() argument 405 profile_iterator_create(profile_t profile,const char * const * names,int flags,void ** ret_iter) profile_iterator_create() argument [all...] |
H A D | prof_int.h | 24 #include "profile.h" 29 * This is the structure which stores the profile information for a 82 * The profile flags 123 * Used by the profile iterator in prof_get.c 206 (profile_t profile, const char *const *names, 234 (prf_data_t profile); 248 (prf_file_t profile); 251 (prf_file_t profile); 259 /* prof_init.c -- included from profile.h */ 272 (profile_t profile, cons [all...] |
/titanic_51/usr/src/lib/gss_mechs/mech_krb5/include/ |
H A D | profile.h | 6 * profile.h 31 * Used by the profile iterator in prof_get.c 53 (profile_t profile); 55 (profile_t profile, const_profile_filespec_t outfile); 57 (profile_t profile, char **bufp); 59 (profile_t profile, char *buf); 62 (profile_t profile, int *writable); 64 (profile_t profile, int *modified); 67 (profile_t profile); 70 (profile_t profile); [all...] |
/titanic_51/usr/src/cmd/nsadmin/ |
H A D | Makefile | 26 PROG= profile .login ksh.kshrc system 27 PROGSKEL= local.login local.profile local.cshrc .profile 28 PROGROOT= .profile .bashrc 38 CLOBBERFILES = profile .bashrc .profile .login 44 profile: etc-profile.sh target 45 $(RM) profile 46 $(CP) etc-profile [all...] |
/titanic_51/usr/src/cmd/dtrace/test/tst/common/buffering/ |
H A D | tst.alignring.d | 42 profile:::profile-1009hz 47 profile:::profile-1237hz 61 profile:::profile-1789hz 71 profile-1543hz 74 profile-1361hz
|
/titanic_51/usr/src/cmd/dtrace/test/tst/common/dtraceUtil/ |
H A D | man.ListProbesWithProviders | 39 * /usr/sbin/dtrace -lP profile 40 * RESULT: List of only profile probes. 47 * /usr/sbin/dtrace -lP profile::: 51 * /usr/sbin/dtrace -lP profile:::profile-97 55 * /usr/sbin/dtrace -lP profile -lP syscall 56 * RESULT: matching list of both profile and syscall probes. 59 * /usr/sbin/dtrace -lP profile -lP foofile 60 * RESULT: List of only profile probes. 63 * /usr/sbin/dtrace -lP foofile -lP profile [all...] |
H A D | man.TraceProvider | 39 * /usr/sbin/dtrace -P profile 40 * RESULT: Trace of all profile probes. 47 * /usr/sbin/dtrace -P profile::: 51 * /usr/sbin/dtrace -P profile:::profile-97 55 * /usr/sbin/dtrace -P profile -P syscall 56 * RESULT: matching traces of both profile and syscall probes. 59 * /usr/sbin/dtrace -P profile -P foofile 60 * RESULT: Count of profile probes that matched and invalid 68 * /usr/sbin/dtrace -P profile'{print [all...] |
H A D | tst.InvalidTraceFunc6.d.ksh | 46 $dtrace -f profile:::profile-97
|
/titanic_51/usr/src/contrib/ast/src/cmd/ksh93/ |
H A D | ksh-regress.tst | 4084 ksh:REGRESS:etc:sh_open:/etc/profile => ./profile 4085 ksh:REGRESS:source:sh_source:/etc/profile:ENOENT 4086 ksh:REGRESS:source:sh_source:./.profile:ENOENT 4087 ksh:REGRESS:source:sh_source:.profile:ENOENT' 4095 ksh:REGRESS:etc:sh_open:/etc/profile => ./profile 4096 ksh:REGRESS:source:sh_source:/etc/profile:ENOENT' 4107 ksh:REGRESS:etc:sh_open:/etc/profile => ./profile [all...] |
/titanic_51/usr/src/uts/common/gssapi/mechs/krb5/krb5/os/ |
H A D | init_os_ctx.c | 112 * This will find a profile in the registry. *pbuffer != 0 if we 335 /* Set the profile paths in the context. If secure is set to TRUE 357 &ctx->profile); in os_init_paths() 360 /* if none of the filenames can be opened use an empty profile */ in os_init_paths() 362 retval = profile_init(NULL, &ctx->profile); in os_init_paths() 373 ctx->profile = 0; in os_init_paths() 415 * If there's an error in the profile, return an error. Just in krb5_os_init_context() 438 krb5_get_profile (krb5_context ctx, profile_t *profile) in krb5_get_profile() argument 440 return profile_copy (ctx->profile, profile); in krb5_get_profile() 451 profile_t profile; krb5_set_config_files() local [all...] |
/titanic_51/usr/src/cmd/abi/appcert/scripts/ |
H A D | symprof.pl | 138 # Output will usually be placed down in $dir, e.g. "$dir/profile.static" 184 my $outfile = "$output_dir/profile.static"; 226 # static profile for 64 bit binaries, although the 274 # Also store the dtneededs from the static profile output. 302 # Top level subroutine for doing a dynamic profile of an object. It 313 my ($profile, $line, $tmp); 315 # This is the profile output file. 316 my $outfile = "$output_dir/profile.dynamic"; 318 $profile = get_dynamic_profile($object); 320 if ($profile [all...] |
/titanic_51/usr/src/lib/krb5/plugins/preauth/pkinit/ |
H A D | pkinit_profile.c | 40 * Routines for handling profile [config file] options 97 profile_t profile = NULL; in pkinit_kdcdefault_strings() local 105 profile = context->profile; in pkinit_kdcdefault_strings() 121 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings() 136 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings() 234 profile_t profile; in pkinit_libdefault_strings() local 252 profile = context->profile; in pkinit_libdefault_strings() 269 retval = profile_get_values(profile, name in pkinit_libdefault_strings() [all...] |
/titanic_51/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | appdefault.c | 3 * handle the [appdefaults] profile section 40 profile_t profile; in appdefault_get() local 49 profile = context->profile; in appdefault_get() 69 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 87 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 105 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 121 retval = profile_get_values(profile, names, &nameval); in appdefault_get()
|
/titanic_51/usr/src/cmd/dtrace/test/tst/common/speculation/ |
H A D | err.D_COMM_COMM.CommitAftCommit.d | 45 profile:::tick-1sec 52 profile:::tick-1sec 60 profile:::tick-1sec 65 profile:::tick-1sec
|
H A D | err.D_SPEC_COMM.SpecAftCommit.d | 48 profile:::tick-1sec 56 profile:::tick-1sec 61 profile:::tick-1sec
|
/titanic_51/usr/src/cmd/krb5/kadmin/kclient/ |
H A D | kconf.c | 32 #include <profile.h> 118 profile_t profile; in main() local 164 code = __profile_init(file, &profile); in main() 166 fprintf(stderr, gettext("Wasn't able to initialize profile\n")); in main() 191 code = __profile_add_realm(profile, realm, master, ret_values, in main() 199 code = __profile_add_domain_mapping(profile, domain, realm); in main() 210 * Release profile, which will subsequently flush new profile to file. in main() 211 * If this fails then at least free profile memory. in main() 213 if ((code = __profile_release(profile)) ! in main() [all...] |
/titanic_51/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ditto.sh | 182 then ($remote $src_user $src_host "{ test ! -f .profile || . ./.profile ;} && cd $src_dir && read && ${tw[*]}") 2>&1 |& 190 then ($remote $dst_user $dst_host "{ test ! -f .profile || . ./.profile ;} && cd $dst_dir && read && ${tw[*]}") 2>&1 |& 454 $remote $dst_user $dst_host "{ test ! -f .profile || . ./.profile ;} && { test -d \"$dst_dir\" || mkdir -p \"$dst_dir\" ;} && cd \"$dst_dir\" && gunzip | $pax $paxreadflags"
|
/titanic_51/usr/src/cmd/svc/milestone/ |
H A D | manifest-import | 34 PROFILE_DIR_SITE="/etc/svc/profile/site" 96 # profiles which lived under /var/svc/profile so that svccfg apply would 99 # profiles under /etc/svc/profile. If the profiles don't really exist, 105 # Don't process site.xml profile since it is still supported under 106 # /var/svc/profile directory. 114 [ -d "/var/svc/profile" ] || return 1 153 astring: "/etc/svc/profile/generic.xml" 161 astring: "/etc/svc/profile/generic.xml" 169 astring: "/etc/svc/profile/platform_${pl}_xml" 178 astring: "/etc/svc/profile/platform [all...] |
/titanic_51/usr/src/pkg/manifests/ |
H A D | system-kernel-dtrace-providers.mf | 50 driver name=profile perms="profile 0644 root sys" 58 file path=kernel/drv/$(ARCH64)/profile group=sys 66 file path=kernel/drv/profile.conf group=sys 73 file path=usr/share/man/man7d/profile.7d 84 hardlink path=kernel/dtrace/$(ARCH64)/profile \ 85 target=../../../kernel/drv/$(ARCH64)/profile
|
/titanic_51/usr/src/cmd/hal/utils/ |
H A D | cdutils.c | 211 get_current_profile(int fd, int *profile) in get_current_profile() argument 232 *profile = GET16(&bufp[6]); in get_current_profile() 245 uint16_t profile, current_profile; in walk_profiles() local 266 profile = GET16(&bufp[i]); in walk_profiles() 267 ret = f(arg, profile, (profile == current_profile)); in walk_profiles() 448 * given current profile, use the best method for determining 452 get_disc_capacity_for_profile(int fd, int profile, uint64_t *capacity) in get_disc_capacity_for_profile() argument 458 switch (profile) { in get_disc_capacity_for_profile()
|
/titanic_51/usr/src/cmd/dtrace/demo/out/ |
H A D | printa.d | 27 profile:::profile-997
|
/titanic_51/usr/src/cmd/dtrace/demo/tcp/ |
H A D | tcptop.d | 83 profile:::tick-1sec 92 profile:::tick-1sec 126 profile:::tick-1sec
|