| 128 | #define O_NEXT(p, len) ((void *)((char *)p + len)) |
| 129 | |
| 130 | static void |
| 131 | oid_fill(struct dn_id *oid, int len, int type, uintptr_t id) |
| 132 | { |
| 133 | oid->len = len; |
| 134 | oid->type = type; |
| 135 | oid->subtype = 0; |
| 136 | oid->id = id; |
| 137 | } |
| 138 | |
| 139 | /* make room in the buffer and move the pointer forward */ |
| 140 | static void * |
no outgoing calls
no test coverage detected