Searched defs:label (Results 1 - 22 of 22) sorted by relevance

/system/core/libpixelflinger/codeflinger/
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 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.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 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 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...]
/system/core/toolbox/
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 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 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 Dnewfs_msdos.c141 u_int8_t label[11]; /* volume label */ member in struct:bsx
302 errx(1, "%s: bad volume label", optarg);
679 mklabel(bsx->label, opt_L ? opt_L : "NO NAME");
1014 * Check a volume label.
1030 * Make a volume label.
1067 "\t-L volume label\n"
/system/netd/
H A DNetlinkHandler.cpp79 const char *label = evt->findParam("LABEL"); local
82 if (label == NULL) {
83 label = evt->findParam("INTERFACE");
86 notifyInterfaceClassActivity(label, !strcmp("active", state));
/system/vold/
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);
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 DVolume.cpp115 Volume::Volume(VolumeManager *vm, const char *label, const char *mount_point) { argument
118 mLabel = strdup(label);
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 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...]
/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 Dext4_utils.h120 const char *label; member in struct:fs_info
/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/logcat/
H A Dlogcat.cpp60 char label; member in struct:log_device_t
68 label = l;
181 binaryMsgBuf[0] = dev->label;
/system/core/toolbox/grep/
H A Dgrep.c73 /* 6*/ "\t[--context[=num]] [--directories=action] [--label] [--line-buffered]\n",
120 char *label; /* --label */ variable
178 {"label", required_argument, NULL, LABEL_OPT},
606 label = optarg;
/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);

Completed in 197 milliseconds