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

/system/vold/
H A DVolumeManager.h83 int mountVolume(const char *label);
84 int unmountVolume(const char *label, bool force);
85 int shareVolume(const char *label, const char *method);
86 int unshareVolume(const char *label, const char *method);
90 int formatVolume(const char *label);
127 Volume *lookupVolume(const char *label);
H A Dmain.cpp155 char *type, *label, *mount_point; local
167 if (!(label = strsep(&next, " \t"))) {
168 SLOGE("Error parsing label");
190 dv = new DirectVolume(vm, label, mount_point, -1);
192 dv = new DirectVolume(vm, label, mount_point, atoi(part));
198 label);
H A DDirectVolume.h40 DirectVolume(VolumeManager *vm, const char *label, const char *mount_point, int partIdx);
H A DVolume.h62 Volume(VolumeManager *vm, const char *label, const char *mount_point);
H A DVolumeManager.cpp249 int VolumeManager::formatVolume(const char *label) { argument
250 Volume *v = lookupVolume(label);
909 int VolumeManager::mountVolume(const char *label) { argument
910 Volume *v = lookupVolume(label);
976 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { argument
977 Volume *v = lookupVolume(label);
1015 int VolumeManager::shareVolume(const char *label, const char *method) { argument
1016 Volume *v = lookupVolume(label);
1089 int VolumeManager::unshareVolume(const char *label, const char *method) { argument
1090 Volume *v = lookupVolume(label);
1135 unmountVolume(const char *label, bool force) argument
1163 lookupVolume(const char *label) argument
[all...]
H A DDirectVolume.cpp35 DirectVolume::DirectVolume(VolumeManager *vm, const char *label, argument
37 Volume(vm, label, mount_point) {
H A DVolume.cpp106 Volume::Volume(VolumeManager *vm, const char *label, const char *mount_point) { argument
109 mLabel = strdup(label);
/system/core/toolbox/
H A Dgetevent.c31 const char* label; local
52 label = "SYN";
56 label = "KEY";
59 label = "REL";
62 label = "ABS";
65 label = "MSC";
69 label = "LED";
73 label = "SND";
77 label = "SW ";
80 label
[all...]
H A Dnetstat.c91 static void ipv4(const char *filename, const char *label) { argument
111 label, txq, rxq, lip, rip,
118 static void ipv6(const char *filename, const char *label) { argument
139 label, txq, rxq, lip, rip,
H A Dnewfs_msdos.c141 u_int8_t label[11]; /* volume label */ member in struct:bsx
302 errx(1, "%s: bad volume label", optarg);
678 mklabel(bsx->label, opt_L ? opt_L : "NO NAME");
1013 * Check a volume label.
1029 * Make a volume label.
1066 "\t-L volume label\n"
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.h79 virtual void label(const char* theLabel);
80 virtual void B(int cc, const char* label);
81 virtual void BL(int cc, const char* label);
83 virtual uint32_t* pcForLabel(const char* label);
142 inline branch_target_t() : label(0), pc(0) { }
144 : label(l), pc(p) { }
145 const char* label; member in struct:android::ARMAssembler::branch_target_t
H A DARMAssemblerProxy.h69 virtual void label(const char* theLabel);
70 virtual void B(int cc, const char* label);
71 virtual void BL(int cc, const char* label);
73 uint32_t* pcForLabel(const char* label);
H A DARMAssembler.cpp89 ssize_t label = mLabelsInverseMapping.indexOfKey(i); local
90 if (label >= 0) {
91 printf("%s:\n", mLabelsInverseMapping.valueAt(label));
108 void ARMAssembler::label(const char* theLabel) function in class:android::ARMAssembler
114 void ARMAssembler::B(int cc, const char* label) argument
116 mBranchTargets.add(branch_target_t(label, mPC));
120 void ARMAssembler::BL(int cc, const char* label) argument
122 mBranchTargets.add(branch_target_t(label, mPC));
168 uint32_t* target_pc = mLabels.valueFor(bt.label);
199 uint32_t* ARMAssembler::pcForLabel(const char* label) argument
[all...]
H A DARMAssemblerProxy.cpp107 void ARMAssemblerProxy::label(const char* theLabel) { function in class:android::ARMAssemblerProxy
108 mTarget->label(theLabel);
110 void ARMAssemblerProxy::B(int cc, const char* label) { argument
111 mTarget->B(cc, label);
113 void ARMAssemblerProxy::BL(int cc, const char* label) { argument
114 mTarget->BL(cc, label);
117 uint32_t* ARMAssemblerProxy::pcForLabel(const char* label) { argument
118 return mTarget->pcForLabel(label);
H A DARMAssemblerInterface.h137 virtual void label(const char* theLabel) = 0;
138 virtual void B(int cc, const char* label) = 0;
139 virtual void BL(int cc, const char* label) = 0;
142 virtual uint32_t* pcForLabel(const char* label) = 0;
H A DGGLAssembler.cpp200 label("fragment_loop");
323 label("epilog");
328 label("discard_before_textures");
331 label("discard_after_textures");
/system/extras/ext4_utils/
H A Dmake_ext4fs_main.c35 fprintf(stderr, " [ -L <label> ] [ -f ] [ -a <android mountpoint> ]\n");
71 info.label = optarg;
H A Dmake_ext4fs.c263 if (info.label == NULL)
264 info.label = "";
287 printf(" Label: %s\n", info.label);
H A Dext4_utils.h85 const char *label; member in struct:fs_info
H A Dext4_utils.c200 generate_uuid("extandroid/make_ext4fs", info.label, sb->s_uuid);
202 strncpy(sb->s_volume_name, info.label, sizeof(sb->s_volume_name));
/system/core/libcutils/
H A Dtzstrftime.c157 label:
236 goto label;
243 goto label;
H A Dtztime.c1829 goto label;
1834 label:
/system/core/logcat/
H A Dlogcat.cpp60 char label; member in struct:log_device_t
68 label = l;
181 binaryMsgBuf[0] = dev->label;
/system/core/adb/
H A Dadb.h218 void print_packet(const char *label, apacket *p);
H A Dadb.c158 void print_packet(const char *label, apacket *p) argument
175 label, tag, p->msg.arg0, p->msg.arg1, p->msg.data_length);

Completed in 528 milliseconds