Lines Matching refs:temp_len
60 int *temp_len;
97 if (*args->temp_len < ctx->npos) {
115 *args->temp_len -= ctx->npos;
124 (char *)args->temp, *args->temp_len);
131 *args->temp_len -= n;
140 char *temp, int *temp_len)
148 args.temp_len = temp_len;
192 lws_jws_dup_element(struct lws_jws_map *map, int idx, char *temp, int *temp_len,
198 if ((size_t)*temp_len < actual_alloc)
206 *temp_len -= (int)actual_alloc;
213 char *temp, int *temp_len, const void *in,
218 if (*temp_len < lws_base64_size((int)in_len))
221 n = lws_jws_base64_enc(in, in_len, temp, (size_t)*temp_len);
228 *temp_len -= n;
235 int idx, char *temp, int *temp_len, size_t random_len,
241 if ((size_t)*temp_len < actual_alloc)
252 *temp_len -= (int)actual_alloc;
259 int *temp_len, size_t len, size_t actual_alloc)
264 if ((size_t)*temp_len < actual_alloc)
269 *temp_len -= (int)actual_alloc;
450 int n, h_len, b = 3, temp_len = sizeof(temp);
465 temp, &temp_len) < 0 || !jose.alg) {
673 char *temp, int *temp_len)
678 n = lws_jws_compact_decode_map(map_b64, &map, temp, temp_len);
694 char *temp, int *temp_len)
702 n = lws_jws_compact_decode(in, (int)len, map, &map_b64, temp, temp_len);
714 int *temp_len)
718 if (lws_jws_compact_encode(&map_b64, map, temp, temp_len) < 0)
728 char *temp, int *temp_len)
731 (int)len, temp, temp_len)) {