vold: suppress unused argument warning messages

(cherry picked from commit 3e971277db)

Change-Id: Ic1ab533f756fbd44b1f2e5ae12e2f5736ace7740
gugelfrei
Mark Salyzyn 10 years ago
parent 311edc8cb2
commit 5eecc449cc

@ -54,8 +54,8 @@ CommandListener::CommandListener() :
registerCmd(new FstrimCmd());
}
void CommandListener::dumpArgs(int argc, char **argv, int argObscure) {
#if DUMP_ARGS
void CommandListener::dumpArgs(int argc, char **argv, int argObscure) {
char buffer[4096];
char *p = buffer;
@ -81,15 +81,17 @@ void CommandListener::dumpArgs(int argc, char **argv, int argObscure) {
}
}
SLOGD("%s", buffer);
#endif
}
#else
void CommandListener::dumpArgs(int /*argc*/, char ** /*argv*/, int /*argObscure*/) { }
#endif
CommandListener::DumpCmd::DumpCmd() :
VoldCommand("dump") {
}
int CommandListener::DumpCmd::runCommand(SocketClient *cli,
int argc, char **argv) {
int /*argc*/, char ** /*argv*/) {
cli->sendMsg(0, "Dumping loop status", false);
if (Loop::dumpState(cli)) {
cli->sendMsg(ResponseCode::CommandOkay, "Loop dump failed", true);

@ -151,7 +151,8 @@ int DirectVolume::handleBlockEvent(NetlinkEvent *evt) {
return -1;
}
void DirectVolume::handleDiskAdded(const char *devpath, NetlinkEvent *evt) {
void DirectVolume::handleDiskAdded(const char * /*devpath*/,
NetlinkEvent *evt) {
mDiskMajor = atoi(evt->findParam("MAJOR"));
mDiskMinor = atoi(evt->findParam("MINOR"));
@ -240,7 +241,8 @@ void DirectVolume::handlePartitionAdded(const char *devpath, NetlinkEvent *evt)
}
}
void DirectVolume::handleDiskChanged(const char *devpath, NetlinkEvent *evt) {
void DirectVolume::handleDiskChanged(const char * /*devpath*/,
NetlinkEvent *evt) {
int major = atoi(evt->findParam("MAJOR"));
int minor = atoi(evt->findParam("MINOR"));
@ -273,13 +275,15 @@ void DirectVolume::handleDiskChanged(const char *devpath, NetlinkEvent *evt) {
}
}
void DirectVolume::handlePartitionChanged(const char *devpath, NetlinkEvent *evt) {
void DirectVolume::handlePartitionChanged(const char * /*devpath*/,
NetlinkEvent *evt) {
int major = atoi(evt->findParam("MAJOR"));
int minor = atoi(evt->findParam("MINOR"));
SLOGD("Volume %s %s partition %d:%d changed\n", getLabel(), getMountpoint(), major, minor);
}
void DirectVolume::handleDiskRemoved(const char *devpath, NetlinkEvent *evt) {
void DirectVolume::handleDiskRemoved(const char * /*devpath*/,
NetlinkEvent *evt) {
int major = atoi(evt->findParam("MAJOR"));
int minor = atoi(evt->findParam("MINOR"));
char msg[255];
@ -297,7 +301,8 @@ void DirectVolume::handleDiskRemoved(const char *devpath, NetlinkEvent *evt) {
setState(Volume::State_NoMedia);
}
void DirectVolume::handlePartitionRemoved(const char *devpath, NetlinkEvent *evt) {
void DirectVolume::handlePartitionRemoved(const char * /*devpath*/,
NetlinkEvent *evt) {
int major = atoi(evt->findParam("MAJOR"));
int minor = atoi(evt->findParam("MINOR"));
char msg[255];

@ -227,7 +227,7 @@ int Loop::destroyByDevice(const char *loopDevice) {
return 0;
}
int Loop::destroyByFile(const char *loopFile) {
int Loop::destroyByFile(const char * /*loopFile*/) {
errno = ENOSYS;
return -1;
}

@ -147,7 +147,7 @@ void Volume::handleVolumeShared() {
void Volume::handleVolumeUnshared() {
}
int Volume::handleBlockEvent(NetlinkEvent *evt) {
int Volume::handleBlockEvent(NetlinkEvent * /*evt*/) {
errno = ENOSYS;
return -1;
}

@ -50,6 +50,8 @@
#include "VoldUtil.h"
#include "crypto_scrypt.h"
#define UNUSED __attribute__((unused))
#define DM_CRYPT_BUF_SIZE 4096
#define DATA_MNT_POINT "/data"
@ -868,7 +870,7 @@ errout:
}
static void pbkdf2(char *passwd, unsigned char *salt, unsigned char *ikey, void *params) {
static void pbkdf2(char *passwd, unsigned char *salt, unsigned char *ikey, void *params UNUSED) {
/* Turn the password into a key and IV that can decrypt the master key */
PKCS5_PBKDF2_HMAC_SHA1(passwd, strlen(passwd), salt, SALT_LEN,
HASH_COUNT, KEY_LEN_BYTES+IV_LEN_BYTES, ikey);
@ -1150,7 +1152,7 @@ int cryptfs_restart(void)
return rc;
}
static int do_crypto_complete(char *mount_point)
static int do_crypto_complete(char *mount_point UNUSED)
{
struct crypt_mnt_ftr crypt_ftr;
char encrypted_state[PROPERTY_VALUE_MAX];

@ -56,8 +56,7 @@
#define KDF_PBKDF2 1
#define KDF_SCRYPT 2
#define __le32 unsigned int
#define __le16 unsigned short int
/* __le32 and __le16 defined in system/extras/ext4_utils/ext4_utils.h */
#define __le8 unsigned char
struct crypt_mnt_ftr {

@ -37,6 +37,8 @@
#define FSTRIM_WAKELOCK "dofstrim"
#define UNUSED __attribute__((unused))
static unsigned long long get_boot_time_ms(void)
{
struct timespec t;
@ -50,7 +52,7 @@ static unsigned long long get_boot_time_ms(void)
return time_ms;
}
static void *do_fstrim_filesystems(void *ignored)
static void *do_fstrim_filesystems(void *ignored UNUSED)
{
int i;
int fd;

Loading…
Cancel
Save