Searched refs:type (Results 151 - 175 of 592) sorted by relevance

1234567891011>>

/system/core/libnetutils/
H A Ddhcpclient.c99 uint32_t type; member in struct:dhcp_info
134 static const char *dhcp_type_to_name(uint32_t type) argument
136 switch(type) {
153 dhcp_type_to_name(info->type), info->type);
221 info->type = *x;
416 info.type = 0;
431 if ( info.type == DHCPOFFER ) {
503 if (info.type == DHCPOFFER) {
511 if (info.type
[all...]
/system/core/libsystem/include/system/
H A Dradio.h42 /* value for field "type" of radio band described in struct radio_hal_band_config */
106 * The HAL can expose only one band per type with the the maximum range supported and all options.
110 radio_band_t type; member in struct:radio_hal_band_config
167 uint32_t channel; /* current channel. (e.g kHz for band type RADIO_BAND_FM) */
198 radio_event_type_t type; /* event type */ member in struct:radio_hal_event
211 radio_event_type_t type; member in struct:radio_event
/system/extras/memory_replay/
H A Dmain.cpp88 char type[128]; local
95 if (sscanf(line, "%d: %s %" SCNxPTR " %n", &tid, type, &key_pointer, &line_pos) != 3) {
112 Action* action = thread->CreateAction(key_pointer, type, line + line_pos);
H A DThread.h39 Action* CreateAction(uintptr_t key_pointer, const char* type, const char* line);
/system/tools/hidl/c2hal/
H A DCompositeDeclaration.cpp81 out << "int32_t /* NOTE: type is guessed */";
119 if((*it)->decType() != FunctionDeclaration::type()) {
121 if((*it)->decType() == VarDeclaration::type()) {
124 // a member of this type.
160 if (declaration->decType() == FunctionDeclaration::type()) {
/system/tools/hidl/
H A DgenerateVts.cpp41 for (const auto &type : mRootScope->getSubTypes()) {
42 // Skip for TypeDef as it is just an alias of a defined type.
43 if (type->isTypeDef()) {
48 status_t status = type->emitVtsTypeDeclarations(out);
/system/nfc/src/nfa/dm/
H A Dnfa_dm_discover.c105 disc_params[num_params].type = NFC_DISCOVERY_TYPE_POLL_A;
114 disc_params[num_params].type = NFC_DISCOVERY_TYPE_POLL_B;
123 disc_params[num_params].type = NFC_DISCOVERY_TYPE_POLL_F;
132 disc_params[num_params].type = NFC_DISCOVERY_TYPE_POLL_A_ACTIVE;
141 disc_params[num_params].type = NFC_DISCOVERY_TYPE_POLL_F_ACTIVE;
152 disc_params[num_params].type = NFC_DISCOVERY_TYPE_LISTEN_A;
161 disc_params[num_params].type = NFC_DISCOVERY_TYPE_LISTEN_B;
170 disc_params[num_params].type = NFC_DISCOVERY_TYPE_LISTEN_F;
179 disc_params[num_params].type = NFC_DISCOVERY_TYPE_LISTEN_A_ACTIVE;
188 disc_params[num_params].type
2841 uint8_t type = 0xFF; local
[all...]
/system/bt/stack/avdt/
H A Davdt_defs.h32 /* signalling packet type */
38 /* signalling message type */
162 #define AVDT_MSG_PRS_DISC(p, seid, in_use, type, tsep) \
166 (type) = (*(p) >> 4) & 0x0F; \
211 #define AVDT_MSG_BLD_DISC(p, seid, in_use, type, tsep) \
214 *(p)++ = (uint8_t)(((type) << 4) | ((tsep) << 3)); \
/system/bt/vendor_libs/
H A DAndroid.mk3 # -Wno-gnu-variable-sized-type-not-at-end is needed, because struct BT_HDR
16 -Wno-gnu-variable-sized-type-not-at-end \
/system/chre/util/include/chre/util/
H A Dsingleton_impl.h27 typename std::aligned_storage<sizeof(ObjectType), alignof(ObjectType)>::type
/system/core/adb/
H A Dtransport.h86 TransportType type = kTransportAny; member in class:atransport
104 if (type == kTransportLocal && local_port_for_emulator_ != -1) {
112 return type == kTransportLocal && local_port_for_emulator_ == -1;
184 atransport* acquire_one_transport(TransportType type, const char* serial,
/system/core/fastboot/
H A Dsocket_mock.cpp47 if (events_.front().type != EventType::kSend) {
80 if (event.type != EventType::kReceive) {
115 if (events_.front().type != EventType::kAccept) {
151 : type(_type), message(_message), status(_status), sock(std::move(_sock)) {}
/system/core/libunwindstack/
H A DRegs.h37 Location(LocationEnum type, int16_t value) : type(type), value(value) {} argument
39 LocationEnum type; member in struct:Regs::Location
/system/extras/libfec/
H A Dfec_private.h147 #define __log(func, type, format, args...) \
148 fprintf(stderr, "fec: <%d> " type ": %s: " format "\n", \
153 #define __log(func, type, format, args...) \
154 KLOG_##func("fec", "<%d> " type ": %s: " format "\n", \
/system/extras/memcpy-perf/
H A Dgraph_memcpy.py8 parser.add_argument("--files", nargs='+', type=str, help="files to graph", default=None)
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/kernel/
H A Dkernel.h22 * @type: the type of the container struct this is embedded in.
26 #define container_of(ptr, type, member) ({ \
27 const typeof(((type *)0)->member) * __mptr = (ptr); \
28 (type *)((char *)__mptr - offsetof(type, member)); })
126 * get the type for the ~ right in round_down (it needs to be
/system/keymaster/
H A Dkeymaster_tags.cpp138 #define DEFINE_KEYMASTER_TAG(type, name) TypedTag<type, KM_##name> name
184 #define DEFINE_KEYMASTER_ENUM_TAG(type, name, enumtype) TypedEnumTag<type, KM_##name, enumtype> name
/system/libhwbinder/include/hwbinder/
H A Dbinder_kernel.h37 __u32 type; member in struct:binder_object_header
/system/libvintf/include/vintf/
H A DMapValueIterator.h38 typename std::conditional<is_const, const V *, V *>::type /* Pointer */,
39 typename std::conditional<is_const, const V &, V &>::type /* Reference */
48 typename Map::const_iterator, typename Map::iterator>::type;
84 using map_ref = typename std::conditional<is_const, const Map &, Map &>::type;
/system/nfc/src/udrv/include/
H A Dupio.h227 typedef void(tUPIO_CBACK)(tUPIO_TYPE type, tUPIO pio, tUPIO_STATE state);
254 ** Multiple GPIOs of the same type can be masked together to set more
259 ** type The type of device.
270 void UPIO_Set(tUPIO_TYPE type, tUPIO pio, tUPIO_STATE state);
277 ** Read the state of a GPIO. This function can be used for any type of
282 ** Type: The type of device.
292 tUPIO_STATE UPIO_Read(tUPIO_TYPE type, tUPIO pio);
298 ** Description - Configure GPIOs of type UPIO_GENERAL as inputs or outputs
304 ** type Th
[all...]
/system/tools/aidl/
H A Dast_java_unittest.cpp52 a_class.type = &class_type;
H A Dgenerate_java.h48 Variable* Get(const Type* type);
H A Dast_java.h87 const Type* type = nullptr; member in struct:android::aidl::java::Variable
92 Variable(const Type* type, const std::string& name);
93 Variable(const Type* type, const std::string& name, int dimension);
191 const Type* type; member in struct:android::aidl::java::NewExpression
194 explicit NewExpression(const Type* type);
195 NewExpression(const Type* type, int argc, ...);
204 const Type* type; member in struct:android::aidl::java::NewArrayExpression
207 NewArrayExpression(const Type* type, Expression* size);
224 const Type* type = nullptr; member in struct:android::aidl::java::Cast
228 Cast(const Type* type, Expressio
357 const Type* type = nullptr; member in struct:android::aidl::java::Class
[all...]
/system/update_engine/
H A Domaha_request_action.h66 // Chromium OS reserved type sent after the first reboot following an update
79 : type(kTypeUnknown),
83 : type(in_type),
87 : type(in_type),
91 Type type; member in struct:chromeos_update_engine::OmahaEvent
304 // Returns true if updates are allowed over the current type of connection.
/system/update_engine/scripts/update_payload/
H A Dapplier.py94 # Fill with zeros or read from file, depending on the type of extent.
236 if op.type == common.OpType.REPLACE_BZ:
336 '%s: no source partition file provided for operation type (%d)' %
337 (op_name, op.type))
364 '%s: no source partition file provided for operation type (%d)' %
365 (op_name, op.type))
376 op.type != common.OpType.IMGDIFF):
414 if op.type == common.OpType.IMGDIFF:
462 if op.type in (common.OpType.REPLACE, common.OpType.REPLACE_BZ):
464 elif op.type
[all...]

Completed in 708 milliseconds

1234567891011>>