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

  /system/core/fs_mgr/
fs_mgr.c 293 * the mountpoint of the one given by fstab->recs[start_idx].
318 i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point);
327 fstab->recs[i].mount_point, i, fstab->recs[i].fs_type, fstab->recs[*attempted_idx].fs_type);
331 if (fstab->recs[i].fs_mgr_flags & MF_CHECK) {
332 check_fs(fstab->recs[i].blk_device, fstab->recs[i].fs_type,
333 fstab->recs[i].mount_point)
    [all...]
fs_mgr_fstab.c 257 fstab->recs = calloc(fstab->num_entries, sizeof(struct fstab_rec));
290 fstab->recs[cnt].blk_device = strdup(p);
296 fstab->recs[cnt].mount_point = strdup(p);
302 fstab->recs[cnt].fs_type = strdup(p);
309 fstab->recs[cnt].flags = parse_flags(p, mount_flags, NULL,
314 fstab->recs[cnt].fs_options = strdup(tmp_fs_options);
316 fstab->recs[cnt].fs_options = NULL;
323 fstab->recs[cnt].fs_mgr_flags = parse_flags(p, fs_mgr_flags,
325 fstab->recs[cnt].key_loc = flag_vals.key_loc;
326 fstab->recs[cnt].verity_loc = flag_vals.verity_loc
    [all...]
fs_mgr_verity.c 835 if (!fs_mgr_is_verified(&fstab->recs[i])) {
839 rc = load_verity_state(&fstab->recs[i], &current);
899 if (!fs_mgr_is_verified(&fstab->recs[i])) {
903 if (get_verity_state_offset(&fstab->recs[i], &offset) < 0 ||
904 read_verity_state(fstab->recs[i].verity_loc, offset, &mode) < 0) {
908 mount_point = basename(fstab->recs[i].mount_point);
920 if (write_verity_state(fstab->recs[i].verity_loc, offset,
927 callback(&fstab->recs[i], mount_point, mode, *status);
  /system/vold/
TrimTask.cpp 74 if (!strcmp(fstab->recs[i].fs_type, "emmc") ||
75 !strcmp(fstab->recs[i].fs_type, "mtd")) {
79 if (fstab->recs[i].flags & MS_RDONLY) {
82 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
85 if (fs_mgr_is_notrim(&fstab->recs[i])) {
92 if (prev_rec && !strcmp(prev_rec->mount_point, fstab->recs[i].mount_point)) {
96 mPaths.push_back(fstab->recs[i].mount_point);
97 prev_rec = &fstab->recs[i];
main.cpp 221 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
222 if (fs_mgr_is_nonremovable(&fstab->recs[i])) {
227 std::string sysPattern(fstab->recs[i].blk_device);
228 std::string nickname(fstab->recs[i].label);
231 if (fs_mgr_is_encryptable(&fstab->recs[i])) {
235 if (fs_mgr_is_noemulatedsd(&fstab->recs[i])
  /external/selinux/sepolgen/src/sepolgen/
audit.py 84 def from_split_string(self, recs):
91 for msg in recs:
120 def from_split_string(self, recs):
121 AuditMessage.from_split_string(self, recs)
123 for msg in recs:
176 def __parse_access(self, recs, start):
179 # the string on spaces. This function takes the list of recs and a starting
185 if i == (len(recs) - 1):
187 while i < len(recs):
188 if recs[i] == "}"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
audit.py 84 def from_split_string(self, recs):
91 for msg in recs:
120 def from_split_string(self, recs):
121 AuditMessage.from_split_string(self, recs)
123 for msg in recs:
176 def __parse_access(self, recs, start):
179 # the string on spaces. This function takes the list of recs and a starting
185 if i == (len(recs) - 1):
187 while i < len(recs):
188 if recs[i] == "}"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
audit.py 84 def from_split_string(self, recs):
91 for msg in recs:
120 def from_split_string(self, recs):
121 AuditMessage.from_split_string(self, recs)
123 for msg in recs:
176 def __parse_access(self, recs, start):
179 # the string on spaces. This function takes the list of recs and a starting
185 if i == (len(recs) - 1):
187 while i < len(recs):
188 if recs[i] == "}"
    [all...]
  /external/selinux/sepolgen/tests/
test_audit.py 91 recs = audit1.split()
92 avc.from_split_string(recs)
115 recs = audit2.split()
116 avc.from_split_string(recs)
139 recs = path1.split()
140 path.from_split_string(recs)
  /system/core/adb/
set_verity_enable_state_service.cpp 188 if(fs_mgr_is_verified(&fstab->recs[i])) {
189 if (!set_verity_enabled_state(fd, fstab->recs[i].blk_device,
190 fstab->recs[i].mount_point,
  /system/core/fs_mgr/include/
fs_mgr.h 50 struct fstab_rec *recs; member in struct:fstab
  /system/extras/tests/fstest/
recovery_test.cpp 202 if (!strcmp(fstab->recs[i].mount_point, "/cache")) {
203 strcpy(blk_path_, fstab->recs[i].blk_device);
204 if (!strcmp(fstab->recs[i].fs_type, "ext4")) {
207 } else if (!strcmp(fstab->recs[i].fs_type, "f2fs")) {
  /external/valgrind/callgrind/
context.c 173 int size, recs; local
181 recs = top_fn->separate_recursions;
182 if (recs<1) recs=1;
209 CLG_(stat).context_counter += recs;
  /frameworks/base/core/java/com/android/internal/alsa/
AlsaCardsParser.java 194 static public boolean hasCardNumber(ArrayList<AlsaCardRecord> recs, int cardNum) {
195 for (AlsaCardRecord cardRec : recs) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 383 private int loadSensorLog(ArrayList<AttitudeRec> recs) {
384 //ArrayList<AttitudeRec> recs = new ArrayList<AttitudeRec>();
402 recs.clear();
417 recs.add(new AttitudeRec(Long.parseLong(items[0])/1e9-t0, rpy));
436 return recs.size();
503 private int loadAttitudeRecs(File file, ArrayList<AttitudeRec> recs) {
516 recs.clear();
525 recs.add(new AttitudeRec(time, rpy));
544 return recs.size();
549 private void dumpAttitudeRecs(File file, ArrayList<AttitudeRec> recs) {
    [all...]
  /external/skia/src/effects/gradients/
SkGradientShader.cpp 138 Rec* recs = fRecs; local
139 recs->fPos = 0;
140 // recs->fScale = 0; // unused;
141 recs += 1;
166 recs->fPos = SkScalarToFixed(curr);
169 recs->fScale = (1 << 24) / diff;
171 recs->fScale = 0; // ignore this segment
175 recs += 1;
184 recs->fPos = p;
185 recs->fScale = scale
    [all...]
  /bootable/recovery/
roots.cpp 64 Volume* v = &fstab->recs[i];
274 Volume* v = fstab->recs + i;
  /bootable/recovery/uncrypt/
uncrypt.cpp 138 struct fstab_rec* v = &fstab->recs[i];
330 struct fstab_rec* v = &fstab->recs[i];
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageSettings.java 165 final List<VolumeRecord> recs = mStorageManager.getVolumeRecords(); local
166 for (VolumeRecord rec : recs) {
  /external/selinux/policycoreutils/sepolicy/
sepolicy.py 233 for t, recs in portdict[p]:
237 port_strings.append("%s (%s) %s" % (", ".join(recs), t, boolean_text))
239 port_strings.append("%s (%s)" % (", ".join(recs), t))
  /external/v8/test/mjsunit/es7/
object-observe.js 65 assertCallbackRecords: function(recs) {
66 this.assertRecordCount(recs.length);
67 for (var i = 0; i < recs.length; i++) {
68 if ('name' in recs[i]) recs[i].name = String(recs[i].name);
69 print(i, stringifyNoThrow(this.records[i]), stringifyNoThrow(recs[i]));
70 assertSame(this.records[i].object, recs[i].object);
71 assertEquals('string', typeof recs[i].type);
72 assertPropertiesEqual(this.records[i], recs[i])
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 179 final List<VolumeRecord> recs = mStorageManager.getVolumeRecords(); local
180 for (VolumeRecord rec : recs) {
  /external/freetype/src/sfnt/
ttcmap.c     [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.c     [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 602 milliseconds