Searched defs:outlen (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | encodings.c | 66 int outlen = src_len; local 76 outbuf = (char*)malloc(outlen + 1); 85 outlen += inlenleft; 87 outbuf = (char*)realloc(outbuf, outlen + 1); 103 outlen -= outlenleft; 106 *new_len = outbuf ? outlen : 0; 109 outbuf[outlen] = 0;
|
| /PHP_5_5/ext/imap/ |
| H A D | php_imap.c | 2747 int arg_len, inlen, outlen; local 2764 outlen = 0; 2773 outlen++; 2780 outlen++; 2796 outlen++; 2801 outlen++; 2817 out = emalloc(outlen + 1); 2867 /* warn if we computed outlen incorrectly */ 2868 if (outp - out != outlen) { 2869 php_error_docref(NULL TSRMLS_CC, E_WARNING, "outp - out [%ld] != outlen [ 2886 int arg_len, inlen, outlen; local [all...] |
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 61 unsigned long buflen, unsigned long *outlen) 88 *outlen = ret; 96 unsigned long buflen, unsigned long *outlen) 118 *outlen = ret; 119 S->convbuf[*outlen] = '\0'; 60 pdo_odbc_utf82ucs2(pdo_stmt_t *stmt, int is_unicode, const char *buf, unsigned long buflen, unsigned long *outlen) argument 95 pdo_odbc_ucs22utf8(pdo_stmt_t *stmt, int is_unicode, const char *buf, unsigned long buflen, unsigned long *outlen) argument
|
| /PHP_5_5/ext/openssl/ |
| H A D | openssl.c | 4797 int i=0, outlen, keylen; local 4825 outlen = data_len + EVP_CIPHER_block_size(cipher_type); 4826 outbuf = emalloc(outlen + 1); 4839 outlen = i; 4841 outlen += i; 4843 outbuf[outlen] = '\0'; 4844 RETVAL_STRINGL((char *)outbuf, outlen, 0); 4849 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); 4876 int i, outlen, keylen; local 4918 outlen [all...] |
Completed in 21 milliseconds