Searched refs:type (Results 226 - 250 of 592) sorted by relevance

1234567891011>>

/system/core/adb/
H A Dadb.cpp297 const std::string& type = pieces[0]; local
298 if (type == "bootloader") {
302 } else if (type == "device") {
306 } else if (type == "recovery") {
310 } else if (type == "sideload") {
924 int handle_forward_request(const char* service, TransportType type, const char* serial, int reply_fd) argument
978 atransport* transport = acquire_one_transport(type, serial, nullptr, &error_msg);
1037 int handle_host_request(const char* service, TransportType type, argument
1060 TransportType type = kTransportAny; local
1063 type
[all...]
H A Dline_printer.cpp68 void LinePrinter::Print(string to_print, LineType type) { argument
79 if (type == INFO) {
H A Dshell_service.h145 SubprocessType type, SubprocessProtocol protocol);
H A Dtransport_usb.cpp92 t->type = kTransportUsb;
/system/core/debuggerd/crasher/arm64/
H A Dcrashglue.S2 .type crash1, %function
74 .type crashnostack, %function
/system/core/libpixelflinger/codeflinger/
H A DARMAssemblerProxy.cpp93 uint32_t ARMAssemblerProxy::reg_imm(int Rm, int type, uint32_t shift) argument
95 return mTarget->reg_imm(Rm, type, shift);
103 uint32_t ARMAssemblerProxy::reg_reg(int Rm, int type, int Rs) argument
105 return mTarget->reg_reg(Rm, type, Rs);
122 uint32_t ARMAssemblerProxy::reg_scale_pre(int Rm, int type, uint32_t shift, int W) argument
124 return mTarget->reg_scale_pre(Rm, type, shift, W);
127 uint32_t ARMAssemblerProxy::reg_scale_post(int Rm, int type, uint32_t shift) argument
129 return mTarget->reg_scale_post(Rm, type, shift);
/system/core/libunwindstack/
H A DElfInterfaceArm.cpp82 bool ElfInterfaceArm::HandleType(uint64_t offset, uint32_t type) { argument
83 if (type != PT_ARM_EXIDX) {
/system/extras/verity/
H A Dbuild_verity_metadata.py90 parser_size.add_argument('partition_size', type=int, action='store', help='partition size')
94 parser_build.add_argument('blocks', type=int, help='data image blocks')
/system/keymaster/
H A Dopenssl_utils.cpp97 if (EVP_PKEY_type((*pkey)->type) != convert_to_evp(expected_algorithm)) {
98 LOG_E("EVP key algorithm was %d, not the expected %d", EVP_PKEY_type((*pkey)->type),
/system/sepolicy/tools/sepolicy-analyze/
H A Dneverallow.c28 type_datum_t *type; local
113 type = hashtab_search(policydb->p_types.table, id);
114 if (!type) {
122 if (type->flavor == TYPE_ATTRIB) {
124 rc = ebitmap_union(&typeset->negset, &policydb->attr_type_map[type->s.value - 1]);
126 rc = ebitmap_union(&typeset->types, &policydb->attr_type_map[type->s.value - 1]);
128 rc = ebitmap_set_bit(&typeset->negset, type->s.value - 1, 1);
130 rc = ebitmap_set_bit(&typeset->types, type->s.value - 1, 1);
/system/update_engine/payload_consumer/
H A Dinstall_plan.cc30 string InstallPayloadTypeToString(InstallPayloadType type) { argument
31 switch (type) {
39 return "invalid type";
73 << ", payload type: " << InstallPayloadTypeToString(payload_type)
/system/update_engine/update_manager/
H A Dboxed_value.cc110 ConnectionType type = it; local
113 ret += StringForConnectionType(type);
/system/vold/
H A DDisk.cpp140 void Disk::listVolumes(VolumeBase::Type type, std::list<std::string>& list) { argument
142 if (vol->getType() == type) {
277 LOG(WARNING) << "Unsupported block major type " << majorId;
320 const char* type = strtok(nullptr, kSgdiskToken); local
321 if (!strcmp(type, "mbr")) {
323 } else if (!strcmp(type, "gpt")) {
337 const char* type = strtok(nullptr, kSgdiskToken); local
339 switch (strtol(type, nullptr, 16)) {
424 pinfo->type = PC_PART_TYPE_FAT32;
576 LOG(ERROR) << "Unsupported block major type " << majorI
[all...]
H A Dcryptfs.h66 /* Allowed values for type in the structure below */
69 * devices where type is always password.*/
74 #define CRYPT_TYPE_MAX_TYPE 3 /* type cannot be larger than this value */
107 unsigned char crypto_type_name[MAX_CRYPTO_TYPE_NAME_LEN]; /* The type of encryption
234 int cryptfs_enable(char *flag, int type, char *passwd, int no_ui);
235 int cryptfs_changepw(int type, const char *newpw);
/system/bt/stack/bnep/
H A Dbnep_main.cc436 uint8_t type, ctrl_type, ext_type = 0; local
449 /* Get the type and extension bits */
450 type = *p++;
451 extension_present = type >> 7;
452 type &= 0x7f;
453 if ((rem_len <= bnep_frame_hdr_sizes[type]) || (rem_len > BNEP_MTU_SIZE)) {
454 BNEP_TRACE_EVENT("BNEP - rcvd frame, bad len: %d type: 0x%02x", p_buf->len,
455 type);
464 (type != BNEP_FRAME_CONTROL)) {
499 if (type > BNEP_FRAME_COMPRESSED_ETHERNET_DEST_ONL
[all...]
/system/tools/aidl/
H A Dgenerate_java_binder.cpp37 StubClass(const Type* type, const InterfaceType* interfaceType,
54 StubClass::StubClass(const Type* type, const InterfaceType* interfaceType, argument
60 this->type = type;
152 // Ensure the instance type of the local object is as expected.
179 ProxyClass(const JavaTypeNamespace* types, const Type* type,
187 ProxyClass::ProxyClass(const JavaTypeNamespace* types, const Type* type, argument
192 this->type = type;
325 c->statements->Add(new Assignment(v, new NewExpression(v->type)));
[all...]
H A Dgenerate_cpp.cpp116 const Type* type = a->GetType().GetLanguageType<Type>(); local
118 literal = type->CppType();
125 if (!type->IsCppPrimitive() || a->GetType().IsArray()) {
203 string type = cpp_type->CppType(); local
205 b->AddLiteral(type + " " + BuildVarName(a));
209 string ClassName(const AidlInterface& interface, ClassNames type) { argument
215 switch (type) {
283 const Type* type = a->GetType().GetLanguageType<Type>(); local
285 var_name = type->WriteCast(var_name);
291 const string& method = type
451 const Type* type = a->GetType().GetLanguageType<Type>(); local
509 const Type* type = a->GetType().GetLanguageType<Type>(); local
703 const Type* type = argument->GetType().GetLanguageType<Type>(); local
[all...]
/system/bt/btif/include/
H A Dbtif_util.h56 const char* dump_property_type(bt_property_type_t type);
/system/bt/hci/include/
H A Dhci_layer.h85 void (*transmit_downward)(data_dispatcher_type_t type, void* data);
/system/bt/service/test/
H A Dipc_linux_unittest.cc133 void OnIPCHandlerStarted(ipc::IPCManager::Type type) override {
134 ASSERT_EQ(ipc::IPCManager::TYPE_LINUX, type);
139 void OnIPCHandlerStopped(ipc::IPCManager::Type type) override {
140 ASSERT_EQ(ipc::IPCManager::TYPE_LINUX, type);
/system/bt/stack/include/
H A Dhidd_api.h127 extern tHID_STATUS HID_DevSendReport(uint8_t channel, uint8_t type, uint8_t id,
/system/bt/vendor_libs/test_vendor_lib/include/
H A Dpacket.h29 // Abstract base class that is subclassed to provide type-specifc accessors on
36 // Returns the size in octets of the entire packet, which consists of the type
62 // Add type-checking versions
75 // Constructs an empty packet of type |type| and header |header|
76 Packet(serial_data_type_t type, std::vector<uint8_t> header);
86 // The packet type is one of DATA_TYPE_ACL, DATA_TYPE_COMMAND,
/system/chre/core/include/chre/core/
H A Devent_loop_manager.h35 //! An identifier for a system callback, which is mapped into a CHRE event type
90 * @param type An identifier for the callback, which is passed through to the
95 bool deferCallback(SystemCallbackType type, void *data,
144 * @param The type of data being posted.
H A Dhost_comms_manager.h177 * @param type Event type
180 static void freeMessageFromHostCallback(uint16_t type, void *data);
/system/chre/util/include/chre/util/
H A Dfixed_size_vector.h176 alignof(ElementType)>::type mData[kCapacity];

Completed in 2404 milliseconds

1234567891011>>