Lines Matching refs:src
695 char *src; in nxt_python_add_sptr() local
698 src = nxt_unit_sptr_get(sptr); in nxt_python_add_sptr()
700 value = PyString_FromStringAndSize(src, size); in nxt_python_add_sptr()
704 (int) size, src); in nxt_python_add_sptr()
729 char *src; in nxt_python_add_field() local
732 src = nxt_unit_sptr_get(&field->name); in nxt_python_add_field()
734 name = nxt_python_field_name(src, field->name_length); in nxt_python_add_field()
738 (int) field->name_length, src); in nxt_python_add_field()
822 char *p, *src; in nxt_python_field_value() local
837 src = nxt_unit_sptr_get(&f->value); in nxt_python_field_value()
838 p = nxt_cpymem(p, src, f->value_length); in nxt_python_field_value()
843 src = nxt_unit_sptr_get(&f[i].value); in nxt_python_field_value()
844 p = nxt_cpymem(p, src, f[i].value_length); in nxt_python_field_value()