Searched refs:builtin (Results 1 - 25 of 132) sorted by relevance

123456

/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dbuiltins.h1 /* builtins.h -- What a builtin looks like, and where to find them. */
37 /* Flags describing various things about a builtin. */
38 #define BUILTIN_ENABLED 0x1 /* This builtin is enabled. */
40 #define STATIC_BUILTIN 0x4 /* This builtin is not dynamically loaded. */
41 #define SPECIAL_BUILTIN 0x8 /* This is a Posix `special' builtin. */
42 #define ASSIGNMENT_BUILTIN 0x10 /* This builtin takes assignment statements. */
47 struct builtin { struct
58 extern struct builtin static_shell_builtins[];
59 extern struct builtin *shell_builtins;
60 extern struct builtin *current_builti
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/loadables/
H A Dtruefalse.c29 struct builtin true_struct = {
38 struct builtin false_struct = {
H A Dnecho.c3 /* Sample builtin to be dynamically loaded with enable -f and replace an
4 existing builtin. */
25 struct builtin necho_struct = {
H A Dsync.c25 struct builtin sync_struct = {
26 "sync", /* builtin name */
27 sync_builtin, /* function implementing the builtin */
28 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dhello.c1 /* Sample builtin to be dynamically loaded with enable -f and create a new
2 builtin. */
18 /* A builtin `xxx' is normally implemented with an `xxx_builtin' function.
28 If the builtin takes no options, call no_options(list) before doing
29 anything else. If it returns a non-zero value, your builtin should
32 A builtin command returns EXECUTION_SUCCESS for success and
43 /* An array of strings forming the `long' documentation for a builtin xxx,
46 "this is the long doc for the sample hello builtin",
50 /* The standard structure describing a builtin command. bash keeps an array
52 builtin ca
[all...]
H A Dlogname.c44 struct builtin logname_struct = {
H A Dtemplate.c1 /* template - example template for loadable builtin */
49 struct builtin template_struct = {
50 "template", /* builtin name */
51 template_builtin, /* function implementing the builtin */
52 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dtty.c50 /* The standard structure describing a builtin command. bash keeps an array
52 struct builtin tty_struct = {
53 "tty", /* builtin name */
54 tty_builtin, /* function implementing the builtin */
55 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dunlink.c45 struct builtin unlink_struct = {
46 "unlink", /* builtin name */
47 unlink_builtin, /* function implementing the builtin */
48 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dwhoami.c45 struct builtin whoami_struct = {
H A Dprintenv.c2 * printenv -- minimal builtin clone of BSD printenv(1).
64 struct builtin printenv_struct = {
H A Drmdir.c41 /* The standard structure describing a builtin command. bash keeps an array
43 struct builtin rmdir_struct = {
44 "rmdir", /* builtin name */
45 rmdir_builtin, /* function implementing the builtin */
46 BUILTIN_ENABLED, /* initial flags for builtin */
H A Ddirname.c86 /* The standard structure describing a builtin command. bash keeps an array
88 struct builtin dirname_struct = {
89 "dirname", /* builtin name */
90 dirname_builtin, /* function implementing the builtin */
91 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dpush.c88 struct builtin push_struct = {
H A Dbasename.c99 /* The standard structure describing a builtin command. bash keeps an array
101 struct builtin basename_struct = {
102 "basename", /* builtin name */
103 basename_builtin, /* function implementing the builtin */
104 BUILTIN_ENABLED, /* initial flags for builtin */
H A Dcat.c93 struct builtin cat_struct = {
H A Drealpath.c15 * Bash loadable builtin version
112 struct builtin realpath_struct = {
113 "realpath", /* builtin name */
114 realpath_builtin, /* function implementing the builtin */
115 BUILTIN_ENABLED, /* initial flags for builtin */
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dmkbuiltins.c87 /* Non-zero means to produce separate help files for each builtin, named by
88 the builtin name, in `./helpfiles'. */
120 char *name; /* The name of this builtin. */
122 char *shortdoc; /* The short documentation for this builtin. */
124 ARRAY *longdoc; /* The long documentation for this builtin. */
126 int flags; /* Flags for this builtin. */
150 /* The builtin commands that take assignment statements as arguments. */
472 are directives to this program, specifying the name of the builtin, the
620 free_builtin (builtin)
621 BUILTIN_DESC *builtin;
646 register BUILTIN_DESC *builtin; local
749 register BUILTIN_DESC *builtin; local
817 register BUILTIN_DESC *builtin; local
842 register BUILTIN_DESC *builtin; local
862 register BUILTIN_DESC *builtin; local
892 register BUILTIN_DESC *builtin; local
1184 register BUILTIN_DESC *builtin; local
1265 register BUILTIN_DESC *builtin; local
1503 BUILTIN_DESC *builtin; local
[all...]
H A Denable.c46 static void delete_builtin __P((struct builtin *));
207 struct builtin *b;
250 struct builtin **new_builtins, *b, *new_shell_builtins, *old_builtin;
273 new_builtins = (struct builtin **)xmalloc (new * sizeof (struct builtin *));
275 /* For each new builtin in the shared object, find it and its describing
276 structure. If this is overwriting an existing builtin, do so, otherwise
287 b = (struct builtin *)dlsym (handle, struct_name);
306 FASTCOPY ((char *)b, (char *)old_builtin, sizeof (struct builtin));
322 size = (total + 1) * sizeof (struct builtin);
[all...]
H A Dcaller.c109 struct builtin caller_struct = {
/macosx-10.10/bless-103/libbless/Network/
H A DBLIsValidNetworkInterface.c106 CFTypeRef linkStatus, builtin, netbootable; local
109 builtin = IORegistryEntryCreateCFProperty(serv, CFSTR(kIOBuiltin),
112 if (builtin && CFGetTypeID(builtin) == CFBooleanGetTypeID()
113 && CFEqual(builtin, kCFBooleanTrue)) {
116 if (builtin) CFRelease(builtin);
/macosx-10.10/bash-94.1.2/bash-3.2/examples/loadables/perl/
H A Dbperl.c2 * perl builtin
39 struct builtin bperl_struct = {
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dsql.js19 builtin = parserConfig.builtin || {},
112 if (builtin.hasOwnProperty(word)) return "builtin";
272 builtin: set("bool boolean bit blob enum long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision real date datetime year unsigned signed decimal numeric"),
283 builtin: set("bigint numeric bit smallint decimal smallmoney int tinyint money float real char varchar text nchar nvarchar ntext binary varbinary image cursor timestamp hierarchyid uniqueidentifier sql_variant xml table "),
296 builtin: set("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),
312 builtin: set("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),
330 builtin: set("ascii bigint blob boolean counter decimal double float int text timestamp uuid varchar varint"),
343 builtin
[all...]
/macosx-10.10/emacs-93/emacs/lisp/net/
H A Dwebjump.el285 a special \"builtin\" which returns a URL), a symbol (name of a function which
288 If the URL definition is a vector, then a \"builtin\" is used. A builtin has a
296 The first argument to the `simple-query' builtin is a static URL to use if the
299 builtin covers Web sites that have single-string searches with the query
302 The arguments to the `mirrors' builtin are URLs of mirror sites.
366 ((vectorp expr) (webjump-builtin expr name))
376 (defun webjump-builtin (expr name)
378 (error "WebJump URL builtin for \"%s\" empty" name))
379 (let ((builtin (are
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dmodloader.cpp48 static const PluginFunctions builtin ## suffix = { \

Completed in 196 milliseconds

123456