Searched refs:label (Results 1 - 25 of 44) sorted by relevance

12

/system/vold/
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, bool wipe);
138 Volume *lookupVolume(const char *label);
163 int vold_disableVol(const char *label);
H A Dcryptfs.h128 char label[256]; member in struct:volume_info
147 int cryptfs_setup_volume(const char *label, int major, int minor,
150 int cryptfs_revert_volume(const char *label);
H A DVolumeManager.cpp171 int VolumeManager::formatVolume(const char *label, bool wipe) { argument
172 Volume *v = lookupVolume(label);
1272 int VolumeManager::mountVolume(const char *label) { argument
1273 Volume *v = lookupVolume(label);
1328 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { argument
1329 Volume *v = lookupVolume(label);
1349 int VolumeManager::shareVolume(const char *label, const char *method) { argument
1350 Volume *v = lookupVolume(label);
1432 int VolumeManager::unshareVolume(const char *label, const char *method) { argument
1433 Volume *v = lookupVolume(label);
1478 vold_disableVol(const char *label) argument
1524 unmountVolume(const char *label, bool force, bool revert) argument
1608 lookupVolume(const char *label) argument
[all...]
H A DDirectVolume.cpp53 snprintf(mount, PATH_MAX, "%s/%s", Volume::MEDIA_DIR, rec->label);
55 snprintf(mount, PATH_MAX, "%s/%s", Volume::FUSE_DIR, rec->label);
459 strcpy(v->label, mLabel);
H A Dcryptfs.c1194 static int test_mount_encrypted_fs(char *passwd, char *mount_point, char *label) argument
1232 real_blkdev, crypto_blkdev, label)) {
1248 delete_crypto_blk_dev(label);
1301 int cryptfs_revert_volume(const char *label) argument
1303 return delete_crypto_blk_dev((char *)label);
1311 int cryptfs_setup_volume(const char *label, int major, int minor, argument
1335 crypto_blkdev, label);
1676 ret=vold_disableVol(vol_list[i].label);
1680 SLOGE("Failed to unmount volume %s\n", vol_list[i].label);
1802 vol_list[i].label);
[all...]
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.h109 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 in struct:android::ArmToMipsAssembler::cond_mode_t
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);
420 const char* label; member in struct:android::MIPSAssembler::branch_target_t
[all...]
H A DMIPSAssembler.cpp137 void ArmToMipsAssembler::label(const char* theLabel) function in class:android::ArmToMipsAssembler
139 mMips->label(theLabel);
151 sprintf(cond.label[i], "cond_%d", i);
194 uint32_t* ArmToMipsAssembler::pcForLabel(const char* label) argument
196 return mMips->pcForLabel(label);
427 ArmToMipsAssembler::B(cc^1, cond.label[++cond.labelnum]);
597 mMips->label(cond.label[cond.labelnum]);
705 void ArmToMipsAssembler::B(int cc, const char* label) argument
711 case EQ: mMips->BEQ(cond.r1, cond.r2, label); brea
735 BL(int cc, const char* label) argument
1349 ssize_t label = mLabelsInverseMapping.indexOfKey(mipsPC); local
1371 void MIPSAssembler::label(const char* theLabel) function in class:android::MIPSAssembler
1427 pcForLabel(const char* label) argument
1801 B(const char* label) argument
1812 BEQ(int Rs, int Rt, const char* label) argument
1819 BNE(int Rs, int Rt, const char* label) argument
1826 BLEZ(int Rs, const char* label) argument
1833 BLTZ(int Rs, const char* label) argument
1840 BGTZ(int Rs, const char* label) argument
1848 BGEZ(int Rs, const char* label) argument
1868 BEQZ(int Rs, const char* label) argument
1873 BNEZ(int Rs, const char* label) argument
1878 BGE(int Rs, int Rt, const char* label) argument
1884 BGEU(int Rs, int Rt, const char* label) argument
1890 BGT(int Rs, int Rt, const char* label) argument
1896 BGTU(int Rs, int Rt, const char* label) argument
1902 BLE(int Rs, int Rt, const char* label) argument
1908 BLEU(int Rs, int Rt, const char* label) argument
1914 BLT(int Rs, int Rt, const char* label) argument
1920 BLTU(int Rs, int Rt, const char* label) argument
[all...]
H A DARMAssembler.h109 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);
175 inline branch_target_t() : label(0), pc(0) { }
177 : label(l), pc(p) { }
178 const char* label; member in struct:android::ARMAssembler::branch_target_t
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);
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 DARMAssemblerProxy.h98 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);
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;
/system/core/toolbox/
H A Dgetevent.c35 static const char *get_label(const struct label *labels, int value)
79 const char* label; local
82 struct label* bit_labels;
103 label = "KEY";
107 label = "REL";
111 label = "ABS";
115 label = "MSC";
120 label = "LED";
125 label = "SND";
130 label
[all...]
H A Dnetstat.c91 static void ipv4(const char *filename, const char *label) { argument
111 label, rxq, txq, lip, rip,
118 static void ipv6(const char *filename, const char *label) { argument
139 label, rxq, txq, lip, rip,
H A Dgetevent.h3 struct label { struct
11 static struct label input_prop_labels[] = {
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_label
[all...]
H A Drestorecon.c9 #include <selinux/label.h>
43 fprintf(stderr, "Could not label %s with %s: %s\n",
/system/netd/
H A DNetlinkHandler.cpp87 const char *label = evt->findParam("LABEL"); local
90 if (label == NULL) {
91 label = evt->findParam("INTERFACE");
94 notifyInterfaceClassActivity(label, !strcmp("active", state));
/system/core/fs_mgr/include/
H A Dfs_mgr.h43 char *label; member in struct:fstab_rec
/system/extras/cpustats/
H A Dcpustats.c60 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu,
293 char label[8]; local
301 sprintf(label, "cpu%d", i);
302 print_cpu_stats(label, &new_cpus[i], &old_cpus[i], print_freq);
310 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu, argument
317 "%ld\n", label,
330 printf("%s,%ld,%ld,%ld,%ld,%ld,%ld,%ld", label,
/system/extras/ext4_utils/
H A Dmake_ext4fs_main.c34 #include <selinux/label.h>
54 fprintf(stderr, " [ -L <label> ] [ -f ] [ -a <android mountpoint> ]\n");
100 info.label = optarg;
H A Dext4_utils.c182 generate_uuid("extandroid/make_ext4fs", info.label, sb->s_uuid);
184 strncpy(sb->s_volume_name, info.label, sizeof(sb->s_volume_name));
283 info.label = sb->s_volume_name;
H A Dext4_utils.h130 const char *label; member in struct:fs_info
H A Dmake_ext4fs.c63 #include <selinux/label.h>
512 if (info.label == NULL)
513 info.label = "";
540 printf(" Label: %s\n", info.label);
/system/core/toolbox/grep/
H A Dgrep.h127 extern char *label;
/system/core/fs_mgr/
H A Dfs_mgr.c105 char *label; member in struct:fs_mgr_flag_values
183 * label, a colon and the partition number or the
195 flag_vals->label = strndup(label_start,
418 fstab->recs[cnt].label = flag_vals.label;
444 free(fstab->recs[i].label);

Completed in 236 milliseconds

12