Searched refs:buf (Results 376 - 400 of 1692) sorted by relevance

<<11121314151617181920>>

/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dunix_io.c185 * @buf:
192 static s64 ntfs_device_unix_io_read(struct ntfs_device *dev, void *buf, argument
195 return read(DEV_FD(dev), buf, count);
201 * @buf:
208 static s64 ntfs_device_unix_io_write(struct ntfs_device *dev, const void *buf, argument
216 return write(DEV_FD(dev), buf, count);
222 * @buf:
230 static s64 ntfs_device_unix_io_pread(struct ntfs_device *dev, void *buf, argument
233 return pread(DEV_FD(dev), buf, count, offset);
239 * @buf
247 ntfs_device_unix_io_pwrite(struct ntfs_device *dev, const void *buf, s64 count, s64 offset) argument
286 ntfs_device_unix_io_stat(struct ntfs_device *dev, struct stat *buf) argument
[all...]
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dguess.d43 self->buf = arg1;
49 key = copyin(self->buf, arg0);
51 self->buf = 0;
103 self->buf = arg1;
111 name = stringof(copyin(self->buf, arg0 - 1));
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Misc/
H A Dguess.d43 self->buf = arg1;
49 key = copyin(self->buf, arg0);
51 self->buf = 0;
103 self->buf = arg1;
111 name = stringof(copyin(self->buf, arg0 - 1));
/osnet-11/usr/src/cmd/ldap/common/
H A Dldapmodrdn.c41 char *myname, *entrydn, *rdn, buf[ 4096 ]; local
129 (fgets(buf, sizeof(buf), ldaptool_fp) != NULL) )
145 if ( (strlen(buf) == 1) && (ldaptool_fp == stdin) )
148 buf[ strlen( buf ) - 1 ] = '\0'; /* remove nl */
149 if ( *buf != '\0' ) /* blank lines optional, skip */
153 if (( L_newParent = strdup( buf )) == NULL )
168 if (( rdn = strdup( buf )) == NULL )
178 if (( entrydn = strdup( buf ))
[all...]
/osnet-11/usr/src/lib/nsswitch/compat/common/
H A Dgetspent.c101 struct spwd *sp = (struct spwd *)argp->buf.result;
113 if (namelen + passlen > argp->buf.buflen) {
116 if (sp->sp_namp != argp->buf.buffer) {
117 (void) memmove(argp->buf.buffer,
119 sp->sp_namp = argp->buf.buffer;
121 (void) memcpy(argp->buf.buffer + namelen,
154 argp->buf.result = NULL;
159 n = snprintf(argp->buf.buffer, argp->buf.buflen,
170 if (n > argp->buf
[all...]
/osnet-11/usr/src/lib/nsswitch/nis/common/
H A Dgetspent.c111 spwd = (struct spwd *)argp->buf.result;
145 if ((p = memchr(argp->buf.buffer, ':',
146 argp->buf.buflen)) == NULL)
154 argp->returnval = argp->buf.buffer;
155 argp->returnlen = strlen(argp->buf.buffer);
180 spwd = (struct spwd *)argp->buf.result;
214 if ((p = memchr(argp->buf.buffer, ':',
215 argp->buf.buflen)) == NULL)
225 argp->returnval = argp->buf.buffer;
226 argp->returnlen = strlen(argp->buf
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_error.c71 char buf[40]; local
73 (void) sprintf(buf, "%lu/%lu", MD_MIN2SET(mnum),
75 return (Strdup(buf));
92 char buf[40]; local
94 (void) sprintf(buf, "%lu.%lu", meta_getmajor(dev),
96 return (Strdup(buf));
109 char buf[40]; local
111 (void) sprintf(buf, "%u/%u", HSP_SET(hsp), HSP_ID(hsp));
112 return (Strdup(buf));
129 char buf[4 local
657 void_to_str( md_error_t *ep, char *buf, size_t size ) argument
910 sys_to_str( md_error_t *ep, char *buf, size_t size ) argument
936 rpc_to_str( md_error_t *ep, char *buf, size_t size ) argument
954 dev_to_str( md_error_t *ep, char *buf, size_t size ) argument
1084 overlap_to_str( md_error_t *ep, char *buf, size_t size ) argument
1122 use_to_str( md_error_t *ep, char *buf, size_t size ) argument
1201 md_to_str( md_error_t *ep, char *buf, size_t size ) argument
1479 comp_to_str( md_error_t *ep, char *buf, size_t size ) argument
1533 hsp_to_str( md_error_t *ep, char *buf, size_t size ) argument
1589 hs_to_str( md_error_t *ep, char *buf, size_t size ) argument
1629 mddb_to_str( md_error_t *ep, char *buf, size_t size ) argument
1754 ds_to_str( md_error_t *ep, char *buf, size_t size ) argument
2053 static char buf[BUFSIZ]; local
2104 char buf[100]; local
2125 static char buf[BUFSIZ]; local
[all...]
H A Dmeta_systemfile.c66 char buf[MDDB_BOOTLIST_MAX_LEN]; local
125 while ((fp != NULL) && (fgets(buf, sizeof (buf), fp) != NULL)) {
126 if ((doroot) && (strcmp(buf, BEGROOTSTR) == 0)) {
129 (void) printf("%s", buf);
133 if (strcmp(buf, ENDROOTSTR) == 0)
136 (void) printf("%s", buf);
139 if ((domddb) && (strcmp(buf, BEGMDDBSTR) == 0)) {
142 (void) printf("%s", buf);
146 if (strcmp(buf, ENDMDDBST
347 char buf[1024]; local
[all...]
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_subr.c40 char buf[512], *bufp = buf; local
43 n = vsnprintf(buf, sizeof (buf), fmt, ap);
45 if (n >= sizeof (buf)) {
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DCSAAdvert.java62 StringBuffer buf = new StringBuffer();
64 byte[] urlBytes = hdr.getString(buf, dis);
68 URL = new ServiceURL(buf.toString(), ServiceURL.LIFETIME_NONE);
95 byte[] scopeBytes = hdr.getString(buf, dis);
98 hdr.parseCommaSeparatedListIn(buf.toString(), true);
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dmd4.c65 byte buf[64]; member in struct:__anon519
203 transform( hd, hd->buf );
214 hd->buf[hd->count++] = *inbuf++;
230 hd->buf[hd->count++] = *inbuf++;
266 hd->buf[hd->count++] = 0x80; /* pad */
268 hd->buf[hd->count++] = 0; /* pad */
272 hd->buf[hd->count++] = 0x80; /* pad character */
274 hd->buf[hd->count++] = 0;
276 memset(hd->buf, 0, 56 ); /* fill next block with zeroes */
279 hd->buf[5
[all...]
H A Dcrc.c134 const char *buf = buf_arg; local
138 crc = crc32_table[(crc ^ buf[n]) & 0xff] ^ (crc >> 8);
146 byte buf[4]; member in struct:__anon500
172 return ctx->buf;
180 ctx->buf[0] = (ctx->CRC >> 24) & 0xFF;
181 ctx->buf[1] = (ctx->CRC >> 16) & 0xFF;
182 ctx->buf[2] = (ctx->CRC >> 8) & 0xFF;
183 ctx->buf[3] = (ctx->CRC ) & 0xFF;
198 ctx->buf[0] = (ctx->CRC >> 24) & 0xFF;
199 ctx->buf[
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dmd4.c65 byte buf[64]; member in struct:__anon565
203 transform( hd, hd->buf );
214 hd->buf[hd->count++] = *inbuf++;
230 hd->buf[hd->count++] = *inbuf++;
266 hd->buf[hd->count++] = 0x80; /* pad */
268 hd->buf[hd->count++] = 0; /* pad */
272 hd->buf[hd->count++] = 0x80; /* pad character */
274 hd->buf[hd->count++] = 0;
276 memset(hd->buf, 0, 56 ); /* fill next block with zeroes */
279 hd->buf[5
[all...]
H A Dcrc.c134 const char *buf = buf_arg; local
138 crc = crc32_table[(crc ^ buf[n]) & 0xff] ^ (crc >> 8);
146 byte buf[4]; member in struct:__anon551
172 return ctx->buf;
180 ctx->buf[0] = (ctx->CRC >> 24) & 0xFF;
181 ctx->buf[1] = (ctx->CRC >> 16) & 0xFF;
182 ctx->buf[2] = (ctx->CRC >> 8) & 0xFF;
183 ctx->buf[3] = (ctx->CRC ) & 0xFF;
198 ctx->buf[0] = (ctx->CRC >> 24) & 0xFF;
199 ctx->buf[
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dcrypto.c81 char *buf = NULL; local
107 for (;; grub_free (buf))
112 buf = grub_file_getline (file);
114 if (! buf)
117 name = buf;
/osnet-11/usr/src/lib/libast/common/disc/
H A Dsfdctee.c40 static ssize_t teewrite(Sfio_t* f, const Void_t* buf, size_t size, Sfdisc_t* disc) argument
42 static ssize_t teewrite(f,buf,size,disc)
44 Void_t* buf; /* the buffer of data being output */
52 if(te->status == 0 && sfwrite(te->tee,buf,size) != (ssize_t)size)
56 return sfwr(f,buf,size,disc);
/osnet-11/usr/src/lib/libumem/common/
H A Dvmem_mmap.c78 void *buf; local
90 buf = mmap((void *)CHUNKSIZE, size, FREE_PROT, FREE_FLAGS | MAP_ALIGN,
93 if (buf != MAP_FAILED) {
94 ret = _vmem_extend_alloc(src, buf, size, size, vmflags);
98 (void) munmap(buf, size);
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/
H A Dprobe.c66 uint8_t buf[PED_SECTOR_SIZE_DEFAULT]; local
74 mdb = (HfsMasterDirectoryBlock *) buf;
78 || (!ped_geometry_read (geom, buf, 2, 1))
91 || !ped_geometry_read (geom_ret, buf, search, 1))
105 uint8_t buf[PED_SECTOR_SIZE_DEFAULT]; local
115 mdb = (HfsMasterDirectoryBlock *) buf;
117 if (!ped_geometry_read (geom, buf, 2, 1)
128 vh = (HfsPVolumeHeader *) buf;
131 || !ped_geometry_read (geom, buf, 2, 1)
152 || !ped_geometry_read (geom_ret, buf, searc
196 uint8_t buf[PED_SECTOR_SIZE_DEFAULT]; local
[all...]
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdlether.c158 dladm_ether_autoneg2str(char *buf, size_t buflen, dladm_ether_info_t *eattr, argument
163 (void) strlcpy(buf, (autoneg ? "yes" : "no"), buflen);
164 return (buf);
173 dladm_ether_pause2str(char *buf, size_t buflen, dladm_ether_info_t *eattr, argument
180 (void) strlcpy(buf, "bi", buflen);
182 (void) strlcpy(buf, "tx", buflen);
184 (void) strlcpy(buf, "none", buflen);
185 return (buf);
198 dladm_ether_spdx2str(char *buf, size_t buflen, dladm_ether_info_t *eattr, argument
235 (void) strncat(buf, ",", bufle
[all...]
/osnet-11/usr/src/lib/libipmi/common/
H A Dipmi_fru.c52 ipmi_fru_read(ipmi_handle_t *ihp, ipmi_sdr_fru_locator_t *fru_loc, char **buf) argument
115 *buf = tmp;
121 ipmi_fru_prod_info_t *buf)
145 ipmi_decode_string((typelen >> 6), len, tmp+1, buf->ifpi_manuf_name);
151 buf->ifpi_product_name);
156 ipmi_decode_string((typelen >> 6), len, tmp+1, buf->ifpi_part_number);
162 buf->ifpi_product_version);
168 buf->ifpi_product_serial);
173 ipmi_decode_string((typelen >> 6), len, tmp+1, buf->ifpi_asset_tag);
185 ipmi_fru_brd_info_t *buf)
120 ipmi_fru_parse_product(ipmi_handle_t *ihp, char *fru_area, ipmi_fru_prod_info_t *buf) argument
184 ipmi_fru_parse_board(ipmi_handle_t *ihp, char *fru_area, ipmi_fru_brd_info_t *buf) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_k_decode.c62 asn1_get_eoc_tag (asn1buf *buf) argument
67 retval = asn1_get_tag_2(buf, &t);
107 retval = asn1_get_tag_2(buf, &t1); \
230 retval = asn1_get_sequence(buf, &length, &seqindef); \
232 retval = asn1buf_imbed(&subbuf, buf, length, seqindef); \
245 retval = asn1_get_sequence(buf, &length, &seqindef); \
247 retval = asn1buf_imbed(&subbuf, buf, length, seqindef); \
252 retval = asn1buf_sync(buf, &subbuf, asn1class, tagnum, \
268 retval = asn1_get_tag_2(buf, &t); \
277 retval = asn1buf_imbed(&subbuf, buf, lengt
356 end_sequence_of_no_tagvars_helper(asn1buf *buf, asn1buf *seqbufp, int seqofindef) argument
398 asn1_decode_kerberos_time(asn1buf *buf, krb5_timestamp *val) argument
455 asn1_decode_msgtype(asn1buf *buf, krb5_msgtype *val) argument
470 asn1_decode_realm(asn1buf *buf, krb5_principal *val) argument
478 asn1_decode_principal_name(asn1buf *buf, krb5_principal *val) argument
521 asn1_decode_checksum(asn1buf *buf, krb5_checksum *val) argument
538 asn1_decode_checksum_ptr(asn1buf *buf, krb5_checksum **valptr) argument
544 asn1_decode_encryption_key(asn1buf *buf, krb5_keyblock *val) argument
561 asn1_decode_encryption_key_ptr(asn1buf *buf, krb5_keyblock **valptr) argument
567 asn1_decode_encrypted_data(asn1buf *buf, krb5_enc_data *val) argument
586 asn1_decode_krb5_flags(asn1buf *buf, krb5_flags *val) argument
628 asn1_decode_ticket_flags(asn1buf *buf, krb5_flags *val) argument
632 asn1_decode_ap_options(asn1buf *buf, krb5_flags *val) argument
636 asn1_decode_kdc_options(asn1buf *buf, krb5_flags *val) argument
640 asn1_decode_transited_encoding(asn1buf *buf, krb5_transited *val) argument
657 asn1_decode_enc_kdc_rep_part(asn1buf *buf, krb5_enc_kdc_rep_part *val) argument
699 asn1_decode_ticket(asn1buf *buf, krb5_ticket *val) argument
732 asn1_decode_ticket_ptr(asn1buf *buf, krb5_ticket **valptr) argument
738 asn1_decode_kdc_req(asn1buf *buf, krb5_kdc_req *val) argument
760 asn1_decode_kdc_req_body(asn1buf *buf, krb5_kdc_req *val) argument
831 asn1_decode_krb_safe_body(asn1buf *buf, krb5_safe *val) argument
861 asn1_decode_host_address(asn1buf *buf, krb5_address *val) argument
879 asn1_decode_host_address_ptr(asn1buf *buf, krb5_address **valptr) argument
885 asn1_decode_kdc_rep(asn1buf *buf, krb5_kdc_rep *val) argument
996 asn1_decode_authorization_data(asn1buf *buf, krb5_authdata ***val) argument
1003 asn1_decode_authdata_elt(asn1buf *buf, krb5_authdata *val) argument
1021 asn1_peek_authdata_elt(asn1buf *buf, krb5_authdatatype *val) argument
1035 asn1_peek_authorization_data(asn1buf *buf, unsigned int *num, krb5_authdatatype **val) argument
1062 asn1_decode_authdata_elt_ptr(asn1buf *buf, krb5_authdata **valptr) argument
1068 asn1_decode_host_addresses(asn1buf *buf, krb5_address ***val) argument
1075 asn1_decode_sequence_of_ticket(asn1buf *buf, krb5_ticket ***val) argument
1091 asn1_decode_sequence_of_krb_cred_info(asn1buf *buf, krb5_cred_info ***val) argument
1098 asn1_decode_krb_cred_info(asn1buf *buf, krb5_cred_info *val) argument
1138 asn1_decode_krb_cred_info_ptr(asn1buf *buf, krb5_cred_info **valptr) argument
1151 asn1_decode_sequence_of_pa_data(asn1buf *buf, krb5_pa_data ***val) argument
1157 asn1_decode_pa_data(asn1buf *buf, krb5_pa_data *val) argument
1175 asn1_decode_pa_data_ptr(asn1buf *buf, krb5_pa_data **valptr) argument
1187 asn1_decode_last_req(asn1buf *buf, krb5_last_req_entry ***val) argument
1194 asn1_decode_last_req_entry(asn1buf *buf, krb5_last_req_entry *val) argument
1214 asn1_decode_last_req_entry_ptr(asn1buf *buf, krb5_last_req_entry **valptr) argument
1220 asn1_decode_sequence_of_enctype(asn1buf *buf, int *num, krb5_enctype **val) argument
1246 asn1_decode_sequence_of_checksum(asn1buf *buf, krb5_checksum ***val) argument
1261 asn1_decode_etype_info2_entry(asn1buf *buf, krb5_etype_info_entry *val) argument
1297 asn1_decode_etype_info2_entry_ptr(asn1buf *buf, krb5_etype_info_entry **valptr) argument
1303 asn1_decode_etype_info2_entry_1_3(asn1buf *buf, krb5_etype_info_entry *val) argument
1336 asn1_decode_etype_info2_entry_1_3_ptr(asn1buf *buf, krb5_etype_info_entry **valptr) argument
1343 asn1_decode_etype_info_entry(asn1buf *buf, krb5_etype_info_entry *val) argument
1367 asn1_decode_etype_info_entry_ptr(asn1buf *buf, krb5_etype_info_entry **valptr) argument
1373 asn1_decode_etype_info(asn1buf *buf, krb5_etype_info_entry ***val ) argument
1380 decode_etype_info2_13(asn1buf *buf, krb5_etype_info_entry ***val) argument
1388 asn1_decode_etype_info2(asn1buf *buf, krb5_etype_info_entry ***val , krb5_boolean v1_3_behavior) argument
1401 asn1_decode_passwdsequence(asn1buf *buf, passwd_phrase_element *val) argument
1428 asn1_decode_passwdsequence_ptr(asn1buf *buf, passwd_phrase_element **valptr) argument
1434 asn1_decode_sequence_of_passwdsequence(asn1buf *buf, passwd_phrase_element ***val) argument
1442 asn1_decode_sam_flags(asn1buf *buf, krb5_flags *val) argument
1454 asn1_decode_sam_challenge(asn1buf *buf, krb5_sam_challenge *val) argument
1483 asn1_decode_sam_challenge_2(asn1buf *buf, krb5_sam_challenge_2 *val) argument
1522 asn1_decode_sam_challenge_2_body(asn1buf *buf, krb5_sam_challenge_2_body *val) argument
1551 asn1_decode_enc_sam_key(asn1buf *buf, krb5_sam_key *val) argument
1567 asn1_decode_enc_sam_response_enc(asn1buf *buf, krb5_enc_sam_response_enc *val) argument
1586 asn1_decode_enc_sam_response_enc_2(asn1buf *buf, krb5_enc_sam_response_enc_2 *val) argument
1614 asn1_decode_sam_response(asn1buf *buf, krb5_sam_response *val) argument
1638 asn1_decode_sam_response_2(asn1buf *buf, krb5_sam_response_2 *val) argument
1660 asn1_decode_predicted_sam_response(asn1buf *buf, krb5_predicted_sam_response *val) argument
1686 asn1_decode_setpw_req(asn1buf *buf, krb5_data *newpasswd, krb5_principal *principal) argument
1712 asn1_decode_pa_for_user(asn1buf *buf, krb5_pa_for_user *val) argument
1736 asn1_decode_s4u_userid(asn1buf *buf, krb5_s4u_userid *val) argument
1762 asn1_decode_pa_s4u_x509_user(asn1buf *buf, krb5_pa_s4u_x509_user *val) argument
1779 asn1_decode_pa_pac_req(asn1buf *buf, krb5_pa_pac_req *val) argument
1792 asn1_decode_fast_armor(asn1buf *buf, krb5_fast_armor *val) argument
1809 asn1_decode_fast_armor_ptr(asn1buf *buf, krb5_fast_armor **valptr) argument
1815 asn1_decode_fast_finished(asn1buf *buf, krb5_fast_finished *val) argument
1836 asn1_decode_fast_finished_ptr(asn1buf *buf, krb5_fast_finished **valptr) argument
1842 asn1_decode_ad_kdcissued(asn1buf *buf, krb5_ad_kdcissued *val) argument
1866 asn1_decode_princ_plus_realm(asn1buf *buf, krb5_principal *valptr) argument
1884 asn1_decode_sequence_of_princ_plus_realm(asn1buf *buf, krb5_principal **val) argument
1890 asn1_decode_ad_signedpath(asn1buf *buf, krb5_ad_signedpath *val) argument
1915 asn1_decode_external_principal_identifier( asn1buf *buf, krb5_external_principal_identifier *val) argument
1942 asn1_decode_external_principal_identifier_ptr( asn1buf *buf, krb5_external_principal_identifier **valptr) argument
1961 asn1_decode_sequence_of_external_principal_identifier( asn1buf *buf, krb5_external_principal_identifier ***val) argument
1971 asn1_decode_pa_pk_as_req(asn1buf *buf, krb5_pa_pk_as_req *val) argument
2056 asn1_decode_trusted_ca(asn1buf *buf, krb5_trusted_ca *val) argument
2089 asn1_decode_trusted_ca_ptr(asn1buf *buf, krb5_trusted_ca **valptr) argument
2105 asn1_decode_sequence_of_trusted_ca(asn1buf *buf, krb5_trusted_ca ***val) argument
2112 asn1_decode_pa_pk_as_req_draft9(asn1buf *buf, krb5_pa_pk_as_req_draft9 *val) argument
2145 asn1_decode_dh_rep_info(asn1buf *buf, krb5_dh_rep_info *val) argument
2166 asn1_decode_pk_authenticator(asn1buf *buf, krb5_pk_authenticator *val) argument
2184 asn1_decode_pk_authenticator_draft9(asn1buf *buf, krb5_pk_authenticator_draft9 *val) argument
2206 asn1_decode_algorithm_identifier(asn1buf *buf, krb5_algorithm_identifier *val) argument
2255 asn1_decode_algorithm_identifier_ptr(asn1buf *buf, krb5_algorithm_identifier **valptr) argument
2262 asn1_decode_subject_pk_info(asn1buf *buf, krb5_subject_pk_info *val) argument
2321 asn1_decode_sequence_of_algorithm_identifier(asn1buf *buf, krb5_algorithm_identifier ***val) argument
2330 asn1_decode_kdc_dh_key_info(asn1buf *buf, krb5_kdc_dh_key_info *val) argument
2351 asn1_decode_reply_key_pack(asn1buf *buf, krb5_reply_key_pack *val) argument
2371 asn1_decode_reply_key_pack_draft9(asn1buf *buf, krb5_reply_key_pack_draft9 *val) argument
2389 asn1_decode_krb5_principal_name(asn1buf *buf, krb5_principal *val) argument
2414 asn1_decode_auth_pack(asn1buf *buf, krb5_auth_pack *val) argument
2478 asn1_decode_auth_pack_draft9(asn1buf *buf, krb5_auth_pack_draft9 *val) argument
2521 asn1_decode_pa_pk_as_rep(asn1buf *buf, krb5_pa_pk_as_rep *val) argument
2554 asn1_decode_pa_pk_as_rep_draft9(asn1buf *buf, krb5_pa_pk_as_rep_draft9 *val) argument
2593 asn1_decode_sequence_of_typed_data(asn1buf *buf, krb5_typed_data ***val) argument
2600 asn1_decode_typed_data(asn1buf *buf, krb5_typed_data *val) argument
2617 asn1_decode_typed_data_ptr(asn1buf *buf, krb5_typed_data **valptr) argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dchar_io.c134 convert_to_ascii (char *buf, int c,...) argument
137 char *ptr = buf;
147 buf++;
161 char *ptr2 = buf;
301 char *buf = (char *) CMDLINE_BUF; local
362 grub_putchar (buf[i]);
440 grub_putchar (buf[i]);
494 grub_memmove (buf + lpos, str, l + 1);
497 grub_memmove (buf + lpos + l, buf
[all...]
H A Ddisk_io.c158 char *buf)
294 grub_memmove (buf, bufaddr, size);
296 buf += size;
307 devread(unsigned int sector, int byte_offset, int byte_len, char *buf) argument
340 byte_len, buf);
345 rawwrite(int drive, unsigned int sector, char *buf) argument
362 memmove ((char *) SCRATCHADDR, buf, SECTOR_SIZE);
378 devwrite(unsigned int sector, int sector_count, char *buf) argument
389 sector, sector_count, buf);
399 buf
157 rawread(int drive, unsigned int sector, int byte_offset, int byte_len, char *buf) argument
588 next_partition(unsigned long drive, unsigned long dest, unsigned long *partition, int *type, unsigned long *start, unsigned long *len, unsigned long *offset, int *entry, unsigned long *ext_offset, char *buf) argument
830 char buf[SECTOR_SIZE]; local
1356 char *buf = unique_string; local
1386 char *buf = (char *) COMPLETION_BUF; local
1722 grub_read(char *buf, int len) argument
[all...]
/osnet-11/usr/src/lib/libnsl/dial/
H A Dsysfiles.c159 char *tok, buf[BUFSIZ]; local
191 while (getaline(f, buf) > 0) {
193 /* strtok's of this buf continue in tokenize() */
194 tok = strtok(buf, " \t");
232 char *tok, buf[BUFSIZ]; local
241 while (getaline(f, buf) > 0) {
243 /* strtok's of this buf continue in tokenize() */
244 tok = strtok(buf, " \t");
273 /* empty buf or line too long! */
484 getsysline(char *buf, in argument
532 getdevline(char *buf, int len) argument
574 getdialline(char *buf, int len) argument
615 getpop(char *buf, size_t len, int *optional) argument
642 getpush(char *buf, size_t len) argument
731 char buf[BUFSIZ]; local
[all...]
/osnet-11/usr/src/lib/libnsl/key/
H A Dpublickey.c229 char buf[WORKBUFSIZE]; local
243 while ((res = fgets(buf, WORKBUFSIZE, fd)) != NULL) {
248 mkey = strtok_r(buf, "\t ", &lasts);
351 char *buf = malloc(strlen(raw) + 1); /* private tmp buf */ local
354 if (!buf || !passwd || !raw || !private || !prilen ||
358 if (buf)
359 free(buf);
363 (void) strcpy(buf, raw);
366 p = strchr(buf, '
437 nss_XbyY_buf_t *buf = NULL; local
[all...]

Completed in 51 milliseconds

<<11121314151617181920>>