HomeSort by relevance Sort by last modified time
    Searched refs:fspec (Results 1 - 3 of 3) sorted by null

  /external/selinux/gui/
fcontextPage.py 176 fspec = store.get_value(iter, SPEC_COL)
179 (rc, out) = getstatusoutput("semanage fcontext -d -f '%s' '%s'" % (seobject.file_type_str_to_option[ftype], fspec))
190 fspec = self.fcontextEntry.get_text().strip()
197 (rc, out) = getstatusoutput("semanage fcontext -a -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
204 self.store.set_value(iter, SPEC_COL, fspec)
209 fspec = self.fcontextEntry.get_text().strip()
216 (rc, out) = getstatusoutput("semanage fcontext -m -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
223 self.store.set_value(iter, SPEC_COL, fspec)
  /external/syslinux/efi/
adv.c 106 * 0 if successful and fspec is a valid allocated CHAR16 pointer
111 static int make_filespec(CHAR16 **fspec, const char *path, const char *cfg)
118 *fspec = malloc(size);
119 if (!*fspec) return -1;
122 for (p = *fspec; *path; path++, p++)