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

1 2 3

  /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/base/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);
mediaplayer.cpp 602 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
604 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
623 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
653 // ext2: Implementation dependant error code.
654 LOGE("error (%d, %d)", ext1, ext2);
667 // ext2: Implementation dependant error code.
669 LOGW("info/warning (%d, %d)", ext1, ext2);
688 LOGV("New video size %d x %d", ext1, ext2);
690 mVideoHeight = ext2;
    [all...]
  /frameworks/base/include/media/stagefright/
MediaWriter.h 57 void notify(int msg, int ext1, int ext2) {
59 mListener->notify(msg, ext1, ext2);
  /frameworks/base/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;
MediaPlayerInterface.h 59 int msg, int ext1, int ext2, const Parcel *obj);
166 void sendEvent(int msg, int ext1=0, int ext2=0,
169 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
mediarecorder.h 197 virtual void notify(int msg, int ext1, int ext2) = 0;
230 void notify(int msg, int ext1, int ext2);
mediaplayer.h 56 // 'ext2' contains an implementation dependant error code to provide
86 // 'ext2' contains an implementation dependant info code to provide
155 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
192 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
  /frameworks/base/tools/aapt/
FileFinder.cpp 89 String8 ext2 = extensions[i].getPathExtension(); local
90 ext2.toLower();
92 if (ext == ext2) {
  /frameworks/base/include/camera/
ICameraClient.h 34 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
Camera.h 61 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
141 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
  /frameworks/base/libs/camera/
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);
  /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...]
  /external/chromium/chrome/browser/
background_application_list_model_unittest.cc 114 scoped_refptr<Extension> ext2 = CreateExtension("bravo", false); local
130 ASSERT_FALSE(BackgroundApplicationListModel::IsBackgroundApp(*ext2));
131 service->AddExtension(ext2);
151 ASSERT_FALSE(BackgroundApplicationListModel::IsBackgroundApp(*ext2));
152 service->UninstallExtension(ext2->id(), false, NULL);
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 69 void notifyListener(int msg, int ext1 = 0, int ext2 = 0);
NuPlayer.h 135 void notifyListener(int msg, int ext1, int ext2);
  /system/media/wilhelm/src/android/
android_GenericMediaPlayer.h 37 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
android_GenericMediaPlayer.cpp 82 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) {
83 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
84 media_to_string(msg), msg, ext1, ext2);
114 (int32_t)ext1, (int32_t)ext2, true /*async*/);
  /external/grub/util/
mkbimage 79 ext2 on GNU [default is ext2]
80 ext2, minix or msdos on GNU/Linux [default is ext2]
125 then echo "The GNU/Linux supported fs are: ext2, minix or msdos!";
127 then echo "The GNU supported fs is ext2!";
169 ext2)
242 [ ! "$fs" ] && fs=ext2
245 # partition ID for sfdisk to correctly fill the partition table (ext2 is the
248 ext2) mkfs_options="-m 0"
    [all...]

Completed in 181 milliseconds

1 2 3