Lines Matching defs:ins
393 coap_string_t h = {0, NULL}, ins = {0, NULL}, rt = {0, NULL}, lt = {0, NULL}; /* store query parameters */
411 parse_param((const uint8_t *)"ins", 3, query->s, query->length, &ins);
420 if (ins.length && loc_size > 1) {
423 ins.s, min(ins.length, LOCSIZE - loc_size - 1));
424 loc_size += min(ins.length, LOCSIZE - loc_size - 1);
433 if (ins.length) {
436 ins.s,
437 min(ins.length, LOCSIZE - loc_size - 1));
438 loc_size += min(ins.length, LOCSIZE - loc_size - 1);
462 if (ins.s) {
463 buf = (unsigned char *)coap_malloc(ins.length + 2);
467 memcpy(buf + 1, ins.s, ins.length);
468 buf[ins.length + 1] = '"';
470 attr_val.length = ins.length + 2;
472 coap_make_str_const("ins"),
544 coap_add_attr(r, coap_make_str_const("ins"), coap_make_str_const("\"default\""), 0);