| /src/sys/dev/mthca/ |
| H A D | mthca_profile.c | 79 struct mthca_resource *profile; in mthca_make_profile() local 82 profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL); in mthca_make_profile() 83 if (!profile) in mthca_make_profile() 86 profile[MTHCA_RES_QP].size = dev_lim->qpc_entry_sz; in mthca_make_profile() 87 profile[MTHCA_RES_EEC].size = dev_lim->eec_entry_sz; in mthca_make_profile() 88 profile[MTHCA_RES_SRQ].size = dev_lim->srq_entry_sz; in mthca_make_profile() 89 profile[MTHCA_RES_CQ].size = dev_lim->cqc_entry_sz; in mthca_make_profile() 90 profile[MTHCA_RES_EQP].size = dev_lim->eqpc_entry_sz; in mthca_make_profile() 91 profile[MTHCA_RES_EEEC].size = dev_lim->eeec_entry_sz; in mthca_make_profile() 92 profile[MTHCA_RES_EQ].size = dev_lim->eqc_entry_sz; in mthca_make_profile() [all …]
|
| /src/sys/dev/mlx4/mlx4_core/ |
| H A D | mlx4_profile.c | 84 struct mlx4_resource *profile; in mlx4_make_profile() local 87 profile = kcalloc(MLX4_RES_NUM, sizeof(*profile), GFP_KERNEL); in mlx4_make_profile() 88 if (!profile) in mlx4_make_profile() 91 profile[MLX4_RES_QP].size = dev_cap->qpc_entry_sz; in mlx4_make_profile() 92 profile[MLX4_RES_RDMARC].size = dev_cap->rdmarc_entry_sz; in mlx4_make_profile() 93 profile[MLX4_RES_ALTC].size = dev_cap->altc_entry_sz; in mlx4_make_profile() 94 profile[MLX4_RES_AUXC].size = dev_cap->aux_entry_sz; in mlx4_make_profile() 95 profile[MLX4_RES_SRQ].size = dev_cap->srq_entry_sz; in mlx4_make_profile() 96 profile[MLX4_RES_CQ].size = dev_cap->cqc_entry_sz; in mlx4_make_profile() 97 profile[MLX4_RES_EQ].size = dev_cap->eqc_entry_sz; in mlx4_make_profile() [all …]
|
| /src/crypto/krb5/src/util/profile/ |
| H A D | prof_init.c | 22 profile_t profile; in init_module() local 35 profile = malloc(sizeof(*profile)); in init_module() 36 if (!profile) in init_module() 38 memset(profile, 0, sizeof(*profile)); in init_module() 42 free(profile); in init_module() 49 profile->vt = vt_copy; in init_module() 50 profile->cbdata = cbdata; in init_module() 51 profile->lib_handle = handle; in init_module() 52 profile->magic = PROF_MAGIC_PROFILE; in init_module() 53 *ret_profile = profile; in init_module() [all …]
|
| H A D | prof_set.c | 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() 36 if (profile->first_file == NULL) { in rw_setup() 37 profile->first_file = profile_open_memory(); in rw_setup() 38 return (profile->first_file == NULL) ? ENOMEM : 0; in rw_setup() 41 file = profile->first_file; in rw_setup() 77 profile_update_relation(profile_t profile, const char **names, in profile_update_relation() argument 85 if (profile->vt) { in profile_update_relation() 86 if (!profile->vt->update_relation) in profile_update_relation() [all …]
|
| H A D | prof_get.c | 133 get_values_vt(profile_t profile, const char *const *names, char ***ret_values) in get_values_vt() argument 139 retval = profile->vt->get_values(profile->cbdata, names, &vtvalues); in get_values_vt() 151 profile->vt->free_values(profile->cbdata, vtvalues); in get_values_vt() 156 profile_get_values(profile_t profile, const char *const *names, in profile_get_values() argument 165 if (!profile) in profile_get_values() 167 if (profile->vt) in profile_get_values() 168 return get_values_vt(profile, names, ret_values); in profile_get_values() 170 if ((retval = profile_node_iterator_create(profile, names, in profile_get_values() 200 get_value_vt(profile_t profile, const char *const *names, char **ret_value) in get_value_vt() argument 205 retval = profile->vt->get_values(profile->cbdata, names, &vtvalues); in get_value_vt() [all …]
|
| H A D | test_profile.c | 23 do_batchmode(profile_t profile) in do_batchmode() argument 51 retval = profile_get_values(profile, names, &values); in do_batchmode() 54 retval = profile_get_value(profile, names, &value); in do_batchmode() 57 retval = profile_get_subsection_names(profile, names, in do_batchmode() 61 retval = profile_get_relation_names(profile, names, in do_batchmode() 66 (profile->first_file->data->root, stdout); in do_batchmode() 68 retval = profile_clear_relation(profile, names); in do_batchmode() 70 retval = profile_update_relation(profile, names+2, in do_batchmode() 74 (profile->first_file->data->root); in do_batchmode() 76 retval = profile_rename_section(profile, names+1, in do_batchmode() [all …]
|
| H A D | test_vtable.c | 238 profile_t profile; in main() local 243 assert(profile_init_vtable(&basic_vtable, &basic_cbdata, &profile) == 0); in main() 244 assert(profile_get_values(profile, empty_names, &values) == 0); in main() 249 assert(profile_iterator_create(profile, NULL, 0, &iter) == in main() 251 assert(profile_is_writable(profile, &intval) == 0); in main() 253 assert(profile_is_modified(profile, &intval) == 0); in main() 255 assert(profile_update_relation(profile, NULL, NULL, NULL) == in main() 257 assert(profile_clear_relation(profile, NULL) == PROF_UNSUPPORTED); in main() 258 assert(profile_rename_section(profile, NULL, NULL) == PROF_UNSUPPORTED); in main() 259 assert(profile_add_relation(profile, NULL, NULL) == PROF_UNSUPPORTED); in main() [all …]
|
| H A D | prof_err.et | 14 "A profile section header has a non-zero value" 15 error_code PROF_BAD_LINK_LIST, "Bad linked list in profile structures" 16 error_code PROF_BAD_GROUP_LVL, "Bad group level in profile structures" 18 "Bad parent pointer in profile structures" 19 error_code PROF_MAGIC_ITERATOR, "Bad magic value in profile iterator" 21 error_code PROF_EINVAL, "Invalid argument passed to profile library" 22 error_code PROF_READ_ONLY, "Attempt to modify read-only profile" 29 error_code PROF_SECTION_SYNTAX, "Syntax error in profile section header" 30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation" 31 error_code PROF_EXTRA_CBRACE, "Extra closing brace in profile" [all …]
|
| H A D | profile.hin | 2 * profile.h 30 * Used by the profile iterator in prof_get.c 58 (profile_t profile); 60 (profile_t profile, const_profile_filespec_t outfile); 62 (profile_t profile, char **bufp); 64 (profile_t profile, char *buf); 67 (profile_t profile, int *writable); 69 (profile_t profile, int *modified); 72 (profile_t profile); 75 (profile_t profile); [all …]
|
| H A D | deps | 5 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 10 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 15 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 20 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 25 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 32 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 37 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 42 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 47 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ 52 $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ [all …]
|
| /src/lib/libclang_rt/profile/ |
| H A D | Makefile | 3 LIB= clang_rt.profile-${CRTARCH} 12 SRCS+= profile/GCDAProfiling.c 13 SRCS+= profile/InstrProfiling.c 14 SRCS+= profile/InstrProfilingBuffer.c 15 SRCS+= profile/InstrProfilingFile.c 16 SRCS+= profile/InstrProfilingInternal.c 17 SRCS+= profile/InstrProfilingMerge.c 18 SRCS+= profile/InstrProfilingMergeFile.c 19 SRCS+= profile/InstrProfilingNameVar.c 20 SRCS+= profile/InstrProfilingPlatformLinux.c [all …]
|
| /src/crypto/krb5/src/windows/include/ |
| H A D | loadfuncs-profile.h | 31 (profile_t profile) 38 (profile_t profile) 45 (profile_t profile) 52 (profile_t profile, const char **names, char ***ret_values) 66 (profile_t profile, const char *name, const char *subname, 75 (profile_t profile, const char *name, const char *subname, 84 (profile_t profile, const char **names, char ***ret_names) 91 (profile_t profile, const char **names, char ***ret_names) 98 (profile_t profile, const char **names, int flags, void **ret_iter) 126 (profile_t profile, const char **names, const char *old_value, const char *new_value) [all …]
|
| /src/cddl/contrib/opensolaris/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 64 * RESULT: List of only profile probes. [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'{printf("FOUND");}' 69 * RESULT: Traces of all the matching profile probes with the [all …]
|
| /src/cddl/contrib/opensolaris/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
|
| /src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SymbolManager.h | 55 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() argument 56 profile.AddInteger((unsigned) SymbolRegionValueKind); in Profile() 57 profile.AddPointer(R); in Profile() 60 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() argument 61 Profile(profile, R); in Profile() 112 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() argument 115 profile.AddInteger((unsigned) SymbolConjuredKind); in Profile() 116 profile.AddPointer(S); in Profile() 117 profile.AddPointer(LCtx); in Profile() 118 profile.Add(T); in Profile() [all …]
|
| /src/usr.sbin/virtual_oss/virtual_oss/ |
| H A D | httpd.c | 127 pvc->profile->http.rtp_vlanid = vr.vlr_tag; in voss_httpd_bind_rtp() 129 pvc->profile->http.rtp_vlanid = 0; in voss_httpd_bind_rtp() 195 uint16_t port = atoi(pvc->profile->http.rtp_port); in voss_httpd_send_rtp_sub() 229 pkt.rtp.header16[1] = htobe16(pvc->profile->http.rtp_seqnum); in voss_httpd_send_rtp_sub() 238 pvc->profile->http.rtp_seqnum++; in voss_httpd_send_rtp_sub() 239 pvc->profile->http.rtp_ts += len / (2 * pvc->channels); in voss_httpd_send_rtp_sub() 266 for (x = 0; x < pvc->profile->http.nstate; x++) in voss_httpd_usage() 267 usage += (pvc->profile->http.state[x].fd != -1); in voss_httpd_usage() 528 pvc->profile->http.host, pvc->profile->http.port, in voss_httpd_handle_connection() 529 pvc->profile->http.host, pvc->profile->http.port); in voss_httpd_handle_connection() [all …]
|
| H A D | main.c | 404 if (pvc->channels <= 0 || pvc->channels > pvc->profile->channels) in vclient_setup_buffers() 471 pvc->profile = pvp; in vclient_open_sub() 487 if (pvc->profile->synchronized) { in vclient_open_sub() 494 TAILQ_INSERT_TAIL(&pvc->profile->head, pvc, entry); in vclient_open_sub() 522 if (pvc->profile->synchronized) { in vclient_close() 532 TAILQ_REMOVE(&pvc->profile->head, pvc, entry); in vclient_close() 546 delta_in = pvc->profile->rec_delay - pvc->rec_delay; in vclient_read_silence_locked() 554 delta_in = pvc->profile->rec_delay - pvc->rec_delay; in vclient_read_silence_locked() 1184 strlcpy(data.card_info.shortname, pvc->profile->oss_name, in vclient_ioctl_oss() 1191 strlcpy(data.audioinfo.name, pvc->profile->oss_name, in vclient_ioctl_oss() [all …]
|
| /src/crypto/krb5/src/lib/krb5/os/ |
| H A D | init_os_ctx.c | 387 PROFILE_INIT_ALLOW_MODULE, &ctx->profile); in os_init_paths() 391 retval = profile_init(NULL, &ctx->profile); in os_init_paths() 398 ctx->profile = 0; in os_init_paths() 414 k5_os_init_context(krb5_context ctx, profile_t profile, krb5_flags flags) in k5_os_init_context() argument 434 if (profile) in k5_os_init_context() 435 retval = profile_copy(profile, &ctx->profile); in k5_os_init_context() 453 krb5_get_profile (krb5_context ctx, profile_t *profile) in krb5_get_profile() argument 455 return profile_copy (ctx->profile, profile); in krb5_get_profile() 462 profile_t profile; in krb5_set_config_files() local 465 &profile); in krb5_set_config_files() [all …]
|
| /src/crypto/krb5/src/plugins/preauth/pkinit/ |
| H A D | pkinit_profile.c | 93 profile_t profile = NULL; in pkinit_kdcdefault_strings() local 101 profile = context->profile; in pkinit_kdcdefault_strings() 117 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings() 132 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings() 225 profile_t profile; in pkinit_libdefault_strings() local 242 profile = context->profile; in pkinit_libdefault_strings() 259 retval = profile_get_values(profile, names, &values); in pkinit_libdefault_strings() 276 retval = profile_get_values(profile, names, &values); in pkinit_libdefault_strings() 291 retval = profile_get_values(profile, names, &values); in pkinit_libdefault_strings()
|
| /src/contrib/jemalloc/bin/ |
| H A D | jeprof.in | 591 my ($profile, $symbols, $libs, $thread) = @_; 594 my $total = TotalProfile($profile); 597 $profile = RemoveUninterestingFrames($symbols, $profile); 601 $profile = FocusProfile($symbols, $profile, $main::opt_focus); 606 $profile = IgnoreProfile($symbols, $profile, $main::opt_ignore); 609 my $calls = ExtractCalls($symbols, $profile); 613 my $reduced = ReduceProfile($symbols, $profile); 636 PrintSymbolizedProfile($symbols, $profile, $main::prog); 638 PrintCollapsedStacks($symbols, $profile); 642 if (PrintDot($main::prog, $symbols, $profile, $flat, $cumulative, $total)) { [all …]
|
| /src/bin/sh/ |
| H A D | profile | 2 # System-wide .profile file for sh(1). 15 # Load each .sh file in /etc/profile.d/, then /usr/local/etc/profile, 16 # then each .sh file in /usr/local/etc/profile.d/. 17 _loaded=${_loaded:-/etc/profile} 20 for _file in "${_dir}"/profile "${_dir}"/profile.d/*.sh ; do
|
| /src/contrib/pam-krb5/portable/ |
| H A D | krb5-profile.c | 59 profile_t profile; in appdefault_get() local 74 krb5_get_profile(context, &profile); in appdefault_get() 76 profile = context->profile; in appdefault_get() 97 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 115 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 133 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 149 retval = profile_get_values(profile, names, &nameval); in appdefault_get()
|
| /src/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_set_tlsext_use_srtp.pod | 37 SRTP protection profile names. 39 The currently supported protection profile names are: 53 This corresponds to the profile of the same name defined in RFC7714. 57 This corresponds to the profile of the same name defined in RFC7714. 61 This corresponds to the profile of the same name defined in RFC8723. 65 This corresponds to the profile of the same name defined in RFC8723. 69 This corresponds to the profile of the same name defined in RFC8269. 73 This corresponds to the profile of the same name defined in RFC8269. 77 This corresponds to the profile of the same name defined in RFC8269. 81 This corresponds to the profile of the same name defined in RFC8269. [all …]
|
| /src/crypto/krb5/src/lib/krb5/krb/ |
| H A D | appdefault.c | 41 profile_t profile; in appdefault_get() local 52 profile = context->profile; in appdefault_get() 72 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 90 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 108 retval = profile_get_values(profile, names, &nameval); in appdefault_get() 124 retval = profile_get_values(profile, names, &nameval); in appdefault_get()
|