Searched refs:prefix (Results 51 - 75 of 616) sorted by relevance

1234567891011>>

/freebsd-10.0-release/crypto/heimdal/lib/hdb/
H A Dhdb.c282 char *prefix, *path, *symbol; local
289 /* if no prefix, don't know what module to load, just ignore it */
296 prefix = malloc(len + 1);
297 if (prefix == NULL)
299 strlcpy(prefix, filename, len + 1);
301 if (asprintf(&path, LIBDIR "/hdb_%s.so", prefix) == -1)
315 free(prefix);
320 if (asprintf(&symbol, "hdb_%s_interface", prefix) == -1)
329 free(prefix);
340 prefix, ms
[all...]
H A Dhdb_err.et10 prefix HDB_ERR
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
H A Deap_gtc.c16 int prefix; member in struct:eap_gtc_data
29 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
31 data->prefix = 1;
63 if (data->prefix &&
66 "expected prefix");
94 ret->methodState = data->prefix ? METHOD_MAY_CONT : METHOD_DONE;
102 if (data->prefix)
108 if (data->prefix) {
/freebsd-10.0-release/contrib/com_err/
H A Dlex.l63 prefix { return PREFIX; }
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DUnix.h64 /// This function builds an error message into \p ErrMsg using the \p prefix
70 /// separated from prefix by ": ".
72 std::string* ErrMsg, const std::string& prefix, int errnum = -1) {
77 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
71 MakeErrMsg( std::string* ErrMsg, const std::string& prefix, int errnum = -1) argument
/freebsd-10.0-release/contrib/subversion/subversion/svnserve/
H A Dlog-escape.c62 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix, argument
68 *where++ = prefix;
/freebsd-10.0-release/crypto/heimdal/lib/com_err/
H A Dlex.l63 prefix { return PREFIX; }
/freebsd-10.0-release/crypto/heimdal/lib/ntlm/
H A Dntlm_err.et9 prefix HNTLM_ERR
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcaching.c74 according to FS->CONFIG. *CACHE_NAMESPACE receives the cache prefix
101 * the complete key prefix, we must make sure that the resulting string
300 const char *prefix,
313 prefix, pool));
322 klen, prefix, FALSE, pool));
328 items_per_page, FALSE, prefix, pool));
345 const char *prefix = apr_pstrcat(pool, local
368 prefix = apr_pstrcat(pool, "ns:", cache_namespace, ":", prefix, NULL);
387 apr_pstrcat(pool, prefix, "RR
292 create_cache(svn_cache__t **cache_p, svn_memcache_t *memcache, svn_membuffer_t *membuffer, apr_int64_t pages, apr_int64_t items_per_page, svn_cache__serialize_func_t serializer, svn_cache__deserialize_func_t deserializer, apr_ssize_t klen, const char *prefix, svn_fs_t *fs, svn_boolean_t no_handler, apr_pool_t *pool) argument
647 const char *prefix = apr_pstrcat(pool, local
[all...]
/freebsd-10.0-release/contrib/ntp/include/
H A Dntp_filegen.h40 char *prefix; /* filename prefix and basename to be used*/ member in struct:FILEGEN
/freebsd-10.0-release/sbin/camcontrol/
H A Dprogress.h43 char *prefix; /* any prefix explanation */ member in struct:progress_t
54 int progress_init(progress_t */*meter*/, const char */*prefix*/, uint64_t /*size*/);
H A Dprogress.c65 progress_init(progress_t *prog, const char *prefix, uint64_t total) argument
72 prog->prefix = strdup(prefix);
143 barlength = MIN(sizeof(buf) - 1, (unsigned)prog->ttywidth) - BAROVERHEAD - strlen(prog->prefix);
175 (prog->prefix) ? prog->prefix : "",
/freebsd-10.0-release/sys/boot/common/
H A Ddisk.h104 extern void disk_print(struct disk_devdesc *dev, char *prefix, int verbose);
/freebsd-10.0-release/usr.sbin/pkg_install/info/
H A Dshow.c91 char *prefix = NULL; local
114 if (!prefix)
115 prefix = p->name;
116 printf(Quiet ? "@cwd %s\n" : "\tCWD to %s\n", (p->name == NULL) ? prefix : p->name);
228 char *prefix = NULL; local
243 if (!prefix)
244 prefix = p->name;
246 dir = prefix;
276 char *prefix = NULL; local
298 if (!prefix)
330 char *prefix = NULL; local
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Devent-top.h29 /* Stack for prompts. Each prompt is composed as a prefix, a prompt
46 actually composed of a prefix, the prompt itself and a suffix. */
51 stack: the usual one, w/o prefix and suffix (at top - 1), and the
52 'composite' one with prefix and suffix added (at top). At this
65 char *prefix; member in struct:prompts::__anon1240
74 #define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
101 extern void push_prompt (char *prefix, char *prompt, char *suffix);
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Drtbl.c45 char *prefix; member in struct:column_data
112 free (c->prefix);
140 col->prefix = NULL;
198 rtbl_set_prefix (rtbl_t table, const char *prefix) argument
202 table->column_prefix = strdup (prefix);
221 const char *prefix)
227 if (c->prefix)
228 free (c->prefix);
229 c->prefix = strdup (prefix);
220 rtbl_set_column_prefix(rtbl_t table, const char *column, const char *prefix) argument
236 rtbl_set_column_affix_by_id(rtbl_t table, unsigned int id, const char *prefix, const char *suffix) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/kcm/
H A Dclient.c98 char prefix[64]; local
102 snprintf(prefix, sizeof(prefix), "%ld:", (long)client->uid);
103 prefix_len = strlen(prefix);
105 if (strncmp(name, prefix, prefix_len) == 0)
108 prefix[prefix_len - 1] = '\0';
109 if (strcmp(name, prefix) == 0)
/freebsd-10.0-release/usr.bin/mail/
H A Dsend.c52 * prefix is a string to prepend to each output line.
56 char *prefix)
65 * Compute the prefix string, without trailing whitespace
67 if (prefix != NULL) {
69 for (cp = prefix; *cp != '\0'; cp++)
72 prefixlen = cp2 == NULL ? 0 : cp2 - prefix + 1;
102 statusput(mp, obuf, prefix);
131 statusput(mp, obuf, prefix);
154 statusput(mp, obuf, prefix);
167 * Strip trailing whitespace from prefix
55 sendmessage(struct message *mp, FILE *obuf, struct ignoretab *doign, char *prefix) argument
227 statusput(struct message *mp, FILE *obuf, char *prefix) argument
[all...]
/freebsd-10.0-release/usr.bin/rpcgen/
H A Drpc_hout.c357 ptype(dl->decl.prefix, dl->decl.type, 1);
410 char prefix[8]; /* enough to contain "struct ", including NUL */ local
424 s_print(prefix, "%s ", def->def.ty.old_prefix);
426 prefix[0] = 0;
433 f_print(fout, "\t%s%s *%s_val;\n", prefix, old, name);
437 f_print(fout, "%s%s *%s", prefix, old, name);
440 f_print(fout, "%s%s %s[%s]", prefix, old, name,
444 f_print(fout, "%s%s %s", prefix, old, name);
455 const char *prefix; local
462 if (streq(dec->type, name) && !dec->prefix) {
[all...]
/freebsd-10.0-release/contrib/ncurses/misc/
H A Drun_tic.in46 : ${prefix=@prefix@}
159 cd ${DESTDIR}$prefix
161 # same $prefix as the other installed directories.
162 RELATIVE=`echo $ticdir|sed -e 's%^'$prefix'/%%'`
164 RELATIVE=../`echo $ticdir|sed -e 's%^'$prefix'/%%' -e 's%^/%%'`
/freebsd-10.0-release/usr.bin/systat/
H A Ddevs.c147 if (prefix(cmd, "display") || prefix(cmd, "add"))
149 if (prefix(cmd, "ignore") || prefix(cmd, "delete"))
151 if (prefix(cmd, "show") || prefix(cmd, "only"))
153 if (prefix(cmd, "type") || prefix(cmd, "match"))
155 if (prefix(cmd, "refresh")) {
171 if (prefix(cm
[all...]
/freebsd-10.0-release/contrib/binutils/gas/
H A Dmessages.c446 as_internal_value_out_of_range (char * prefix, argument
456 if (prefix == NULL)
457 prefix = "";
470 prefix, (int) val, (int) right);
473 prefix, (int) val, (int) right);
489 prefix, (int) val, (int) min, (int) max);
492 prefix, (int) val, (int) min, (int) max);
511 as_bad_where (file, line, err, prefix, val_buf, min_buf, max_buf);
513 as_warn_where (file, line, err, prefix, val_buf, min_buf, max_buf);
518 as_warn_value_out_of_range (char * prefix, argument
529 as_bad_value_out_of_range(char * prefix, offsetT value, offsetT min, offsetT max, char * file, unsigned line) argument
[all...]
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dpe.c251 const char * prefix;
260 prefix = ".text$";
262 prefix = ".rdata$";
264 prefix = ".data$";
265 len = strlen (name) + strlen (prefix);
267 sprintf (string, "%s%s", prefix, name);
250 const char * prefix; local
/freebsd-10.0-release/contrib/libpcap/
H A Drunlex.sh114 # write to lex.yy.c, it writes to a lex.{prefix from -P}.c.
211 # Get the name of the prefix; scan the source files for a %option prefix
214 prefix=`sed -n 's/%option[ ][ ]*prefix="\(.*\)".*/\1/p' "$@" | tail -1`
215 if [ ! -z "$prefix" ]
217 prefixline="#define yylex ${prefix}lex"
/freebsd-10.0-release/contrib/wpa/hostapd/
H A Ddump_state.c33 static void ieee802_1x_dump_state(FILE *f, const char *prefix, argument
40 fprintf(f, "%sIEEE 802.1X:\n", prefix);
44 fprintf(f, "%sidentity=", prefix);
51 "Supplicant: %d (%s)\n", prefix,
56 fprintf(f, "%scached_packets=%s\n", prefix,
59 eapol_auth_dump_state(f, prefix, sm);

Completed in 207 milliseconds

1234567891011>>