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

1 2 3 4 5 6

  /external/e2fsprogs/misc/
findsuper.c 2 * findsuper --- quick hacked up program to find ext2 superblocks.
64 * copies of ext2 superblocks (by checking for the ext2 signature).
67 * offset in 1024-byte blocks, the size of the ext2 partition in fs
69 * (always 0 for older ext2 systems), and a timestamp (s_mtime).
123 struct ext2_super_block ext2; local
189 read(fd, &ext2, 512) == 512; sk += skiprate) {
214 if (ext2.s_magic != EXT2_SUPER_MAGIC)
216 if (ext2.s_log_block_size > 6)
217 WHY("log block size > 6 (%u)\n", ext2.s_log_block_size)
    [all...]
  /external/genext2fs/
test-gen.lib 23 ./genext2fs -N 17 -b $blocks -d test -f -q ext2.img
34 ./genext2fs -N 92 -b $blocks -D test/$fname -f ext2.img
40 rm -rf ext2.img test
46 digest=`md5sum ext2.img 2>/dev/null | cut -f 1 -d " "`
50 digest=`md5 ext2.img 2>/dev/null | cut -f 4 -d " "`
test-mount.sh 39 /sbin/e2fsck -fn ext2.img || fail
41 mount -t ext2 -o ro,loop ext2.img mnt || fail
59 /sbin/e2fsck -fn ext2.img || fail
61 mount -t ext2 -o ro,loop ext2.img mnt || fail
  /external/chromium/chrome/common/extensions/
extension_set_unittest.cc 53 scoped_refptr<Extension> ext2(CreateTestExtension(
62 ASSERT_TRUE(ext1 && ext2 && ext3 && ext4);
72 extensions.Insert(ext2);
74 EXPECT_EQ(ext2, extensions.GetByID(ext1->id()));
82 EXPECT_EQ(ext2, extensions.GetByURL(
83 ext2->GetResourceURL("test.html")));
90 EXPECT_EQ(ext2, extensions.GetByURL(
114 extensions.Remove(ext2->id());
116 EXPECT_FALSE(extensions.GetByID(ext2->id()));
  /external/e2fsprogs/ext2ed/
ext2ed.conf.in 7 # Ext2Descriptors is the location of the ext2 filesystem structure
11 Ext2Descriptors @datadir@/ext2.descriptors
53 # When ForceExt2 is set to on, the filesystem is assumed to be ext2
55 # All the ext2 specific commands will be aviable despite the possible
62 # total number of blocks are gathered from the ext2 filesystem itself.
  /frameworks/av/media/libmedia/
IMediaPlayerClient.cpp 38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj)
44 data.writeInt32(ext2);
64 int ext2 = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
IMediaRecorderClient.cpp 38 virtual void notify(int msg, int ext1, int ext2)
44 data.writeInt32(ext2);
61 int ext2 = data.readInt32(); local
62 notify(msg, ext1, ext2);
  /external/chromium_org/chrome/common/extensions/
extension_set_unittest.cc 55 scoped_refptr<Extension> ext2(CreateTestExtension(
65 ASSERT_TRUE(ext1.get() && ext2.get() && ext3.get() && ext4.get());
75 EXPECT_FALSE(extensions.Insert(ext2));
77 EXPECT_EQ(ext2, extensions.GetByID(ext1->id()));
85 EXPECT_EQ(ext2, extensions.GetExtensionOrAppByURL(
86 ext2->GetResourceURL("test.html")));
93 EXPECT_EQ(ext2, extensions.GetExtensionOrAppByURL(
117 EXPECT_TRUE(extensions.Remove(ext2->id()));
119 EXPECT_FALSE(extensions.GetByID(ext2->id()));
  /frameworks/av/include/media/stagefright/
MediaWriter.h 57 void notify(int msg, int ext1, int ext2) {
59 mListener->notify(msg, ext1, ext2);
  /frameworks/av/media/libmediaplayerservice/
HDCP.h 57 static void ObserveWrapper(void *me, int msg, int ext1, int ext2);
58 void observe(int msg, int ext1, int ext2);
HDCP.cpp 166 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) {
167 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
170 void HDCP::observe(int msg, int ext1, int ext2) {
174 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
  /frameworks/av/include/media/
IMediaPlayerClient.h 31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
IMediaRecorderClient.h 31 virtual void notify(int msg, int ext1, int ext2) = 0;
mediarecorder.h 197 virtual void notify(int msg, int ext1, int ext2) = 0;
231 void notify(int msg, int ext1, int ext2);
  /hardware/libhardware/tests/camera2/
camera2_utils.h 119 int32_t *ext2, int32_t *ext3);
122 int32_t *ext2, int32_t *ext3);
129 int32_t *ext1, int32_t *ext2, int32_t *ext3);
135 ext2(e2),
141 int32_t ext2; member in struct:android::camera2::tests::NotifierListener::Notification
152 int32_t ext2,
157 int32_t ext2,
  /frameworks/base/tools/aapt/
FileFinder.cpp 89 String8 ext2 = extensions[i].getPathExtension(); local
90 ext2.toLower();
92 if (ext == ext2) {
  /frameworks/av/camera/
IProCameraCallbacks.cpp 50 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
57 data.writeInt32(ext2);
95 int32_t ext2 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
ICameraClient.cpp 42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
49 data.writeInt32(ext2);
95 int32_t ext2 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
  /frameworks/av/include/camera/
ICameraClient.h 37 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
IProCameraCallbacks.h 41 int32_t ext2) = 0;
ProCamera.h 47 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
57 virtual void onTriggerNotify(int32_t msgType, int32_t ext1, int32_t ext2)
250 int32_t ext2);
Camera.h 40 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
143 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
  /external/chromium_org/chromeos/ime/
component_extension_ime_manager_unittest.cc 64 ComponentExtensionIME ext2; local
65 ext2.id = "ext2_id";
66 ext2.description = "ext2_description";
67 ext2.path = base::FilePath("ext2_file_path");
74 ext2.engines.push_back(ext2_engine1);
81 ext2.engines.push_back(ext2_engine2);
88 ext2.engines.push_back(ext2_engine3);
90 ime_list_.push_back(ext2);
  /external/e2fsprogs/
e2fsprogs.spec 6 Summary: Utilities for managing ext2/ext3/ext4 filesystems
19 checking, modifying, and correcting any inconsistencies in ext2, ext3,
22 initialize a partition to contain an empty ext2 filesystem), debugfs
26 shrink unmounted ext2 filesystems, and most of the other core ext2fs
29 You should install the e2fsprogs package if you are using any ext2,
32 don't use ext2/ext3/ext4) for the libuuid and libblkid libraries and
36 Summary: Ext2 filesystem-specific static libraries and headers.
43 develop ext2, ext3, or ext4 filesystem-specific programs.
46 ext2. ext3. or ext4 filesystem-specific programs. If you install
122 %{_root_sbindir}/fsck.ext2
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera2.h 138 int32_t ext1, int32_t ext2);
217 int ext2);
261 int32_t ext1, int32_t ext2, int32_t ext3);

Completed in 842 milliseconds

1 2 3 4 5 6