HomeSort by: relevance | last modified time | path
    Searched defs:expansion (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/lib/libedit/TEST/
fuzz1.c 39 char *expansion; local
45 result = history_expand(s, &expansion);
50 add_history(expansion);
52 free(expansion);
  /src/lib/libwrap/
percent_x.c 5 * program when the expansion would overflow the output buffer. The result
6 * of %<char> expansion may be passed on to a shell process. For this
36 /* percent_x - do %<char> expansion, abort if result buffer is too small */
44 char *expansion; local
61 expansion =
75 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ )
77 expansion_len = cp - expansion;
79 expansion = str++;
83 tcpd_warn("percent_x: expansion too long: %.30s...", result);
87 memcpy(bp, expansion, expansion_len)
    [all...]
  /src/usr.sbin/tcpdchk/
percent_x.c 3 * program when the expansion would overflow the output buffer. The result
4 * of %<char> expansion may be passed on to a shell process. For this
29 /* percent_x - do %<char> expansion, abort if result buffer is too small */
39 char *expansion; local
56 expansion =
69 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ )
71 expansion_len = cp - expansion;
73 expansion = str++;
77 tcpd_warn("percent_x: expansion too long: %.30s...", result);
81 memcpy(bp, expansion, expansion_len)
    [all...]
  /src/external/gpl3/binutils/dist/gas/
sb.h 68 enum expansion { enum
74 extern void input_scrub_include_sb (sb *, char *, enum expansion);
input-scrub.c 84 static enum expansion from_sb_expansion = expanding_none;
125 enum expansion from_sb_expansion; /* Should we do a conditional check? */
296 input_scrub_include_sb (sb *from, char *position, enum expansion expansion)
300 if (expansion != expanding_app)
308 if (expansion == expanding_macro)
318 expansion. */
321 from_sb_expansion = expansion;
362 /* Allow the target to clean up per-macro expansion
539 enum expansion expansion = from_sb_expansion
535 enum expansion expansion = from_sb_expansion; local
586 enum expansion expansion = from_sb_expansion; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
sb.h 68 enum expansion { enum
74 extern void input_scrub_include_sb (sb *, char *, enum expansion);
input-scrub.c 84 static enum expansion from_sb_expansion = expanding_none;
125 enum expansion from_sb_expansion; /* Should we do a conditional check? */
296 input_scrub_include_sb (sb *from, char *position, enum expansion expansion)
300 if (expansion != expanding_app)
308 if (expansion == expanding_macro)
318 expansion. */
321 from_sb_expansion = expansion;
362 /* Allow the target to clean up per-macro expansion
539 enum expansion expansion = from_sb_expansion
535 enum expansion expansion = from_sb_expansion; local
587 enum expansion expansion = from_sb_expansion; local
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/examples/
histexamp.c 63 char *expansion; local
68 result = history_expand (line, &expansion);
70 fprintf (stderr, "%s\n", expansion);
74 free (expansion);
78 add_history (expansion);
79 strncpy (line, expansion, sizeof (line) - 1);
80 free (expansion);
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
histexamp.c 63 char *expansion; local
68 result = history_expand (line, &expansion);
70 fprintf (stderr, "%s\n", expansion);
74 free (expansion);
78 add_history (expansion);
79 strncpy (line, expansion, sizeof (line) - 1);
80 free (expansion);
  /src/external/mit/isl/dist/
isl_schedule_tree.h 26 * The "contraction" and "expansion" fields are valid when type
28 * "expansion" expands the reaching domain elements to one or more
65 isl_union_map *expansion; member in struct:isl_schedule_tree::__anon23682::__anon23683
98 __isl_take isl_union_map *expansion);
161 __isl_take isl_union_map *expansion);
206 __isl_take isl_union_map *expansion);
  /src/external/bsd/kyua-cli/dist/utils/format/
formatter.cpp 51 /// \param expansion The string containing the placeholder to look for. Any
66 const std::string& expansion,
69 begin = expansion.find('%', begin);
70 while (begin != std::string::npos && expansion[begin + 1] == '%')
71 begin = expansion.find('%', begin + 2);
73 return std::make_pair(expansion.length(), "");
74 if (begin == expansion.length() - 1)
78 while (end < expansion.length() && expansion[end] != 's')
80 const std::string placeholder = expansion.substr(begin, end - begin + 1)
288 const std::string expansion = _expansion.substr(0, _placeholder_pos) local
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
dict_sqlite.c 144 int expansion = 0; local
226 && ++expansion > dict_sqlite->expansion_limit) {
227 msg_warn("%s: %s: Expansion limit exceeded for key '%s'",
maps.c 182 const char *expansion; local
206 if ((expansion = dict_get(dict, name)) != 0) {
207 if (*expansion == 0) {
217 *map_name, name, expansion,
218 strlen(expansion) > 100 ? "..." : "");
219 return (expansion);
238 const char *expansion; local
267 if ((expansion = dict_get(dict, name)) != 0) {
268 if (*expansion == 0) {
278 *map_name, name, expansion,
    [all...]
dict_mongodb.c 125 int expansion_limit; /* Result expansion limit */
195 int *expansion, const char *key)
199 * If a lookup result cannot be processed due to an expansion limit
201 * As documented for many dict_xxx() implementations, and expansion limit
205 && ++(*expansion) > dict_mongodb->expansion_limit) {
206 msg_warn("%s:%s: expansion limit exceeded for key: '%s'",
229 int *expansion,
251 resultString, expansion, key);
257 resultString, expansion, key);
278 lookup_name, expansion, key)) != 0)
342 int expansion = 0; local
    [all...]
  /src/external/gpl2/texinfo/dist/info/
