Searched refs:label (Results 1 - 25 of 47) sorted by last modified time

12

/system/vold/
H A DDirectVolume.cpp36 DirectVolume::DirectVolume(VolumeManager *vm, const char *label, argument
38 Volume(vm, label, mount_point) {
453 strcpy(v->label, mLabel);
H A DDirectVolume.h45 DirectVolume(VolumeManager *vm, const char *label, const char *mount_point, int partIdx);
H A DVolume.cpp115 Volume::Volume(VolumeManager *vm, const char *label, const char *mount_point) { argument
118 mLabel = strdup(label);
H A DVolume.h65 Volume(VolumeManager *vm, const char *label, const char *mount_point);
H A DVolumeManager.cpp170 int VolumeManager::formatVolume(const char *label) { argument
171 Volume *v = lookupVolume(label);
1105 int VolumeManager::mountVolume(const char *label) { argument
1106 Volume *v = lookupVolume(label);
1161 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { argument
1162 Volume *v = lookupVolume(label);
1182 int VolumeManager::shareVolume(const char *label, const char *method) { argument
1183 Volume *v = lookupVolume(label);
1260 int VolumeManager::unshareVolume(const char *label, const char *method) { argument
1261 Volume *v = lookupVolume(label);
1306 vold_disableVol(const char *label) argument
1352 unmountVolume(const char *label, bool force, bool revert) argument
1436 lookupVolume(const char *label) argument
[all...]
H A DVolumeManager.h81 int mountVolume(const char *label);
82 int unmountVolume(const char *label, bool force, bool revert);
83 int shareVolume(const char *label, const char *method);
84 int unshareVolume(const char *label, const char *method);
86 int formatVolume(const char *label);
138 Volume *lookupVolume(const char *label);
153 int vold_disableVol(const char *label);
H A Dcryptfs.c779 static int test_mount_encrypted_fs(char *passwd, char *mount_point, char *label) argument
813 real_blkdev, crypto_blkdev, label)) {
829 delete_crypto_blk_dev(label);
870 int cryptfs_revert_volume(const char *label) argument
872 return delete_crypto_blk_dev((char *)label);
880 int cryptfs_setup_volume(const char *label, int major, int minor, argument
906 crypto_blkdev, label);
1223 ret=vold_disableVol(vol_list[i].label);
1227 SLOGE("Failed to unmount volume %s\n", vol_list[i].label);
1334 vol_list[i].label);
[all...]
H A Dcryptfs.h68 char label[256]; member in struct:volume_info
82 int cryptfs_setup_volume(const char *label, int major, int minor,
85 int cryptfs_revert_volume(const char *label);
H A Dmain.cpp173 char *type, *label, *mount_point, *mount_flags, *sysfs_path; local
186 if (!(label = strtok_r(NULL, delim, &save_ptr))) {
187 SLOGE("Error parsing label");
209 dv = new DirectVolume(vm, label, mount_point, -1);
211 dv = new DirectVolume(vm, label, mount_point, atoi(part));
221 label);
/system/core/adb/
H A Dadb.c226 void print_packet(const char *label, apacket *p) argument
244 label, tag, p->msg.arg0, p->msg.arg1, p->msg.data_length);
H A Dadb.h237 void print_packet(const char *label, apacket *p);
/system/core/debuggerd/
H A Dtombstone.c221 bool only_in_tombstone, uintptr_t* sp, size_t words, int label) {
236 if (!i && label >= 0) {
239 label, *sp, stack_content, mi ? mi->name : "", symbol_name, offset);
242 label, *sp, stack_content, mi ? mi->name : "", symbol_name);
255 if (!i && label >= 0) {
257 label, *sp, stack_content, mi ? mi->name : "");
220 dump_stack_segment(const ptrace_context_t* context, log_t* log, pid_t tid, bool only_in_tombstone, uintptr_t* sp, size_t words, int label) argument
/system/core/init/
H A Dbuiltins.c40 #include <selinux/label.h>
H A Ddevices.c35 #include <selinux/label.h>
H A Dinit.c38 #include <selinux/label.h>
H A Dproperty_service.c45 #include <selinux/label.h>
H A Dutil.c27 #include <selinux/label.h>
/system/core/libcutils/arch-x86/
H A Dsse2-memset16-atom.S21 # define L(label) .L##label
H A Dsse2-memset32-atom.S21 # define L(label) .L##label
/system/core/libcutils/
H A Dtzstrftime.c158 label:
237 goto label;
244 goto label;
H A Dtztime.c1829 goto label;
1834 label:
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp94 ssize_t label = mLabelsInverseMapping.indexOfKey(i); local
95 if (label >= 0) {
96 printf("%s:\n", mLabelsInverseMapping.valueAt(label));
113 void ARMAssembler::label(const char* theLabel) function in class:android::ARMAssembler
119 void ARMAssembler::B(int cc, const char* label) argument
121 mBranchTargets.add(branch_target_t(label, mPC));
125 void ARMAssembler::BL(int cc, const char* label) argument
127 mBranchTargets.add(branch_target_t(label, mPC));
173 uint32_t* target_pc = mLabels.valueFor(bt.label);
204 uint32_t* ARMAssembler::pcForLabel(const char* label) argument
[all...]
H A DARMAssembler.h110 virtual void label(const char* theLabel);
111 virtual void B(int cc, const char* label);
112 virtual void BL(int cc, const char* label);
114 virtual uint32_t* pcForLabel(const char* label);
176 inline branch_target_t() : label(0), pc(0) { }
178 : label(l), pc(p) { }
179 const char* label; member in struct:android::ARMAssembler::branch_target_t
H A DARMAssemblerInterface.h145 virtual void label(const char* theLabel) = 0;
146 virtual void B(int cc, const char* label) = 0;
147 virtual void BL(int cc, const char* label) = 0;
150 virtual uint32_t* pcForLabel(const char* label) = 0;
H A DARMAssemblerProxy.cpp198 void ARMAssemblerProxy::label(const char* theLabel) { function in class:android::ARMAssemblerProxy
199 mTarget->label(theLabel);
201 void ARMAssemblerProxy::B(int cc, const char* label) { argument
202 mTarget->B(cc, label);
204 void ARMAssemblerProxy::BL(int cc, const char* label) { argument
205 mTarget->BL(cc, label);
208 uint32_t* ARMAssemblerProxy::pcForLabel(const char* label) { argument
209 return mTarget->pcForLabel(label);

Completed in 1844 milliseconds

12