/system/vold/ |
D | VolumeManager.h | 81 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);
|
D | cryptfs.h | 68 char label[256]; member 82 int cryptfs_setup_volume(const char *label, int major, int minor, 85 int cryptfs_revert_volume(const char *label);
|
D | main.cpp | 173 char *type, *label, *mount_point, *mount_flags, *sysfs_path; in process_config() local 186 if (!(label = strtok_r(NULL, delim, &save_ptr))) { in process_config() 209 dv = new DirectVolume(vm, label, mount_point, -1); in process_config() 211 dv = new DirectVolume(vm, label, mount_point, atoi(part)); in process_config() 221 label); in process_config()
|
D | VolumeManager.cpp | 170 int VolumeManager::formatVolume(const char *label) { in formatVolume() argument 171 Volume *v = lookupVolume(label); in formatVolume() 1105 int VolumeManager::mountVolume(const char *label) { in mountVolume() argument 1106 Volume *v = lookupVolume(label); in mountVolume() 1161 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { in shareEnabled() argument 1162 Volume *v = lookupVolume(label); in shareEnabled() 1182 int VolumeManager::shareVolume(const char *label, const char *method) { in shareVolume() argument 1183 Volume *v = lookupVolume(label); in shareVolume() 1260 int VolumeManager::unshareVolume(const char *label, const char *method) { in unshareVolume() argument 1261 Volume *v = lookupVolume(label); in unshareVolume() [all …]
|
D | cryptfs.c | 779 static int test_mount_encrypted_fs(char *passwd, char *mount_point, char *label) in test_mount_encrypted_fs() argument 813 real_blkdev, crypto_blkdev, label)) { in test_mount_encrypted_fs() 829 delete_crypto_blk_dev(label); in test_mount_encrypted_fs() 870 int cryptfs_revert_volume(const char *label) in cryptfs_revert_volume() argument 872 return delete_crypto_blk_dev((char *)label); in cryptfs_revert_volume() 880 int cryptfs_setup_volume(const char *label, int major, int minor, in cryptfs_setup_volume() argument 906 crypto_blkdev, label); in cryptfs_setup_volume() 1223 ret=vold_disableVol(vol_list[i].label); in cryptfs_enable() 1227 SLOGE("Failed to unmount volume %s\n", vol_list[i].label); in cryptfs_enable() 1334 vol_list[i].label); in cryptfs_enable() [all …]
|
D | DirectVolume.h | 45 DirectVolume(VolumeManager *vm, const char *label, const char *mount_point, int partIdx);
|
D | DirectVolume.cpp | 36 DirectVolume::DirectVolume(VolumeManager *vm, const char *label, in DirectVolume() argument 38 Volume(vm, label, mount_point) { in DirectVolume() 453 strcpy(v->label, mLabel); in getVolInfo()
|
D | Volume.h | 65 Volume(VolumeManager *vm, const char *label, const char *mount_point);
|
/system/core/libpixelflinger/codeflinger/ |
D | MIPSAssembler.h | 109 virtual void label(const char* theLabel); 110 virtual void B(int cc, const char* label); 111 virtual void BL(int cc, const char* label); 113 virtual uint32_t* pcForLabel(const char* label); 226 char label[100][10]; member 257 void label(const char* string); 260 uint32_t* pcForLabel(const char* label); 362 void B(const char* label); 363 void BEQ(int Rs, int Rt, const char* label); 364 void BNE(int Rs, int Rt, const char* label); [all …]
|
D | MIPSAssembler.cpp | 137 void ArmToMipsAssembler::label(const char* theLabel) in label() function in android::ArmToMipsAssembler 139 mMips->label(theLabel); in label() 151 sprintf(cond.label[i], "cond_%d", i); in init_conditional_labels() 194 uint32_t* ArmToMipsAssembler::pcForLabel(const char* label) in pcForLabel() argument 196 return mMips->pcForLabel(label); in pcForLabel() 427 ArmToMipsAssembler::B(cc^1, cond.label[++cond.labelnum]); in dataProcessing() 597 mMips->label(cond.label[cond.labelnum]); in dataProcessing() 705 void ArmToMipsAssembler::B(int cc, const char* label) in B() argument 711 case EQ: mMips->BEQ(cond.r1, cond.r2, label); break; in B() 712 case NE: mMips->BNE(cond.r1, cond.r2, label); break; in B() [all …]
|
D | ARMAssembler.h | 110 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) { } in branch_target_t() 178 : label(l), pc(p) { } in branch_target_t() 179 const char* label; member
|
D | ARMAssemblerProxy.cpp | 198 void ARMAssemblerProxy::label(const char* theLabel) { in label() function in android::ARMAssemblerProxy 199 mTarget->label(theLabel); in label() 201 void ARMAssemblerProxy::B(int cc, const char* label) { in B() argument 202 mTarget->B(cc, label); in B() 204 void ARMAssemblerProxy::BL(int cc, const char* label) { in BL() argument 205 mTarget->BL(cc, label); in BL() 208 uint32_t* ARMAssemblerProxy::pcForLabel(const char* label) { in pcForLabel() argument 209 return mTarget->pcForLabel(label); in pcForLabel()
|
D | ARMAssembler.cpp | 94 ssize_t label = mLabelsInverseMapping.indexOfKey(i); in disassemble() local 95 if (label >= 0) { in disassemble() 96 printf("%s:\n", mLabelsInverseMapping.valueAt(label)); in disassemble() 113 void ARMAssembler::label(const char* theLabel) in label() function in android::ARMAssembler 119 void ARMAssembler::B(int cc, const char* label) in B() argument 121 mBranchTargets.add(branch_target_t(label, mPC)); in B() 125 void ARMAssembler::BL(int cc, const char* label) in BL() argument 127 mBranchTargets.add(branch_target_t(label, mPC)); in BL() 173 uint32_t* target_pc = mLabels.valueFor(bt.label); in generate() 204 uint32_t* ARMAssembler::pcForLabel(const char* label) in pcForLabel() argument [all …]
|
D | ARMAssemblerProxy.h | 98 virtual void label(const char* theLabel); 99 virtual void B(int cc, const char* label); 100 virtual void BL(int cc, const char* label); 102 uint32_t* pcForLabel(const char* label);
|
D | ARMAssemblerInterface.h | 145 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;
|
/system/core/toolbox/ |
D | getevent.c | 35 static const char *get_label(const struct label *labels, int value) in get_label() 79 const char* label; in print_possible_events() local 82 struct label* bit_labels; in print_possible_events() 103 label = "KEY"; in print_possible_events() 107 label = "REL"; in print_possible_events() 111 label = "ABS"; in print_possible_events() 115 label = "MSC"; in print_possible_events() 120 label = "LED"; in print_possible_events() 125 label = "SND"; in print_possible_events() 130 label = "SW "; in print_possible_events() [all …]
|
D | netstat.c | 91 static void ipv4(const char *filename, const char *label) { in ipv4() argument 111 label, txq, rxq, lip, rip, in ipv4() 118 static void ipv6(const char *filename, const char *label) { in ipv6() argument 139 label, txq, rxq, lip, rip, in ipv6()
|
D | getevent.h | 3 struct label { struct 11 static struct label input_prop_labels[] = { argument 19 static struct label ev_labels[] = { 35 static struct label syn_labels[] = { 43 static struct label key_labels[] = { 543 static struct label rel_labels[] = { 557 static struct label abs_labels[] = { 600 static struct label sw_labels[] = { 618 static struct label msc_labels[] = { 627 static struct label led_labels[] = { [all …]
|
/system/netd/ |
D | NetlinkHandler.cpp | 79 const char *label = evt->findParam("LABEL"); in onEvent() local 82 if (label == NULL) { in onEvent() 83 label = evt->findParam("INTERFACE"); in onEvent() 86 notifyInterfaceClassActivity(label, !strcmp("active", state)); in onEvent()
|
/system/extras/cpustats/ |
D | cpustats.c | 60 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu, 293 char label[8]; in print_stats() local 301 sprintf(label, "cpu%d", i); in print_stats() 302 print_cpu_stats(label, &new_cpus[i], &old_cpus[i], print_freq); in print_stats() 310 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu, in print_cpu_stats() argument 317 "%ld\n", label, in print_cpu_stats() 330 printf("%s,%ld,%ld,%ld,%ld,%ld,%ld,%ld", label, in print_cpu_stats()
|
/system/core/rootdir/etc/ |
D | vold.fstab | 8 ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...> 9 ## label - Label for the volume
|
/system/core/debuggerd/ |
D | tombstone.c | 221 bool only_in_tombstone, uintptr_t* sp, size_t words, int label) { in dump_stack_segment() argument 236 if (!i && label >= 0) { in dump_stack_segment() 239 label, *sp, stack_content, mi ? mi->name : "", symbol_name, offset); in dump_stack_segment() 242 label, *sp, stack_content, mi ? mi->name : "", symbol_name); in dump_stack_segment() 255 if (!i && label >= 0) { in dump_stack_segment() 257 label, *sp, stack_content, mi ? mi->name : ""); in dump_stack_segment()
|
/system/core/toolbox/grep/ |
D | grep.h | 127 extern char *label;
|
/system/extras/ext4_utils/ |
D | make_ext4fs_main.c | 90 info.label = optarg; in main()
|
D | ext4_utils.c | 180 generate_uuid("extandroid/make_ext4fs", info.label, sb->s_uuid); in ext4_fill_in_sb() 182 strncpy(sb->s_volume_name, info.label, sizeof(sb->s_volume_name)); in ext4_fill_in_sb() 281 info.label = sb->s_volume_name; in ext4_parse_sb()
|