Lines Matching refs:ins
401 str h = {0, NULL}, ins = {0, NULL}, rt = {0, NULL}, lt = {0, NULL}; /* store query parameters */ in hnd_post_rd() local
420 COAP_OPT_VALUE(query), COAP_OPT_LENGTH(query), &ins); in hnd_post_rd()
431 if (ins.length && loc_size > 1) { in hnd_post_rd()
434 ins.s, min(ins.length, LOCSIZE - loc_size - 1)); in hnd_post_rd()
435 loc_size += min(ins.length, LOCSIZE - loc_size - 1); in hnd_post_rd()
444 if (ins.length) { in hnd_post_rd()
447 ins.s, in hnd_post_rd()
448 min(ins.length, LOCSIZE - loc_size - 1)); in hnd_post_rd()
449 loc_size += min(ins.length, LOCSIZE - loc_size - 1); in hnd_post_rd()
471 if (ins.s) { in hnd_post_rd()
472 buf = (unsigned char *)coap_malloc(ins.length + 2); in hnd_post_rd()
476 memcpy(buf + 1, ins.s, ins.length); in hnd_post_rd()
477 buf[ins.length + 1] = '"'; in hnd_post_rd()
482 ins.length + 2, in hnd_post_rd()