Searched refs:buflen (Results 276 - 300 of 421) sorted by relevance

<<11121314151617

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Modules/
H A Dpyobjc-api.h263 int (*simplify_sig)(char* signature, char* buf, size_t buflen);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/Modules/
H A Dpyobjc-api.h243 int (*simplify_sig)(char* signature, char* buf, size_t buflen);
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dndrv.c607 sprint_d(u_int n, char *buf, int buflen) argument
612 do { buflen--;
616 } while (n != 0 && buflen > 0);
617 strlcpy(buf, cp, IFNAMSIZ-buflen);
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcdattst.c1155 UChar* buf, int32_t buflen, char* cbuf,
1157 int32_t len = udat_format(fmt, date, buf, buflen, 0, ec);
1159 u_austrncpy(cbuf, buf, buflen);
1175 UChar* buf, int32_t buflen, char* cbuf,
1184 _aux1ExtremeDates(fmt, mid, buf, buflen, cbuf, ec) &&
1185 _aux2ExtremeDates(fmt, small, mid, buf, buflen, cbuf, count+1, ec) &&
1186 _aux2ExtremeDates(fmt, mid, large, buf, buflen, cbuf, count+1, ec);
1154 _aux1ExtremeDates(UDateFormat* fmt, UDate date, UChar* buf, int32_t buflen, char* cbuf, UErrorCode* ec) argument
1174 _aux2ExtremeDates(UDateFormat* fmt, UDate small, UDate large, UChar* buf, int32_t buflen, char* cbuf, int32_t count, UErrorCode* ec) argument
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsftp-client.c999 u_int handle_len, mode, type, id, buflen, num_req, max_req; local
1032 buflen = conn->transfer_buflen;
1090 (unsigned long long)offset + buflen - 1,
1094 req->len = buflen;
1096 offset += buflen;
1162 if (len < buflen)
1163 buflen = MAX(MIN_READ_SIZE, len);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Duipc_syscalls.c1656 int buflen = m->m_len; local
1658 while (buflen > 0 && len > 0) {
1702 if (cp_size > buflen) {
1703 panic("cp_size > buflen, something wrong with alignment!");
1723 buflen -= cp_size;
2414 sockargs(struct mbuf **mp, user_addr_t data, int buflen, int type) argument
2420 size_t alloc_buflen = (size_t)buflen;
2427 alloc_buflen = ((buflen - sizeof(struct cmsghdr))*2) + sizeof(struct cmsghdr);
2445 /* K64: We still copyin the original buflen because it gets expanded later
2448 m->m_len = buflen;
[all...]
/macosx-10.10.1/vim-55/src/
H A Dcharset.c418 * Otherwise puts the result in "buf[buflen]".
421 str_foldcase(str, orglen, buf, buflen)
425 int buflen;
447 if (len >= buflen) /* Ugly! */
448 len = buflen - 1;
483 : len + nl - ol >= buflen)
H A Dbuffer.c47 static int append_arg_number __ARGS((win_T *wp, char_u *buf, int buflen, int add_file));
3095 col_print(buf, buflen, col, vcol)
3097 size_t buflen;
3102 vim_snprintf((char *)buf, buflen, "%d", col);
3104 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
4189 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4193 get_rel_pos(wp, buf, buflen)
4196 int buflen;
4208 (size_t)(buflen - 1));
4210 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_cache.c208 build_path(vnode_t first_vp, char *buff, int buflen, int *outlen, int flags, vfs_context_t ctx) argument
222 if (buflen <= 1)
237 end = &buff[buflen-1];
519 memmove(buff, end, &buff[buflen] - end);
524 *outlen = &buff[buflen] - end;
/macosx-10.10.1/apr-32/apr-util/apr-util/dbd/
H A Dapr_dbd_oracle.c1818 apr_size_t buflen = 0; local
1867 buflen = (len+1) * 4; /* ugh, wasteful UCS-4 handling */
1869 buf = apr_pcalloc(row->pool, buflen);
1882 buflen = (len+1) * 4; /* ugh, wasteful UCS-4 handling */
1884 buf = apr_pcalloc(row->pool, buflen);
1888 buflen = len;
1889 buf = apr_palloc(row->pool, buflen+1);
1890 buf[buflen] = 0;
1898 &len, 1, (dvoid*) buf, buflen,
/macosx-10.10.1/curl-83.1.2/curl/lib/vtls/
H A Dcurl_darwinssl.c1655 unsigned char *buf, size_t buflen,
1658 CFDataRef certdata = CFDataCreate(kCFAllocatorDefault, buf, buflen);
1696 size_t buflen, derlen, offset = 0; local
1698 if(read_cert(cafile, &certbuf, &buflen) < 0) {
1720 while(offset < buflen) {
1739 rc = append_cert_to_array(data, certbuf, buflen, array);
1654 append_cert_to_array(struct SessionHandle *data, unsigned char *buf, size_t buflen, CFMutableArrayRef array) argument
H A Dnss.c658 unsigned int buflen; local
665 if(SSL_GetNextProto(sock, &state, buf, &buflen, buflenmax) == SECSuccess) {
674 infof(conn->data, "ALPN, server accepted to use %.*s\n", buflen, buf);
678 infof(conn->data, "NPN, server accepted to use %.*s\n", buflen, buf);
682 if(buflen == NGHTTP2_PROTO_VERSION_ID_LEN &&
687 else if(buflen == ALPN_HTTP_1_1_LENGTH && memcmp(ALPN_HTTP_1_1, buf,
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_util.m1018 PyObjCRT_SimplifySignature(char* signature, char* buf, size_t buflen)
1035 if ((size_t)(end - cur) > buflen) {
1040 buflen -= (end-cur);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_util.m1081 PyObjCRT_SimplifySignature(char* signature, char* buf, size_t buflen)
1098 if ((size_t)(end - cur) > buflen) {
1103 buflen -= (end-cur);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dobjc_util.m1091 PyObjCRT_SimplifySignature(const char* signature, char* buf, size_t buflen)
1108 if ((size_t)(end - cur) > buflen) {
1113 buflen -= (end-cur);
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A Dconfigure5385 int buflen = 512;
5387 (void) getpwuid_r(uid, &pw, buf, buflen, &pwp);
5429 int buflen = 512;
5431 (void)getpwnam_r(uid, &pw, buf, buflen);
5529 int buflen = 512;
5531 (void) getpwnam_r(name, &pw, buf, buflen, &pwp);
5573 int buflen = 512;
5575 (void)getpwnam_r(name, &pw, buf, buflen);
5673 int buflen = 512;
5675 (void) getgrgid_r(gid, &gr, buf, buflen,
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dback-ldap.h458 int (*retry_info_parse)( char *in, slap_retry_info_t *ri, char *buf, ber_len_t buflen );
460 int (*connid2str)( const ldapconn_base_t *lc, char *buf, ber_len_t buflen );
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-snprintf.c169 #define DOPR_OUTCH(buf, pos, buflen, thechar) \
175 if (pos < buflen) \
/macosx-10.10.1/apache-793/httpd/support/
H A Drotatelogs.c336 apr_size_t buflen = strlen(status->errbuf); local
342 if (apr_file_write_full(status->current.fd, status->errbuf, buflen, NULL) != APR_SUCCESS) {
/macosx-10.10.1/apr-32/apr/apr/dso/aix/
H A Ddso.c169 APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer, apr_size_t buflen) argument
172 apr_cpystrn(buffer, dso->errormsg, buflen);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dreadline.c1164 sp->buflen = rl_line_buffer_len;
1198 rl_line_buffer_len = sp->buflen;
/macosx-10.10.1/hfs-285/mount_hfs/
H A Dmount_hfs.c846 size_t buflen = sizeof(int); local
857 if (sysctl(mib, 3, &hint, &buflen, NULL, 0) < 0)
/macosx-10.10.1/iodbc-42.5/iodbc/iodbc/trace/
H A Dtrace.c158 trace_strftime_now (char *buf, size_t buflen, char *format) argument
175 strftime (buf, buflen, format, timeNow);
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSCore/
H A Dnsec3.c44 mDNSlocal void PrintHash(mDNSu8 *digest, int digestlen, char *buffer, int buflen) argument
49 length += mDNS_snprintf(buffer+length, buflen-length-1, "%x", digest[j]);
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSShared/
H A DDebugServices.h1466 @param buflen Size of the buffer including space for the null terminator.
1496 DEBUG_EXPORT size_t DebugSNPrintF(char *sbuffer, size_t buflen, const char *fmt, ...);
1506 DEBUG_EXPORT size_t DebugSNPrintFVAList(char *sbuffer, size_t buflen, const char *fmt, va_list arg);

Completed in 241 milliseconds

<<11121314151617