• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/packages/OS400/

Lines Matching refs:ccsid

57 makeOS400IconvCode(char buf[ICONV_ID_SIZE], unsigned int ccsid)
68 ccsid &= 0xFFFF;
70 if (ccsid == NOCONV_CCSID)
71 ccsid = ASCII_CCSID;
74 curl_msprintf(buf, "IBMCCSID%05u0000000", ccsid);
214 curl_version_ccsid(unsigned int ccsid)
232 if (convert(eversion, i, ccsid, aversion, -1, ASCII_CCSID) < 0)
306 const char * data, unsigned int ccsid)
316 s = dynconvert(ASCII_CCSID, data, -1, ccsid);
328 curl_getdate_ccsid(const char * p, const time_t * unused, unsigned int ccsid)
337 s = dynconvert(ASCII_CCSID, p, -1, ccsid);
350 char * * bufp, int * left, unsigned int ccsid)
361 l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID);
376 curl_version_info_ccsid(CURLversion stamp, unsigned int ccsid)
464 &cp, &n, ccsid))
468 if (convert_version_info_string(&id->version, &cp, &n, ccsid))
471 if (convert_version_info_string(&id->host, &cp, &n, ccsid))
474 if (convert_version_info_string(&id->ssl_version, &cp, &n, ccsid))
477 if (convert_version_info_string(&id->libz_version, &cp, &n, ccsid))
480 if (convert_version_info_string(&id->ares, &cp, &n, ccsid))
483 if (convert_version_info_string(&id->libidn, &cp, &n, ccsid))
486 if (convert_version_info_string(&id->libssh_version, &cp, &n, ccsid))
494 curl_easy_strerror_ccsid(CURLcode error, unsigned int ccsid)
511 if (convert(buf, i, ccsid, s, -1, ASCII_CCSID) < 0)
519 curl_share_strerror_ccsid(CURLSHcode error, unsigned int ccsid)
536 if (convert(buf, i, ccsid, s, -1, ASCII_CCSID) < 0)
544 curl_multi_strerror_ccsid(CURLMcode error, unsigned int ccsid)
561 if (convert(buf, i, ccsid, s, -1, ASCII_CCSID) < 0)
575 unsigned int ccsid;
594 ccsid = va_arg(arg, unsigned int);
602 d = dynconvert(ccsid, s, -1, ASCII_CCSID);
648 int formx, int lengthx, unsigned int ccsid)
669 forms[formx].value, l, ccsid);
703 unsigned int ccsid;
897 ccsid = (unsigned int) va_arg(arg, long);
900 ccsid = (unsigned int) forms->value;
908 if (Curl_formadd_convert(lforms, nargs, -1, ccsid) < 0) {
959 unsigned int ccsid;
982 l = convert(b, MAX_CONV_EXPANSION * len, p->ccsid, buf, len, ASCII_CCSID);
997 curl_formget_callback append, unsigned int ccsid)
1004 lcfc.ccsid = ccsid;
1018 unsigned int ccsid;
1099 ccsid = va_arg(arg, unsigned int);
1102 s = dynconvert(ASCII_CCSID, s, -1, ccsid);
1122 ccsid = va_arg(arg, unsigned int);
1126 if (!s || !pfsize || ccsid == NOCONV_CCSID || ccsid == ASCII_CCSID) {
1133 s = dynconvert(ASCII_CCSID, s, -1, ccsid);
1161 pfsize = convert(cp, pfsize, ASCII_CCSID, s, len, ccsid);