Searched defs:except (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libgen/common/
H A Dstrecpy.c6 * You may not use this file except in compliance with the License.
39 * strecpy(output, input, except)
44 * Characters in the `except' string will not be expanded.
47 * streadd( output, input, except )
48 * Identical to strecpy() except returns address of null-byte at end
54 strecpy(char *pout, const char *pin, const char *except) argument
56 (void) streadd(pout, pin, except);
62 streadd(char *pout, const char *pin, const char *except) argument
67 if (!isprint(c) && (!except || !strchr(except,
[all...]
/illumos-gate/usr/src/lib/libnsl/dial/
H A Dstrecpy.c6 * (the "License"). You may not use this file except in compliance
38 * strecpy(output, input, except)
43 * Characters in the except string will not be expanded.
47 strecpy(char *pout, char *pin, char *except) argument
54 if (!isprint(c) && (!except || !strchr(except, c))) {
83 if (c == '\\' && (!except || !strchr(except, c)))
/illumos-gate/usr/src/boot/sys/boot/i386/btx/btx/
H A Dbtx.S330 jmp except # Double fault
332 jmp except # Invalid TSS
334 jmp except # Segment not present
336 jmp except # Stack segment fault
338 jmp except # General protection
340 jmp except # Page fault
351 except: cld # String ops inc label
360 jne except.1 # No
362 jmp except.2 # Join common code
363 except
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dgetauditflags.c6 * (the "License"). You may not use this file except in compliance
90 except_t except[2]; local
110 except[i].type = -1;
111 except[i].exception = -1;
184 except[0].type = i;
185 except[0].exception = lists[i].off;
195 except[0].type = COMMON;
196 except[0].exception = lists[COMMON].off;
199 except[1].type = i;
200 except[
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Ddocmd.c588 if (except(name))
767 except(file) function
774 printf("except(%s)\n", file);
/illumos-gate/usr/src/common/ficl/
H A Dfileaccess.c195 int except = FICL_VM_STATUS_OUT_OF_TEXT; local
211 except = ficlVmExecuteString(vm, s);
215 if ((except < 0) && (except != FICL_VM_STATUS_OUT_OF_TEXT))
216 ficlVmThrow(vm, except);
H A Dvm.c252 int except; local
270 except = setjmp(exceptionHandler);
274 if (except) {
277 ficlVmThrow(vm, except);
2340 ficlVmThrow(ficlVm *vm, int except) argument
2343 longjmp(*(vm->exceptionHandler), except);
2416 int except; local
2434 except = setjmp(vmState);
2436 switch (except) {
2450 except
2519 int except; local
[all...]
H A Dprimitives.c343 * x - same as d, except in base-16
2903 int except; local
2948 except = setjmp(vmState);
2950 switch (except) {
2987 ficlStackPushInteger(vm->dataStack, except); /* Push error */
3006 int except; local
3008 except = ficlStackPopInteger(vm->dataStack);
3010 if (except)
3011 ficlVmThrow(vm, except);

Completed in 76 milliseconds