tilde.c 3 /* tilde.c -- tilde expansion code (~/foo := $HOME/foo).
48 which is the expansion, or a NULL pointer if there is no expansion. */
61 /* Find the start of a tilde expansion in STRING, and return the index of
62 the tilde which starts the expansion. Place the length of the text
93 /* Find the end of a tilde expansion in STRING, and return the index of
131 char *tilde_word, *expansion; local
134 /* Make START point to the tilde which starts the expansion. */
161 expansion = tilde_expand_word (tilde_word);
164 len = strlen (expansion);
237 char *expansion = (*tilde_expansion_failure_hook) (username); local
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/binutils.old/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/gcc/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/gcc.old/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/gdb/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/gdb/dist/readline/readline/
tilde.c 1 /* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
100 which is the expansion, or a NULL pointer if the expansion fails. */
106 which is the expansion, or a NULL pointer if there is no expansion. */
124 /* Find the start of a tilde expansion in STRING, and return the index of
125 the tilde which starts the expansion. Place the length of the text
158 /* Find the end of a tilde expansion in STRING, and return the index of
204 char *tilde_word, *expansion; local
207 /* Make START point to the tilde which starts the expansion. *
338 char *dirname, *expansion, *username; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
cp-demangle.h 119 int expansion; member in struct:d_info
  /src/external/gpl3/gdb.old/dist/readline/readline/
tilde.c 1 /* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
100 which is the expansion, or a NULL pointer if the expansion fails. */
106 which is the expansion, or a NULL pointer if there is no expansion. */
124 /* Find the start of a tilde expansion in STRING, and return the index of
125 the tilde which starts the expansion. Place the length of the text
158 /* Find the end of a tilde expansion in STRING, and return the index of
204 char *tilde_word, *expansion; local
207 /* Make START point to the tilde which starts the expansion. *
338 char *dirname, *expansion, *username; local
    [all...]
  /src/sys/arch/evbarm/gumstix/
gumstix_machdep.c 514 static const char expansion_name[] = "expansion=";
538 /* Configure expansion */
590 char expansion[256], c; local
597 expansion[i++] = c;
598 } while (c != '\0' && i < sizeof(expansion));
599 gxio_config_expansion(expansion);
  /src/usr.sbin/rpc.pcnfsd/
pcnfsd_print.c 1290 static char expansion[512]; local
1294 strlcpy(expansion, alias[i].a_command,
1295 sizeof(expansion));
1296 substitute(expansion, "$FILE", file);
1297 substitute(expansion, "$USER", user);
1298 substitute(expansion, "$HOST", host);
1299 return (expansion);

Completed in 52 milliseconds

1 2 3