Searched refs:context (Results 1 - 25 of 1481) sorted by path

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c59 * (2) The parse tree is "cooked" by assigning each clause a context (see the
81 * investigated in the context of whether they will have any substantive effect
1782 dt_dprintf("set context to %s:%s:%s:%s [%u] prp=%p attr=%s argc=%d\n",
1789 * based on the attributes of the provider and context itself.
1807 * Reset context-dependent variables and state at the end of cooking a D probe
1809 * do not reference any stale context-dependent data from the previous clause.
2432 dt_compile(dtrace_hdl_t *dtp, int context, dtrace_probespec_t pspec, void *arg, argument
2471 pcb.pcb_context = context;
2472 pcb.pcb_token = context;
2474 if (context !
[all...]
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dzfsd_event.cc214 string context("GeomEvent::ReadLabel: "
217 exp.GetString().insert(0, context);
244 string context("GeomEvent::OnlineByLabel: " + devPath + ": ");
246 exp.GetString().insert(0, context);
/freebsd-11-stable/contrib/amd/amd/
H A Dinfo_hesiod.c56 extern char **hesiod_resolve(void *context, const char *name, const char *type);
57 extern int hesiod_init(void **context);
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex653 \errmessage{@group invalid in context where filling is enabled}%
1391 % tried to figure out what each command should do in the context
3586 \errmessage{This command won't work in this context; perhaps the problem is
7282 % Macro bodies are absorbed as an argument in a context where
7582 % First we save the token context, and initialize argument numbering.
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_md4.c111 /* MD4 initialization. Begins an MD4 operation, writing a new context.
113 APU_DECLARE(apr_status_t) apr_md4_init(apr_md4_ctx_t *context)
115 context->count[0] = context->count[1] = 0;
118 context->state[0] = 0x67452301;
119 context->state[1] = 0xefcdab89;
120 context->state[2] = 0x98badcfe;
121 context->state[3] = 0x10325476;
124 context->xlate = NULL;
135 APU_DECLARE(apr_status_t) apr_md4_set_xlate(apr_md4_ctx_t *context,
[all...]
H A Dapr_md5.c143 /* MD5 initialization. Begins an MD5 operation, writing a new context.
145 APU_DECLARE(apr_status_t) apr_md5_init(apr_md5_ctx_t *context)
147 context->count[0] = context->count[1] = 0;
150 context->state[0] = 0x67452301;
151 context->state[1] = 0xefcdab89;
152 context->state[2] = 0x98badcfe;
153 context->state[3] = 0x10325476;
154 context->xlate = NULL;
163 APU_DECLARE(apr_status_t) apr_md5_set_xlate(apr_md5_ctx_t *context,
190 md5_update_buffer(apr_md5_ctx_t *context, const void *vinput, apr_size_t inputLen, int xlate_buffer) argument
[all...]
H A Dapr_sha1.c351 apr_sha1_ctx_t context; local
354 apr_sha1_init(&context);
355 apr_sha1_update(&context, clear, len);
356 apr_sha1_final(digest, &context);
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_md4.h66 /** MD4 context. */
81 * MD4 Initialize. Begins an MD4 operation, writing a new context.
82 * @param context The MD4 context to initialize.
84 APU_DECLARE(apr_status_t) apr_md4_init(apr_md4_ctx_t *context); variable
90 * @param context The MD4 content to set the translation for.
91 * @param xlate The translation handle to use for this MD4 context
93 APU_DECLARE(apr_status_t) apr_md4_set_xlate(apr_md4_ctx_t *context,
96 #define apr_md4_set_xlate(context, xlate) APR_ENOTIMPL
101 * processing another message block, and updating the context
[all...]
H A Dapr_md5.h73 /** MD5 context. */
88 * MD5 Initialize. Begins an MD5 operation, writing a new context.
89 * @param context The MD5 context to initialize.
91 APU_DECLARE(apr_status_t) apr_md5_init(apr_md5_ctx_t *context); variable
96 * @param context The MD5 content to set the translation for.
97 * @param xlate The translation handle to use for this MD5 context
99 APU_DECLARE(apr_status_t) apr_md5_set_xlate(apr_md5_ctx_t *context,
104 * processing another message block, and updating the context.
105 * @param context Th
[all...]
H A Dapr_sha1.h54 * SHA1 context structure
86 * @param context The SHA context to initialize
88 APU_DECLARE(void) apr_sha1_init(apr_sha1_ctx_t *context); variable
92 * @param context The SHA1 context to update
96 APU_DECLARE(void) apr_sha1_update(apr_sha1_ctx_t *context, const char *input,
101 * @param context The SHA1 context to update
105 APU_DECLARE(void) apr_sha1_update_binary(apr_sha1_ctx_t *context,
[all...]
H A Dapr_strmatch.h49 void *context; /**< hook to add precomputed metadata */ member in struct:apr_strmatch_pattern
/freebsd-11-stable/contrib/apr-util/strmatch/
H A Dapr_strmatch.c39 apr_size_t *shift = (apr_size_t *)(this_pattern->context);
63 apr_size_t *shift = (apr_size_t *)(this_pattern->context);
95 pattern->context = NULL;
115 pattern->context = shift;
/freebsd-11-stable/contrib/apr-util/test/
H A Dtestmd4.c80 apr_md4_ctx_t context;
84 apr_md4_init(&context);
85 apr_md4_update(&context, (unsigned char *)string, len);
86 apr_md4_final(digest, &context);
94 apr_md4_ctx_t context; local
100 ABTS_ASSERT(tc, "apr_md4_init", (apr_md4_init(&context) == 0));
102 (apr_md4_update(&context,
105 ABTS_ASSERT(tc, "apr_md4_final", (apr_md4_final(digest, &context) ==0));
H A Dtestmd5.c54 apr_md5_ctx_t context; local
60 ABTS_ASSERT(tc, "apr_md5_init", (apr_md5_init(&context) == 0));
62 (apr_md5_update(&context, string, len) == 0));
63 ABTS_ASSERT(tc, "apr_md5_final", (apr_md5_final(digest, &context)
71 apr_md5_ctx_t context; local
81 ABTS_ASSERT(tc, "apr_md5_init", (apr_md5_init(&context) == 0));
84 (apr_md5_update(&context, string, strlen(string)) == 0));
87 ABTS_ASSERT(tc, "apr_md5_final", (apr_md5_final(digest, &context)
H A Dtestutil.c26 void apr_assert_success(abts_case* tc, const char* context, apr_status_t rv) argument
29 ABTS_NOT_IMPL(tc, context);
34 sprintf(buf, "%s (%d): %s\n", context, rv,
40 void apr_assert_failure(abts_case* tc, const char* context, apr_status_t rv, argument
44 abts_not_impl(tc, context, lineno);
47 sprintf(buf, "%s (%d): expected failure, got success\n", context, rv);
/freebsd-11-stable/contrib/atf/atf-c/
H A Dtc.c62 struct context { struct
75 static void context_init(struct context *, const atf_tc_t *, const char *);
83 static void error_in_expect(struct context *, const char *, ...)
85 static void validate_expect(struct context *);
86 static void expected_failure(struct context *, atf_dynstr_t *)
88 static void fail_requirement(struct context *, atf_dynstr_t *)
90 static void fail_check(struct context *, atf_dynstr_t *);
91 static void pass(struct context *)
93 static void skip(struct context *, atf_dynstr_t *)
99 static void errno_test(struct context *, cons
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dieee.c1186 bfd_vma parent, brother, context;
1190 parse_int (&(ieee->h), &context);
1184 bfd_vma parent, brother, context; local
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddebug.c345 struct debug_type *context; member in struct:debug_method_variant
1775 function context. FIXME: Are the const and volatile arguments
1783 bfd_vma voffset, debug_type context)
1796 m->context = context;
2771 if (v->context != NULL)
2773 if (! debug_write_type (info, fns, fhandle, v->context,
2787 v->context != NULL))
3354 || (v1->context == NULL) != (v2->context
1777 debug_make_method_variant(void *handle ATTRIBUTE_UNUSED, const char *physname, debug_type type, enum debug_visibility visibility, bfd_boolean constp, bfd_boolean volatilep, bfd_vma voffset, debug_type context) argument
[all...]
H A Dieee.c6289 bfd_boolean context)
6300 /* We don't use the context. FIXME: We probably ought to use it to
6302 if (context)
6323 virtual = context || voffset > 0;
6357 bfd_vma voffset, bfd_boolean context)
6362 volatilep, voffset, context);
6281 ieee_class_method_var(struct ieee_handle *info, const char *physname, enum debug_visibility visibility, bfd_boolean staticp, bfd_boolean constp, bfd_boolean volatilep, bfd_vma voffset, bfd_boolean context) argument
6350 ieee_class_method_variant(void *p, const char *physname, enum debug_visibility visibility, bfd_boolean constp, bfd_boolean volatilep, bfd_vma voffset, bfd_boolean context) argument
H A Dprdbg.c1416 bfd_vma voffset, bfd_boolean context)
1439 (context
1449 /* Pull off the context type if there is one. */
1450 if (! context)
1469 if (context || voffset != 0)
1473 if (context)
1475 if (! append_type (info, "context ")
2260 bfd_boolean context)
2282 method_name = strdup (context ? info->stack->next->next->method
2294 /* Pull off the context typ
1408 pr_class_method_variant(void *p, const char *physname, enum debug_visibility visibility, bfd_boolean constp, bfd_boolean volatilep, bfd_vma voffset, bfd_boolean context) argument
2250 tg_class_method_variant(void *p, const char *physname ATTRIBUTE_UNUSED, enum debug_visibility visibility, bfd_boolean constp, bfd_boolean volatilep, bfd_vma voffset ATTRIBUTE_UNUSED, bfd_boolean context) argument
[all...]
H A Dunwind-ia64.c302 #define UNW_DEC_ABI(fmt, abi, context, arg) \
316 printf ("\t%s:unwabi(abi=%s,context=0x%02x)\n", \
317 fmt, abistr, context); \
498 * UNW_DEC_ABI(fmt,abi,context,arg)
H A Dwrstabs.c1655 char *context = NULL;
1664 context = stab_pop_type (info);
1714 + (contextp ? strlen (context) : 0)
1724 "%ld;%s;", (long) voffset, context);
1725 free (context);
1653 char *context = NULL; local
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-ia64.c1582 output_P10_format (f, abi, context)
1585 int context;
1590 bytes[2] = (context & 0xff);
2444 output_unwabi (abi, context)
2446 unsigned long context;
2450 ptr->r.record.p.context = context;
2675 output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context);
5357 as_bad (_("Use of p0 is not valid in this context"));
5369 as_bad (_("Use of p0 is not valid in this context"));
[all...]
H A Dtc-ia64.h185 These values are also unique (in context), so they can be used to identify
187 same value, but Px can only occur in a prologue context, and Bx in
188 a body context. */
269 unsigned char context; member in struct:unw_p_record
/freebsd-11-stable/contrib/bmake/
H A Dtarg.c260 Hash_InitTable(&gn->context, 0);
305 Hash_DeleteTable(&gn->context);

Completed in 279 milliseconds

1234567891011>>