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

  /cts/tools/signature-tools/src/signature/model/impl/
Uninitialized.java 60 public static <T> T unset() { method in class:Uninitialized
  /external/smack/src/org/xbill/DNS/
Options.java 83 unset(String option) { method in class:Options
  /external/linux-tools-perf/util/
parse-options.c 38 const int unset = flags & OPT_UNSET; local
40 if (unset && p->opt)
42 if (unset && (opt->flags & PARSE_OPT_NONEG))
72 if (unset)
79 *(bool *)opt->value = unset ? false : true;
83 *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1;
87 *(unsigned int *)opt->value = unset ? 0 : opt->defval;
91 *(void **)opt->value = unset ? NULL : (void *)opt->defval;
95 if (unset)
104 if (unset)
    [all...]
  /external/mksh/src/
var.c 919 * Unset a variable. The flags can be:
921 * |2 = keep attributes, only unset content
924 unset(struct tbl *vp, int flags) function
945 /* if foo[0] is being unset, the remainder of the array is kept... */
1436 unset(vp, 1);
    [all...]