Searched refs:name (Results 176 - 184 of 184) sorted by path

12345678

/system/netd/
H A DNetlinkHandler.h36 void notifyInterfaceAdded(const char *name);
37 void notifyInterfaceRemoved(const char *name);
38 void notifyInterfaceChanged(const char *name, bool isUp);
39 void notifyInterfaceLinkChanged(const char *name, bool isUp);
40 void notifyQuotaLimitReached(const char *name, const char *iface);
41 void notifyInterfaceClassActivity(const char *name, bool isActive);
H A DThrottleController.cpp40 extern "C" int ifc_up(const char *name);
41 extern "C" int ifc_down(const char *name);
/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp469 static int openssl_open(const hw_module_t* module, const char* name, argument
471 if (strcmp(name, KEYSTORE_KEYMASTER) != 0)
512 name: "Keymaster OpenSSL HAL",
/system/vold/
H A DDevmapper.cpp90 ioctlInit(io2, DEVMAPPER_BUFFER_SIZE, n->name, 0);
100 asprintf(&tmp, "%s %llu:%llu (no status available)", n->name, MAJOR(n->dev), MINOR(n->dev));
102 asprintf(&tmp, "%s %llu:%llu %d %d 0x%.8x %llu:%llu", n->name, MAJOR(n->dev),
118 const char *name, unsigned flags) {
126 if (name) {
127 int ret = strlcpy(io->name, name, sizeof(io->name));
128 if (ret >= sizeof(io->name))
133 int Devmapper::lookupActive(const char *name, cha argument
117 ioctlInit(struct dm_ioctl *io, size_t dataSize, const char *name, unsigned flags) argument
166 create(const char *name, const char *loopFile, const char *key, unsigned int numSectors, char *ubuffer, size_t len) argument
264 destroy(const char *name) argument
[all...]
H A DDevmapper.h27 static int create(const char *name, const char *loopFile, const char *key,
29 static int destroy(const char *name);
30 static int lookupActive(const char *name, char *buffer, size_t len);
36 const char *name, unsigned flags);
H A DProcess.cpp104 // append the file name, after truncating to parent directory
154 int Process::checkSymLink(int pid, const char *mountPoint, const char *name) { argument
158 sprintf(path, "/proc/%d/%s", pid, name);
192 char name[PATH_MAX]; local
196 getProcessName(pid, name, sizeof(name));
201 SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
203 SLOGE("Process %s (%d) has open filemap for %s", name, pid, openfile);
205 SLOGE("Process %s (%d) has cwd within %s", name, pid, path);
207 SLOGE("Process %s (%d) has chroot within %s", name, pi
[all...]
H A DProcess.h24 static int checkSymLink(int pid, const char *path, const char *name);
H A DVolume.cpp700 pinfo->name = strdup("android_sdcard");
713 free(pinfo->name);
H A Dcryptfs.c73 static void ioctl_init(struct dm_ioctl *io, size_t dataSize, const char *name, unsigned flags) argument
82 if (name) {
83 strncpy(io->name, name, sizeof(io->name));
129 /* Get and cache the name of the fstab file so we don't
381 char *real_blk_name, char *crypto_blk_name, const char *name)
400 ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0);
406 /* Get the device status, in particular, the name of it's device file */
407 ioctl_init(io, DM_CRYPT_BUF_SIZE, name,
380 create_crypto_blk_dev(struct crypt_mnt_ftr *crypt_ftr, unsigned char *master_key, char *real_blk_name, char *crypto_blk_name, const char *name) argument
464 delete_crypto_blk_dev(char *name) argument
[all...]

Completed in 1079 milliseconds

12345678