Lines Matching defs:input
714 const char *input, unsigned inputlen,
719 const char **input, unsigned *inputlen,
731 ret = decode_pkt(context, &input, &inputlen, &tmp, &tmplen);
756 const char *serverFQDN, const char *input)
770 r = strchr(input, '@');
781 ret = _plug_strdup(utils, input, user, NULL);
788 *user = utils->malloc(r - input);
790 memcpy(*user, input, r - input - 1);
791 (*user)[r - input - 1] = '\0';
799 *user = utils->malloc(r - input + 1);
801 strncpy(*user, input, r - input +1);