Searched defs:system (Results 1 - 25 of 39) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/libc/gen/4.2/
H A Dsystem.c42 system(s) function
/illumos-gate/usr/src/lib/libbc/libc/gen/sys5/
H A Dsystem.c42 system(s) function
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dsystem.c24 * ast library system(3)
27 #define system ______system macro
34 #undef system macro
44 system(const char* cmd) function
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dtypes.h56 int system; /* what the current time is */ member in struct:__anon147
/illumos-gate/usr/src/common/ficl/
H A Dprefix.c56 * need to clean up a dynamically allocated prefix list when the system
73 ficlWord *word = ficlSystemLookup(vm->callback.system, list_name);
141 ficlSystemCompilePrefix(ficlSystem *system) argument
143 ficlDictionary *dictionary = system->dictionary;
H A Dextras.c7 * Ficl interface to system (ANSI)
9 * and feeds it to the ANSI system function...
11 * system del *.*
22 system(FICL_COUNTED_STRING_GET_POINTER(*counted));
30 ficlVmTextOut(vm, "Warning (system): nothing happened\n");
172 ficlSystemCompileExtras(ficlSystem *system) argument
174 ficlDictionary *dictionary = ficlSystemGetDictionary(system);
182 ficlDictionarySetPrimitive(dictionary, "system", ficlPrimitiveSystem,
H A Dsearch.c178 * FORTH-WORDLIST and SET-ORDER. A system shall allow n to
213 * lists or may be dynamically allocated in data space. A system shall
215 * provided as part of the system.
343 ficlSystemCompileSearch(ficlSystem *system) argument
345 ficlDictionary *dictionary = ficlSystemGetDictionary(system);
346 ficlDictionary *environment = ficlSystemGetEnvironment(system);
348 FICL_SYSTEM_ASSERT(system, dictionary);
349 FICL_SYSTEM_ASSERT(system, environment);
H A Dsystem.c6 * $Id: system.c,v 1.2 2010/09/10 10:35:54 asau Exp $
16 * in a multitasking system. Unlike Forth, Ficl's outer interpreter
63 * sequence. This is shared by all virtual machines of that system.
65 * at a time. The system imports a locking function that
79 ficlSystemSetVersion(ficlSystem *system) argument
84 ficlDictionary *environment = ficlSystemGetEnvironment(system);
92 * Binds a global dictionary to the interpreter system.
107 ficlSystem *system; local
120 callback.system = NULL;
129 system
254 ficlSystemDestroy(ficlSystem *system) argument
290 ficlSystemAddParseStep(ficlSystem *system, ficlWord *word) argument
310 ficlSystemAddPrimitiveParseStep(ficlSystem *system, char *name, ficlParseStep pStep) argument
331 ficlSystemCreateVm(ficlSystem *system) argument
354 ficlSystem *system = vm->callback.system; local
380 ficlSystemLookup(ficlSystem *system, char *name) argument
392 ficlSystemGetDictionary(ficlSystem *system) argument
402 ficlSystemGetEnvironment(ficlSystem *system) argument
414 ficlSystemGetLocals(ficlSystem *system) argument
427 ficlSystemLookupLocal(ficlSystem *system, ficlString name) argument
[all...]
H A Dfileaccess.c345 ficlSystemCompileFile(ficlSystem *system) argument
348 FICL_IGNORE(system);
350 ficlDictionary *dictionary = ficlSystemGetDictionary(system);
351 ficlDictionary *environment = ficlSystemGetEnvironment(system);
353 FICL_SYSTEM_ASSERT(system, dictionary);
354 FICL_SYSTEM_ASSERT(system, environment);
H A Dfloat.c404 * Add float words to a system's dictionary.
405 * system -- Pointer to the Ficl sytem to add float words to.
408 ficlSystemCompileFloat(ficlSystem *system) argument
410 ficlDictionary *dictionary = ficlSystemGetDictionary(system);
411 ficlDictionary *environment = ficlSystemGetEnvironment(system);
416 FICL_SYSTEM_ASSERT(system, dictionary);
417 FICL_SYSTEM_ASSERT(system, environment);
470 system->stackSize);
H A Dtools.c94 ficlWord *pStep = ficlSystemLookup(vm->callback.system, "step-break");
300 ficlVmSetBreak(vm, &(vm->callback.system->breakpoint));
325 ficlVmSetBreak(vm, &(vm->callback.system->breakpoint));
340 ficlWord *pStep = ficlSystemLookup(vm->callback.system, "step-break");
353 vm->callback.system->breakpoint.address = vm->ip + 1;
354 vm->callback.system->breakpoint.oldXT = vm->ip[1];
391 FICL_VM_ASSERT(vm, vm->callback.system->breakpoint.address);
392 FICL_VM_ASSERT(vm, vm->callback.system->breakpoint.oldXT);
399 vm->ip = (ficlIp)(vm->callback.system->breakpoint.address);
400 *vm->ip = vm->callback.system
841 ficlSystem *system = vm->callback.system; local
892 ficlSystemCompileTools(ficlSystem *system) argument
[all...]
H A Ddictionary.c56 #define FICL_SAFE_CALLBACK_FROM_SYSTEM(system) \
57 (((system) != NULL) ? &((system)->callback) : NULL)
59 (((dictionary) != NULL) ? (dictionary)->system : NULL)
453 ficlDictionaryCreate(ficlSystem *system, unsigned size) argument
455 return (ficlDictionaryCreateHashed(system, size, 1));
459 ficlDictionaryCreateHashed(ficlSystem *system, unsigned size, argument
469 FICL_SYSTEM_ASSERT(system, dictionary != NULL);
472 dictionary->system = system;
[all...]
H A Dvm.c2054 * Returns the address dictionary for this VM's system
2060 return (vm->callback.system->dictionary);
2413 ficlSystem *system = vm->callback.system; local
2414 ficlDictionary *dictionary = system->dictionary;
2422 FICL_VM_ASSERT(vm, system->interpreterLoop[0]);
2442 ficlVmPushIP(vm, &(system->interpreterLoop[0]));
2471 ficlDictionaryEmpty(system->locals,
2472 system->locals->forthWordlist->size);
2485 ficlDictionaryEmpty(system
[all...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dsystem.c54 static uint_t sys_count = 0; /* number of threads in system() */
90 * It would be better if there were a system call to disinherit
106 if (--sys_count == 0) { /* leaving system() */
108 * There are no remaining threads in system(), so
120 system(const char *cmd) function
164 * This is in order to satisfy the Posix requirement on system():
165 * The system function shall behave as if a child process were
169 * is created, the return value from system() shall be as if
181 * The POSIX spec for system() requires us to block SIGCHLD,
203 * to be ignored for the duration of the system() operatio
[all...]
/illumos-gate/usr/src/cmd/tip/
H A Dtip.c14 * tip [-v] [-speed] system-name
49 char *system = NOSTR; local
66 "usage: tip [-v] [-speed] [system-name]\n");
76 system = argv[1];
97 if (system == NOSTR)
99 for (p = system; *p; p++)
107 if (strlen(system) > sizeof (PNbuf) - 1) {
113 (void) strncpy(PNbuf, system, sizeof (PNbuf) - 1);
114 for (p = system; *p; p++)
118 system
[all...]
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/littleneck/common/
H A Dlittleneck.c273 * told us to do logging, and we found a system failure.
454 * Display the failed parts in the system. This function looks for
516 * Determine whether FRU is CPU module, system
571 char *system = "SYSTEM"; local
588 err = find_child_device(root, system, &system_node);
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dnbns_rq.c264 * NB: system, workgroup are both NB_NAMELEN
268 struct in_addr *targethost, char *system, char *workgroup)
353 strlcpy(system, nrp->ns_name,
359 strlcpy(system, retname, NB_NAMELEN);
267 nbns_getnodestatus(struct nb_ctx *ctx, struct in_addr *targethost, char *system, char *workgroup) argument
/illumos-gate/usr/src/lib/libnsl/dial/
H A Dconn.c72 * conn - place a telephone call to system and login, etc.
82 conn(char *system) argument
87 CDEBUG(4, "conn(%s)\n", system);
89 while ((nf = finds(system, flds, F_MAX)) > 0) {
264 * finds - set system attribute vector
268 * sysnam - system name to find
916 /* This version uses the select system call */
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/cherrystone/common/
H A Dcherrystone.c271 * told us to do logging, and we found a system failure.
435 char *system = "SYSTEM"; local
453 err = find_child_device(root, system, &system_node);
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/daktari/common/
H A Ddaktari.c129 * Display the failed parts in the system. This function looks for
191 * Determine whether FRU is CPU module, system
601 * told us to do logging, and we found a system failure.
633 char *system = "SYSTEM"; local
645 err = find_child_device(root, system, &system_node);
/illumos-gate/usr/src/cmd/power/
H A Dpowerd.c314 logerror("Unable to monitor system's power button.");
321 * Create a new thread to monitor system activity and suspend
322 * system if idle.
325 logerror("powerd starting system activity monitor.");
329 logerror("Unable to create thread to monitor system activity.");
359 * Setup for gathering system's statistic.
544 * Since Oct. 1, 1995, any new system shipped had root
613 int kbd, mouse, system, least_idle, idlecheck_time; local
654 system = last_system_activity(hr_now);
656 least_idle = MIN(system, MI
[all...]
/illumos-gate/usr/src/lib/libpool/common/
H A Dpool_internal.c132 "system",
154 { "system.name", POOL_VALUE_INITIALIZER, PP_STORED, NULL,
156 { "system.ref_id", POOL_VALUE_INITIALIZER,
158 { "system.comment", POOL_VALUE_INITIALIZER, PP_STORED, NULL, NULL },
159 { "system.version", POOL_VALUE_INITIALIZER,
161 { "system.bind-default", POOL_VALUE_INITIALIZER,
163 { "system.allocate-method", POOL_VALUE_INITIALIZER,
165 { "system.poold.log-level", POOL_VALUE_INITIALIZER,
167 { "system.poold.log-location", POOL_VALUE_INITIALIZER,
169 { "system
1416 pool_elem_t *system; local
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/daktari/psvcpolicy/
H A Dpsvcpolicy.c101 gettext("WARNING: Only 1 Power Supply in system. ADD a 2nd Power Supply.\n")
703 psvc_ps_overcurrent_check_policy_0(psvc_opaque_t hdlp, char *system) argument
718 status = psvc_get_attr(hdlp, system,
917 psvc_ps_device_fail_notifier_policy_0(psvc_opaque_t hdlp, char *system) argument
935 status = psvc_get_attr(hdlp, system,
1247 psvc_fan_fault_check_policy_0(psvc_opaque_t hdlp, char *system) argument
1258 status = psvc_get_attr(hdlp, system,
1452 * presence state of the child device if it was not there when the system
1622 * Run this code if PS was just removed from the system. We
1627 * the device has not offically been added into the system
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Duustat.c37 #define KILLMSG "the system administrator has killed job"
208 fprintf(stderr, gettext("Invalid system\n"));
218 fprintf(stderr, gettext("Invalid system\n"));
1109 char * dir; /* system spool directory */
1154 char accno[15], jobid[15], system[15], loginame[15], time[20], dest[15]; local
1170 accno,jobid, size, status, grade, jgrade, system, loginame,
1184 DEBUG(9, "COMPLETE: system = %s\n", system);
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs4_attr.h355 fattr4_system system; member in union:nfs4_attr_u

Completed in 154 milliseconds

12