Searched defs:from (Results 26 - 50 of 69) sorted by relevance

123

/osnet-11/usr/src/lib/brand/shared/brand/common/
H A Dbrand_util.c61 * separate link map from the application whose address space we're
63 * the errno value accessible from here is is also private and changing
112 * back from the agent lwps stack.
122 * space. This prevents us from being able to do any emulation of
140 * processes) can be treated differently from "branded aged lwps" (ie,
151 * any emulation are then redirected back to the kernel from the
177 brand_uucopy(const void *from, void *to, size_t size) argument
181 if (__systemcall(&rval, SYS_uucopy + 1024, from, to, size) != 0)
190 brand_uucopystr(const void *from, void *to, size_t size) argument
194 if (__systemcall(&rval, SYS_uucopystr + 1024, from, t
[all...]
/osnet-11/usr/src/cmd/sendmail/src/
H A Dsavemail.c198 "\r\nMessage from %s...\r\n", buf);
251 char from[TOBUFSIZE]; local
253 if (sm_strlcpy(from, e->e_from.q_paddr,
254 sizeof(from)) >= sizeof(from))
261 (void) pruneroute(from);
263 (void) sendtolist(from, NULLADDR,
681 /* fake up an address header for the from person */
822 expand("from \201_", buf, sizeof(buf), e->e_parent);
921 " (expanded from
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Dstr.c156 str_append_till(register STR *str, register char *from, register int delim, char *keeplist) argument
161 if (!from)
163 len = strlen(from);
168 for (; *from; from++,to++) {
169 if (*from == '\\' && from[1] && delim != '\\') {
171 if (from[1] == delim || from[1] == '\\')
172 from
[all...]
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_dup.c388 * Remove an item from a page.
402 u_int8_t *from; local
428 from = (u_int8_t *)pagep + HOFFSET(pagep);
429 memmove(from + nbytes, from, pagep->inp[indx] - HOFFSET(pagep));
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmtrace.c39 static char* trstrcpy(char* to, const char* from, int endc) argument
41 static char* trstrcpy(to, from, endc)
43 const char* from;
48 n = strlen(from);
49 memcpy(to,from,n);
104 Vmalloc_t* vm; /* region call was made from */
/osnet-11/usr/src/lib/nametoaddr/straddr/common/
H A Dstraddr.c50 * from a "host" file and one gotten from a "services" file.
117 * Get the address from the services file
166 * _netdir_getbyaddr() takes an address (hopefully obtained from
284 char *from; /* traverses the string to be converted */ local
296 from = netbufp->buf;
299 if (*from == '\\') {
303 if (*from == '\n' || !isprint((unsigned char)*from)) {
304 (void) sprintf(to, "\\%.3o", *from
330 char *from; /* traverses the universal address */ local
[all...]
/osnet-11/usr/src/lib/libsctp/common/
H A Dsctp.c258 sctp_recvmsg(int s, void *msg, size_t len, struct sockaddr *from, argument
267 hdr.msg_name = from;
412 * in the iov vector. The sender of the message is stored in from. The
417 sctp_recvv(int sd, const struct iovec *iov, int iovlen, struct sockaddr *from, argument
428 hdr.msg_name = from;
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_headers.c272 sip_dup_header(_sip_header_t *from) argument
277 hdr_size = from->sip_hdr_end - from->sip_hdr_start;
281 if (from->sip_header_state == SIP_HEADER_DELETED_VAL) {
283 sip_copy_values(to->sip_hdr_start, from);
285 (void) memcpy(to->sip_hdr_start, from->sip_hdr_start, hdr_size);
288 to->sip_header_functions = from->sip_header_functions;
370 * Copy all "header_name" headers from _old_msg to _new_msg
399 * Copy header_name from _old_msg to _new_msg with extra_parm.
425 * Copy all headers from old_ms
[all...]
/osnet-11/usr/src/lib/liblgrp/common/
H A Dlgrp.c263 * Remove given lgroup from parent lgroup(s)
293 * Prune any CPUs not in given array from specified lgroup
319 * Remove all CPUs from lgroup
327 * Remove any CPUs from lgroup not in given list of CPUs
392 * Remove any CPUs not in caller's pset from lgroup hierarchy.
408 * Change lgroup bitmask from just reflecting lgroups overlapping
421 * Remove empty lgroups from lgroup hierarchy, removing it from its
548 * Change lgroup bitmask from just reflecting lgroups
606 * Get view of lgroup hierarchy from snapsho
1162 lgrp_latency(lgrp_id_t from, lgrp_id_t to) argument
1185 lgrp_latency_cookie(lgrp_cookie_t cookie, lgrp_id_t from, lgrp_id_t to, lgrp_lat_between_t between) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/efiemu/runtime/
H A Defiemu.c137 efiemu_memcpy (void *to, void *from, int count) argument
141 ((grub_uint8_t *) to)[i] = ((grub_uint8_t *) from)[i];
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Ddes.c29 * PUB 46-2 from December 1993.
75 * * To recover the orginal plaintext from ciphertext use: *
433 * Please note: The data in 'from' and 'to' is already rotated one bit to
436 #define DES_ROUND(from, to, work, subkey) \
437 work = from ^ *subkey++; \
442 work = ((from << 28) | (from >> 4)) ^ *subkey++; \
449 * Macros to convert 8 bytes from/to 32bit words.
464 #define des_ecb_encrypt(ctx, from, to) des_ecb_crypt(ctx, from, t
615 des_ecb_crypt(struct _des_ctx *ctx, const byte * from, byte * to, int mode) argument
703 tripledes_ecb_crypt(struct _tripledes_ctx *ctx, const byte * from, byte * to, int mode) argument
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Diconv.c104 char *from; local
112 from = process_conv_modifier_and_special_names(fromcode, &flag);
113 if (from == NULL) {
120 if (from != fromcode)
121 free(from);
127 free_names(to, tocode, from, fromcode);
137 free_names(to, tocode, from, fromcode);
143 cd->_conv = iconv_open_all(to, from, ipath, flag, string_based);
146 free_names(to, tocode, from, fromcode);
155 to, from, ipat
291 iconv_open_all(char *to, char *from, char *ipath, int flag, int string_based) argument
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/stdio/
H A Dvfscanf.c123 static int from; /* token type we've come from */ variable
127 * Convert formatted input from given input.
140 long unsigned number; /* return value from getnumber */
145 from = 'X';
150 if (from == 'X') {
165 switch (from) {
170 from = 'E';
174 from = 'X';
180 switch (from) {
[all...]
/osnet-11/usr/src/lib/libscf/common/
H A Dnotify_params.c89 { "from-uninitialized", SCF_TRANS(SCF_STATE_UNINIT, 0) },
91 { "from-maintenance", SCF_TRANS(SCF_STATE_MAINT, 0) },
93 { "from-offline", SCF_TRANS(SCF_STATE_OFFLINE, 0) },
95 { "from-disabled", SCF_TRANS(SCF_STATE_DISABLED, 0) },
97 { "from-online", SCF_TRANS(SCF_STATE_ONLINE, 0) },
99 { "from-degraded", SCF_TRANS(SCF_STATE_DEGRADED, 0) },
188 * Get the pg from the running snapshot of the instance (composed or not)
724 * if this is output from
937 * Populate scf_values_t structure with values from prop
1024 * Add values from propert
1817 char *from; /* from state */ local
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid.c30 * derived from devinfo nodes. These routines do some of the
149 * If there is a DI_SLOTPROP of the form SlotX (ie set up from
151 * DI_PHYSPROP (which is set up from the PCIe slotcap reg).
291 * We must have a reg prop and from it we extract the bus #,
382 did_did_link_set(did_t *from, did_t *to) argument
384 assert(from != NULL && to != NULL);
385 from->dp_link = to;
389 did_did_chain_set(did_t *from, did_t *to) argument
391 assert(from != NULL && to != NULL);
392 from
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/platform-mem/common/
H A Dmem.c95 topo_mod_dprintf(mod, "failed to get dimms from the PRI/MD\n");
199 uint64_t from, to; local
203 for (from = 1; from <= MEM_PHYS_ADDRESS_LIMIT; from <<= 1) {
204 if ((from & mask) == 0) {
205 if ((from & paddr) != 0)
215 * removes from the physical address those bits which select a DIMM or set
224 uint64_t from, to; local
226 from
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Ddes.c25 * PUB 46-2 from December 1993.
71 * * To recover the orginal plaintext from ciphertext use: *
439 * Please note: The data in 'from' and 'to' is already rotated one bit to
442 #define DES_ROUND(from, to, work, subkey) \
443 work = from ^ *subkey++; \
448 work = ((from << 28) | (from >> 4)) ^ *subkey++; \
455 * Macros to convert 8 bytes from/to 32bit words.
470 #define des_ecb_encrypt(ctx, from, to) des_ecb_crypt(ctx, from, t
621 des_ecb_crypt(struct _des_ctx *ctx, const byte * from, byte * to, int mode) argument
737 tripledes_ecb_crypt(struct _tripledes_ctx *ctx, const byte * from, byte * to, int mode) argument
[all...]
/osnet-11/usr/src/cmd/sendmail/aux/
H A Dmail.local.c128 char *from; local
134 from = NULL;
154 if (from != NULL) {
158 from = optarg;
193 * If from not specified, use the name from getlogin() if the
194 * uid matches, otherwise, use the name from the password file
198 if (!from && (!(from = getlogin()) ||
199 !(pw = getpwnam(from)) || p
[all...]
H A Dvacation.c42 * a -f flag from. Otherwise, the user must be careful
46 * the user to collect the vacation message from.
111 char *from; local
241 from = sender;
245 /* read message from standard input (just from line) */
246 from = getfrom(&shortfrom);
261 printf("Sending %s to %s\n", buf, from);
264 sendmessage(buf, from, myname);
361 * GETFROM -- read message from standar
[all...]
/osnet-11/usr/src/cmd/sendmail/db/hash/
H A Dhash_page.c15 * This code is derived from software contributed to Berkeley by
31 * may be used to endorse or promote products derived from this software
563 u_int8_t *from; local
569 from = (u_int8_t *)p + HOFFSET(p);
570 memmove(from - newbytes, from, movebytes);
834 * Since we just deleted a pair from the master page, anything
881 * removing from the entry. Normally, we can simply substract
882 * the number of bytes we are replacing (dbt->dlen) from the
1003 * there. This is called on two different occasions. On one (from replpai
[all...]
/osnet-11/usr/src/cmd/hal/hald/
H A Ddevice.c185 /** Merge all properties from source where the key starts with
190 * @param source Device to retrieve properties from
859 hal_device_copy_property (HalDevice *from_device, const char *from, HalDevice *to_device, const char *to) argument
865 if (hal_device_has_property (from_device, from)) {
866 switch (hal_device_property_get_type (from_device, from)) {
869 to_device, to, hal_device_property_get_string (from_device, from));
873 to_device, to, hal_device_property_get_int (from_device, from));
877 to_device, to, hal_device_property_get_uint64 (from_device, from));
881 to_device, to, hal_device_property_get_bool (from_device, from));
885 to_device, to, hal_device_property_get_double (from_device, from));
[all...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Diconv.c84 Map_t from; member in struct:Conv_s
244 if ((cc->from.index = _win_codeset(f)) < 0)
249 error(DEBUG_TRACE, "AHA#%d _win_iconv_open f=0x%04x t=0x%04x\n", __LINE__, cc->from.index, cc->to.index);
272 error(DEBUG_TRACE, "AHA#%d _win_iconv from=0x%04x to=0x%04x\n", __LINE__, cc->from.index, cc->to.index);
274 if (cc->from.index == cc->to.index)
289 * from => ucs-2
294 if ((tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, *tn)) && tz <= *tn)
311 while (!(tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)fz, (LPWSTR)*tb, 0)))
335 if (cc->from
[all...]
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Ddoupdate.c179 * Clear from the start of the current row to bottom of screen.
295 * Delete some characters from the terminal for this region
384 int from; local
386 for (from = 1, to = 1; from < nRegions; ) {
387 if ((regions[from].type == REGION_COMMON) &&
388 (regions[from].size < JUMP_SIZE)) {
392 regions[to - 1].size += regions[from].size;
396 if (++from < nRegions)
397 regions[to - 1].size += regions[from
613 lines_replace(int from, int to_1) argument
624 lines_delete(int from, int to_1) argument
661 lines_insert(int from, int to_1) argument
[all...]
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_send.c40 * may be used to endorse or promote products derived from this software
895 struct sockaddr_storage from; local
1042 fromlen = sizeof(from);
1044 (struct sockaddr *)&from, &fromlen);
1064 * response from old query, ignore it.
1075 !res_ourserver_p(statp, (struct sockaddr *)&from)) {
1077 * response from wrong server? ignore it.
1124 /* don't retry if called from dig */
/osnet-11/usr/src/lib/libdhcputil/common/
H A Ddhcp_inittab.c71 * use them as indexes into the array returned from parse_entry().
375 * remove any whitespace from the fields.
1021 * validate_servervalue(): validate the DHCP option value received from the
1122 "for code %d from server", result, ie->ds_code);
1474 * decode_number(): decodes a sequence of numbers from binary into ascii;
1481 * const uint8_t *: where to decode the numbers from
1488 uint8_t granularity, const uint8_t *from, char *to, int *ierrnop)
1503 for (; n_entries != 0; n_entries--, from += size) {
1508 to += sprintf(to, is_signed ? "%d" : "%u", *from);
1512 (void) memcpy(&uint16, from,
1487 decode_number(uint8_t n_entries, uint8_t size, boolean_t is_signed, uint8_t granularity, const uint8_t *from, char *to, int *ierrnop) argument
1565 encode_number(uint8_t n_entries, uint8_t size, boolean_t is_signed, uint8_t granularity, const char *from, uint8_t *to, int *ierrnop) argument
[all...]

Completed in 535 milliseconds

123