Home
last modified time | relevance | path

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

1234

/system/extras/tests/workloads/
Dsystemapps.sh76 label=$1
85 curMax=$(eval "echo \$${label}max")
87 curMin=$(eval "echo \$${label}min")
89 curSum=$(eval "echo \$${label}sum")
91 curRestart=$(eval "echo \$${label}restart")
93 curReclaim=$(eval "echo \$${label}reclaim")
95 curFrames=$(eval "echo \$${label}frames")
97 curJanks=$(eval "echo \$${label}janks")
99 cur90=$(eval "echo \$${label}90")
101 cur95=$(eval "echo \$${label}95")
[all …]
/system/bt/stack/include/
Davdtc_api.h90 extern void AVDTC_DiscoverRsp(BD_ADDR bd_addr, UINT8 label,
102 extern void AVDTC_GetCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
113 extern void AVDTC_GetAllCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
135 extern void AVDTC_GetConfigRsp(UINT8 handle, UINT8 label, tAVDT_CFG *p_cfg);
157 extern void AVDTC_OpenRsp(UINT8 handle, UINT8 label);
168 extern void AVDTC_StartRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
179 extern void AVDTC_CloseRsp(UINT8 handle, UINT8 label);
190 extern void AVDTC_SuspendRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
212 extern void AVDTC_AbortRsp(UINT8 handle, UINT8 label);
223 extern void AVDTC_Rej(UINT8 handle, BD_ADDR bd_addr, UINT8 cmd, UINT8 label,
Davrc_api.h159 typedef void (tAVRC_MSG_CBACK) (UINT8 handle, UINT8 label, UINT8 opcode,
370 extern UINT16 AVRC_MsgReq (UINT8 handle, UINT8 label, UINT8 ctype, BT_HDR *p_pkt);
393 extern UINT16 AVRC_UnitCmd(UINT8 handle, UINT8 label);
420 extern UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page);
446 extern UINT16 AVRC_PassCmd(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg);
473 extern UINT16 AVRC_PassRsp(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg);
499 extern UINT16 AVRC_VendorCmd(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg);
527 extern UINT16 AVRC_VendorRsp(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg);
/system/vold/
DEmulatedVolume.cpp59 std::string label = mLabel; in doMount() local
61 label = "emulated"; in doMount()
64 mFuseDefault = StringPrintf("/mnt/runtime/default/%s", label.c_str()); in doMount()
65 mFuseRead = StringPrintf("/mnt/runtime/read/%s", label.c_str()); in doMount()
66 mFuseWrite = StringPrintf("/mnt/runtime/write/%s", label.c_str()); in doMount()
69 setPath(StringPrintf("/storage/%s", label.c_str())); in doMount()
87 label.c_str(), in doMount()
/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
258 virtual void label(const char* string);
261 virtual uint32_t* pcForLabel(const char* label);
363 void B(const char* label);
364 void BEQ(int Rs, int Rt, const char* label);
365 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
DMIPS64Assembler.cpp118 void ArmToMips64Assembler::label(const char* theLabel) in label() function in android::ArmToMips64Assembler
120 mMips->label(theLabel); in label()
132 sprintf(cond.label[i], "cond_%d", i); in init_conditional_labels()
180 uint32_t* ArmToMips64Assembler::pcForLabel(const char* label) in pcForLabel() argument
182 return mMips->pcForLabel(label); in pcForLabel()
410 ArmToMips64Assembler::B(cc^1, cond.label[++cond.labelnum]); in dataProcessing()
588 mMips->label(cond.label[cond.labelnum]); in dataProcessing()
697 void ArmToMips64Assembler::B(int cc, const char* label) in B() argument
703 case EQ: mMips->BEQ(cond.r1, cond.r2, label); break; in B()
704 case NE: mMips->BNE(cond.r1, cond.r2, label); break; in B()
[all …]
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 …]
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()
/system/bt/stack/avct/
Davct_defs.h51 #define AVCT_BLD_HDR(p, label, type, cr_ipid) \ argument
52 *(p)++ = ((label) << 4) | ((type) << 2) | (cr_ipid);
54 #define AVCT_PRS_HDR(p, label, type, cr_ipid) \ argument
55 label = *(p) >> 4; \
/system/bt/stack/avrc/
Davrc_opt.c97 UINT16 AVRC_UnitCmd(UINT8 handle, UINT8 label) in AVRC_UnitCmd() argument
112 return AVCT_MsgReq(handle, label, AVCT_CMD, p_cmd); in AVRC_UnitCmd()
140 UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page) in AVRC_SubCmd() argument
156 return AVCT_MsgReq(handle, label, AVCT_CMD, p_cmd); in AVRC_SubCmd()
182 UINT16 AVRC_VendorCmd(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorCmd() argument
186 return AVCT_MsgReq( handle, label, AVCT_CMD, p_buf); in AVRC_VendorCmd()
217 UINT16 AVRC_VendorRsp(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorRsp() argument
221 return AVCT_MsgReq( handle, label, AVCT_RSP, p_buf); in AVRC_VendorRsp()
Davrc_api.c183 static void avrc_send_continue_frag(UINT8 handle, UINT8 label) in avrc_send_continue_frag() argument
194 __func__, handle, label, p_pkt->len); in avrc_send_continue_frag()
220 AVCT_MsgReq( handle, label, cr, p_pkt); in avrc_send_continue_frag()
232 static BT_HDR * avrc_proc_vendor_command(UINT8 handle, UINT8 label, in avrc_proc_vendor_command() argument
278 AVCT_MsgReq( handle, label, AVCT_RSP, p_pkt); in avrc_proc_vendor_command()
285 avrc_send_continue_frag(handle, label); in avrc_proc_vendor_command()
343 static UINT8 avrc_proc_far_msg(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR **pp_pkt, in avrc_proc_far_msg() argument
471 p_rsp = avrc_proc_vendor_command(handle, label, *pp_pkt, p_msg); in avrc_proc_far_msg()
474 AVCT_MsgReq( handle, label, AVCT_RSP, p_rsp); in avrc_proc_far_msg()
493 AVRC_MsgReq (handle, (UINT8)(label), AVRC_CMD_CTRL, p_cmd); in avrc_proc_far_msg()
[all …]
/system/bt/bta/av/
Dbta_av_api.c420 void BTA_AvRemoteCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_RC rc_id, tBTA_AV_STATE key_state) in BTA_AvRemoteCmd() argument
431 p_buf->label = label; in BTA_AvRemoteCmd()
447 void BTA_AvRemoteVendorUniqueCmd(UINT8 rc_handle, UINT8 label, in BTA_AvRemoteVendorUniqueCmd() argument
455 p_buf->label = label; in BTA_AvRemoteVendorUniqueCmd()
481 void BTA_AvVendorCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE cmd_code, UINT8 *p_data, UINT16 len) in BTA_AvVendorCmd() argument
492 p_buf->label = label; in BTA_AvVendorCmd()
516 void BTA_AvVendorRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code, UINT8 *p_data, UINT16 len… in BTA_AvVendorRsp() argument
530 p_buf->label = label; in BTA_AvVendorRsp()
595 void BTA_AvMetaRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code, in BTA_AvMetaRsp() argument
606 p_buf->label = label; in BTA_AvMetaRsp()
[all …]
/system/connectivity/shill/test-scripts/
Dcrypto_util_pb2.py82 number=1, type=12, cpp_type=9, label=1,
89 number=2, type=12, cpp_type=9, label=2,
117 number=1, type=14, cpp_type=8, label=2,
124 number=2, type=12, cpp_type=9, label=1,
152 number=1, type=12, cpp_type=9, label=1,
159 number=2, type=12, cpp_type=9, label=1,
166 number=3, type=12, cpp_type=9, label=1,
173 number=4, type=12, cpp_type=9, label=1,
201 number=1, type=14, cpp_type=8, label=2,
/system/tpm/attestation/client/
Dmain.cc287 void CallCreateGoogleAttestedKey(const std::string& label, in CallCreateGoogleAttestedKey() argument
290 request.set_key_label(label); in CallCreateGoogleAttestedKey()
301 void CallGetKeyInfo(const std::string& label, const std::string& username) { in CallGetKeyInfo() argument
303 request.set_key_label(label); in CallGetKeyInfo()
387 void CallCreateCertifiableKey(const std::string& label, in CallCreateCertifiableKey() argument
391 request.set_key_label(label); in CallCreateCertifiableKey()
401 void Encrypt(const std::string& label, in Encrypt() argument
405 request.set_key_label(label); in Encrypt()
423 void CallDecrypt(const std::string& label, in CallDecrypt() argument
427 request.set_key_label(label); in CallDecrypt()
[all …]
/system/core/toolbox/
Dgetevent.c15 struct label { struct
23 static struct label key_value_labels[] = { argument
54 static const char *get_label(const struct label *labels, int value) in get_label()
98 const char* label; in print_possible_events() local
101 struct label* bit_labels; in print_possible_events()
122 label = "KEY"; in print_possible_events()
126 label = "REL"; in print_possible_events()
130 label = "ABS"; in print_possible_events()
134 label = "MSC"; in print_possible_events()
139 label = "LED"; in print_possible_events()
[all …]
/system/bt/btif/src/
Dbtif_rc.c83 #define FILL_PDU_QUEUE(index, ctype, label, pending) \ argument
86 btif_rc_cb.rc_pdu_info[index].label = label; \
97 send_metamsg_rsp(btif_rc_cb.rc_handle, btif_rc_cb.rc_pdu_info[index].label, \
100 btif_rc_cb.rc_pdu_info[index].label = 0; \
109 UINT8 label; member
114 UINT8 label; member
134 UINT8 label; member
140 UINT8 label; member
145 UINT8 label; member
232 static void send_reject_response (UINT8 rc_handle, UINT8 label,
[all …]
/system/bt/bta/include/
Dbta_av_api.h380 UINT8 label; member
392 UINT8 label; member
400 UINT8 label; member
411 UINT8 label; member
711 void BTA_AvRemoteCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_RC rc_id,
725 void BTA_AvRemoteVendorUniqueCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_STATE key_state,
739 void BTA_AvVendorCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE cmd_code,
754 void BTA_AvVendorRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code,
793 void BTA_AvMetaRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code,
810 void BTA_AvMetaCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CMD cmd_code, BT_HDR *p_pkt);
/system/sepolicy/
Dfs_use12 # Label inodes from task label.
16 # Label inodes from combination of task label and fs label.
/system/connectivity/shill/
Dpending_activation_store.cc65 string label; in FormattedIdentifier() local
68 label = "ICCID"; in FormattedIdentifier()
71 label = "MEID"; in FormattedIdentifier()
76 return "[" + label + "=" + identifier + "]"; in FormattedIdentifier()
/system/tpm/attestation/server/
Dpkcs11_key_store_test.cc183 std::string label = GetValue(attributes, CKA_LABEL); in CreateObject() local
184 handles_[*new_object_handle] = label; in CreateObject()
185 values_[label] = GetValue(attributes, CKA_VALUE); in CreateObject()
186 labels_[label] = *new_object_handle; in CreateObject()
194 std::string label = handles_[object_handle]; in DestroyObject() local
196 values_.erase(label); in DestroyObject()
197 labels_.erase(label); in DestroyObject()
207 std::string label = handles_[object_handle]; in GetAttributeValue() local
208 std::string value = values_[label]; in GetAttributeValue()
213 value = label; in GetAttributeValue()
[all …]
/system/extras/simpleperf/
Dreport.py152 label = Label(frame, text=line, font=font)
153 label.pack(anchor=W, padx=PAD_X, pady=PAD_Y)
156 label = Label(frame, text='', font=font)
157 label.pack(anchor=W, padx=PAD_X, pady=PAD_Y)
160 label = Label(frame, text=' ' + title_line, font=font)
161 label.pack(anchor=W, padx=PAD_X, pady=PAD_Y)
/system/extras/cpustats/
Dcpustats.c61 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu,
300 char label[8]; in print_stats() local
308 sprintf(label, "cpu%d", i); in print_stats()
309 print_cpu_stats(label, &new_cpus[i], &old_cpus[i], print_freq); in print_stats()
317 static void print_cpu_stats(char *label, struct cpu_info *new_cpu, struct cpu_info *old_cpu, in print_cpu_stats() argument
324 "%ld\n", label, in print_cpu_stats()
337 printf("%s,%ld,%ld,%ld,%ld,%ld,%ld,%ld", label, in print_cpu_stats()
/system/extras/tests/net_test/
Dnet_test.py274 def MakeFlowLabelOption(addr, label): argument
290 label = htonl(label & 0xfffff)
295 return struct.pack(fmt, addr, label, action, share, flags, 0, 0, pad)
298 def SetFlowLabel(s, addr, label): argument
299 opt = MakeFlowLabelOption(addr, label)

1234