Home
last modified time | relevance | path

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

12

/system/core/libpixelflinger/codeflinger/
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
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 …]
DMIPSAssembler.cpp137 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 …]
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) { } in branch_target_t()
177 : label(l), pc(p) { } in branch_target_t()
178 const char* label; member
DARMAssemblerProxy.cpp198 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()
DARMAssembler.cpp94 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 …]
DArm64Assembler.h117 virtual void label(const char* theLabel);
118 virtual void B(int cc, const char* label);
119 virtual void BL(int cc, const char* label);
121 virtual uint32_t* pcForLabel(const char* label);
253 inline branch_target_t() : label(0), pc(0) { } in branch_target_t()
255 : label(l), pc(p) { } in branch_target_t()
256 const char* label; member
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);
DArm64Assembler.cpp236 ssize_t label = mLabelsInverseMapping.indexOfKey(i); in disassemble() local
237 if (label >= 0) in disassemble()
239 printf("%s:\n", mLabelsInverseMapping.valueAt(label)); in disassemble()
262 void ArmToArm64Assembler::label(const char* theLabel) in label() function in android::ArmToArm64Assembler
269 void ArmToArm64Assembler::B(int cc, const char* label) in B() argument
271 mBranchTargets.add(branch_target_t(label, mPC)); in B()
272 LOG_INSTR("B%s %s\n", cc_codes[cc], label ); in B()
306 uint32_t* target_pc = mLabels.valueFor(bt.label); in generate()
332 uint32_t* ArmToArm64Assembler::pcForLabel(const char* label) in pcForLabel() argument
334 return mLabels.valueFor(label); in pcForLabel()
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/vold/
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);
139 Volume *lookupVolume(const char *label);
164 int vold_disableVol(const char *label);
Dcryptfs.h182 char label[256]; member
235 int cryptfs_setup_volume(const char *label, int major, int minor,
238 int cryptfs_revert_volume(const char *label);
DVolumeManager.cpp293 int VolumeManager::formatVolume(const char *label, bool wipe) { in formatVolume() argument
294 Volume *v = lookupVolume(label); in formatVolume()
1457 int VolumeManager::mountVolume(const char *label) { in mountVolume() argument
1458 Volume *v = lookupVolume(label); in mountVolume()
1513 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { in shareEnabled() argument
1514 Volume *v = lookupVolume(label); in shareEnabled()
1534 int VolumeManager::shareVolume(const char *label, const char *method) { in shareVolume() argument
1535 Volume *v = lookupVolume(label); in shareVolume()
1617 int VolumeManager::unshareVolume(const char *label, const char *method) { in unshareVolume() argument
1618 Volume *v = lookupVolume(label); in unshareVolume()
[all …]
DDirectVolume.cpp91 snprintf(mount, PATH_MAX, "%s/%s", Volume::MEDIA_DIR, rec->label); in DirectVolume()
93 snprintf(mount, PATH_MAX, "%s/%s", Volume::FUSE_DIR, rec->label); in DirectVolume()
496 strcpy(v->label, mLabel); in getVolInfo()
Dmain.cpp193 fstab->recs[i].blk_device, fstab->recs[i].label); in process_config()
/system/core/toolbox/
Dgetevent.c35 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 …]
Dnetstat.c91 static void ipv4(const char *filename, const char *label) { in ipv4() argument
111 label, rxq, txq, lip, rip, in ipv4()
118 static void ipv6(const char *filename, const char *label) { in ipv6() argument
139 label, rxq, txq, lip, rip, in ipv6()
Dgetevent.h3 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/extras/cpustats/
Dcpustats.c60 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/fs_mgr/
Dfs_mgr_fstab.c28 char *label; member
135 flag_vals->label = strndup(label_start, in parse_flags()
296 fstab->recs[cnt].label = flag_vals.label; in fs_mgr_read_fstab()
329 free(fstab->recs[i].label); in fs_mgr_free_fstab()
/system/extras/ext4_utils/
Dext4_sb.h42 const char *label; member
Dext4_sb.c40 info->label = sb->s_volume_name; in ext4_parse_sb()
/system/core/fs_mgr/include/
Dfs_mgr.h55 char *label; member
/system/netd/server/
DNetlinkHandler.cpp113 const char *label = evt->findParam("INTERFACE"); in onEvent() local
117 notifyInterfaceClassActivity(label, !strcmp("active", state), timestamp); in onEvent()
/system/core/debuggerd/
Dtombstone.cpp235 Backtrace* backtrace, log_t* log, uintptr_t* sp, size_t words, int label) { in dump_stack_segment() argument
252 if (!i && label >= 0) { in dump_stack_segment()
255 label, *sp, stack_content, map_name, func_name.c_str(), offset); in dump_stack_segment()
258 label, *sp, stack_content, map_name, func_name.c_str()); in dump_stack_segment()
270 if (!i && label >= 0) { in dump_stack_segment()
272 label, *sp, stack_content, map_name); in dump_stack_segment()
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dgrep.h123 extern char *label;

12