Searched refs:source (Results 1 - 25 of 248) sorted by relevance

12345678910

/illumos-gate/usr/src/cmd/make/lib/mksh/
H A Dread.cc45 * get_next_block_fn(source)
48 * by popping one source bVSIZEOFlock of the stack of Sources
52 * The new source block to read from
55 * source The old source block
62 get_next_block_fn(register Source source) argument
70 if (source == NULL) {
73 if ((source->fd < 0) ||
74 ((source->bytes_left_in_file <= 0) &&
75 (source
[all...]
/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Derrsource.c35 * Set source string.
44 Err.source = str;
H A Derrusage.c52 if (Err.vsource && Err.source) {
53 (void) fputs(Err.source, stderr);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_misc.h35 (krb5_principal target, krb5_principal source);
36 /* requires target, source, and source->realm are allocated
37 effects Copies source->realm into target->realm.
H A Dasn1_misc.c30 asn1_error_code asn1_krb5_realm_copy(krb5_principal target, krb5_principal source) argument
32 target->realm.length = source->realm.length;
35 memcpy(target->realm.data,source->realm.data, /* to client */
/illumos-gate/usr/src/cmd/make/include/mksh/
H A Dread.h31 extern Source get_next_block_fn(register Source source);
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Dpro_incl.h52 /* The target address is given: the place in the source integer
56 #define WRITE_UNALIGNED(dbg,dest,source, srclength,len_out) \
59 ((char *)source) +srclength-len_out, \
66 #define WRITE_UNALIGNED(dbg,dest,source, srclength,len_out) \
69 ((char *)source) , \
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumerEvent.java46 * Creates a consumer event with the given source {@link Consumer}
49 * @param source the {@link Consumer} that is the source of the
54 ConsumerEvent(Object source, long timeNanos) argument
56 super(source);
H A DDataEvent.java56 DataEvent(Object source, ProbeData generatedData) argument
58 super(source);
113 buf.append("[source = ");
H A DDropEvent.java54 DropEvent(Object source, Drop dataDrop) argument
56 super(source);
110 buf.append("[source = ");
H A DErrorEvent.java51 * @param source the {@link Consumer} that is the source of this event
56 ErrorEvent(Object source, Error dtraceError) argument
58 super(source);
112 buf.append("[source = ");
H A DProcessEvent.java53 * @param source the {@link Consumer} that is the source of this event
58 ProcessEvent(Object source, ProcessState p) argument
60 super(source);
114 buf.append("[source = ");
/illumos-gate/usr/src/cmd/make/bin/
H A Dread.cc60 static void parse_makefile(register Name true_makefile_name, register Source source);
61 static Source push_macro_value(register Source bp, register wchar_t *buffer, int size, register Source source);
103 register Source source = ALLOC(Source); local
126 source->inp_buf =
127 source->inp_buf_ptr =
128 source->inp_buf_end = NULL;
129 source->error_converting = false;
201 source->string.free_after_use = false;
202 source->previous = NULL;
203 source
458 parse_makefile(register Name true_makefile_name, register Source source) argument
2026 push_macro_value(register Source bp, register wchar_t *buffer, int size, register Source source) argument
[all...]
H A Dimplicit.cc74 * It then scans the list to find the first possible source file that
76 * (target name less target suffix) and the source suffix and checking
116 register Name source; local
157 * This will make finding the synthesized source possible.
180 /* Build the synthesized source name. */
196 source = getname_fn(sourcename, FIND_LENGTH, false, &name_found);
198 * If the source file is not registered as
199 * a file, this source suffix did not match.
202 (void) exists(source);
204 if (!source
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Doid.h42 OM_uint32 __OID_copy_desc(gss_OID dest, const gss_OID_desc * const source);
43 OM_uint32 __OID_copy(gss_OID *dest, const gss_OID_desc * const source);
45 OM_uint32 __OID_copy_set(gss_OID_set *dest, gss_OID_set source);
H A Doid.c73 __OID_copy_desc(gss_OID dest, const gss_OID_desc * const source) argument
77 dest->elements = (void *)New(char, source->length);
82 dest->length = source->length;
85 memcpy(dest->elements, source->elements, dest->length);
92 __OID_copy(gss_OID *dest, const gss_OID_desc * const source) argument
105 if (__OID_copy_desc(oid, source) != DH_SUCCESS) {
131 __OID_copy_set(gss_OID_set *dest, gss_OID_set source) argument
145 set->elements = New(gss_OID_desc, source->count);
151 set->count = source->count;
153 /* Add each member of the source se
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 const Bytef *source;
33 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4remoteudp.ksh58 $getaddr | read source dest
70 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
77 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
H A Dtst.ipv4remotetcp.ksh62 $getaddr $tcpport | read source dest
88 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
95 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
101 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
108 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source"/
H A Dtst.ipv4remoteicmp.ksh53 $getaddr | read source dest
61 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
72 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Ddsl_prop.h86 void dsl_props_set_sync_impl(struct dsl_dataset *ds, zprop_source_t source,
89 zprop_source_t source, int intsz, int numints, const void *value,
91 int dsl_props_set(const char *dsname, zprop_source_t source, nvlist_t *nvl);
93 zprop_source_t source, uint64_t value);
95 zprop_source_t source, const char *value);
97 zprop_source_t source);
100 zprop_source_t source, uint64_t value, uint64_t *newvalp);
/illumos-gate/usr/src/cmd/mv/
H A Dmv.c117 static avl_tree_t *stree = NULL; /* source file inode search tree */
332 * If there is more than a source and target,
392 lnkfil(char *source, char *target) argument
407 len = strlen(target) + strlen(dname(source)) + 4;
411 "to %s %s\n"), cmd, cmd, source);
415 target, dname(source));
458 * Create a symbolic link to the source.
461 if (symlink(source, target) < 0) {
475 switch (chkfiles(source, &target)) {
482 * Make sure source fil
518 cpymve(char *source, char *target) argument
992 chkfiles(char *source, char **to) argument
1194 chk_different(char *source, char *target) argument
1466 copydir(char *source, char *target) argument
1632 copyattributes(char *source, char *target) argument
1871 copy_sysattr(char *source, char *target) argument
2081 open_attrdirp(char *source) argument
2128 traverse_attrfile(struct dirent *dp, char *source, char *target, int first) argument
[all...]
/illumos-gate/usr/src/uts/common/io/ib/clients/rds/
H A Dreadme.txt28 Some of the RDS source files in this directory contain code that is licensed
38 * COPYING in the main directory of this source tree, or the
41 * Redistribution and use in source and binary forms, with or
45 * - Redistributions of source code must retain the above
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dsdssc_bind.c73 just_dup_string(const char *source, char **dest) argument
75 *dest = strdup(source);
80 free_dup_string(char *source) argument
82 free(source);

Completed in 135 milliseconds

12345678910