HomeSort by relevance Sort by last modified time
    Searched defs:lut_add (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
lut.c 65 * lut_add -- add an entry to the table
69 * root = lut_add(root, key, value, cmp_func);
78 lut_add(struct lut *root, void *lhs, void *rhs, lut_cmp cmp_func) function
  /onnv/onnv-gate/usr/src/cmd/logadm/
lut.c 51 /* info created by lut_add() and lut_dup(), private to this module */
60 * lut_add -- add an entry to the table
64 * root = lut_add(root, "key", value);
66 * the key string gets strdup'd by lut_add(), but the memory holding
70 lut_add(struct lut *root, const char *lhs, void *rhs) function
84 root->lut_left = lut_add(root->lut_left, lhs, rhs);
86 root->lut_right = lut_add(root->lut_right, lhs, rhs);
96 *rootp = lut_add(*rootp, lhs, rhs);
195 r = lut_add(r, *argv, equals);
197 r = lut_add(r, *argv, "NULL")
    [all...]

Completed in 60 milliseconds