Searched defs:type (Results 1 - 25 of 309) sorted by relevance

1234567891011>>

/system/tools/hidl/c2hal/
H A DEnumVarDeclaration.h35 static std::string type() { return "enum"; } function in struct:android::EnumVarDeclaration
36 const std::string decType() const override { return type(); }
H A DFunctionDeclaration.h30 FunctionDeclaration(Type* type,
39 static std::string type() { return "function"; } function in struct:android::FunctionDeclaration
40 const std::string decType() const override { return type(); }
H A DInclude.h33 static std::string type() { return "include"; } function in struct:android::Include
34 const std::string decType() const override { return type(); }
H A DNote.h37 static std::string type() { return "note"; } function in struct:android::Note
38 const std::string decType() const override { return type(); }
H A DTypeDef.h32 static std::string type() { return "typedef"; } function in struct:android::TypeDef
33 const std::string decType() const override { return type(); }
H A DVarDeclaration.h26 VarDeclaration(Type *type, const std::string &name);
33 static std::string type() { return "var"; } function in struct:android::VarDeclaration
34 const std::string decType() const override { return type(); }
H A DCompositeDeclaration.h37 static std::string type() { return "composite"; } function in struct:android::CompositeDeclaration
38 const std::string decType() const override { return type(); }
H A DDefine.h33 static std::string type() { return "define"; } function in struct:android::Define
34 const std::string decType() const override { return type(); }
/system/update_engine/update_manager/
H A Dboxed_value.cc110 ConnectionType type = it; local
113 ret += StringForConnectionType(type);
/system/bt/btif/include/
H A Dbtif_debug_btsnoop.h37 uint8_t type; member in struct:btsnooz_header_t
/system/bt/hci/src/
H A Dbtsnoop_mem.cc33 const uint16_t type = packet->event & BT_EVT_MASK; local
36 switch (type) {
56 if (length) (*data_callback)(type, data, length, timestamp_us);
/system/bt/stack/include/
H A Dadvertise_data_parser.h36 // EIR field type.
53 * where a field of |type| is located, together with its length in |p_length|
56 uint8_t type, uint8_t* p_length) {
67 if (adv_type == type) {
69 *p_length = len - 1; /* minus the length of type */
81 * This function returns a pointer inside the |adv| where a field of |type| is
85 uint8_t type, uint8_t* p_length) {
86 return GetFieldByType(ad.data(), ad.size(), type, p_length);
55 GetFieldByType(const uint8_t* ad, size_t ad_len, uint8_t type, uint8_t* p_length) argument
84 GetFieldByType(std::vector<uint8_t> const& ad, uint8_t type, uint8_t* p_length) argument
/system/core/init/
H A Dlog.cpp43 int selinux_klog_callback(int type, const char *fmt, ...) { argument
45 if (type == SELINUX_WARNING) {
47 } else if (type == SELINUX_INFO) {
/system/core/libcutils/
H A Dsocket_inaddr_any_server_unix.c33 int socket_inaddr_any_server(int port, int type) argument
43 s = socket(AF_INET6, type, 0);
54 if (type == SOCK_STREAM) {
H A Dsocket_inaddr_any_server_windows.c37 SOCKET socket_inaddr_any_server(int port, int type) { argument
42 SOCKET sock = socket(AF_INET6, type, 0);
73 if (type == SOCK_STREAM && listen(sock, LISTEN_BACKLOG) == SOCKET_ERROR) {
H A Dsocket_network_client_windows.c33 SOCKET socket_network_client(const char* host, int port, int type) { argument
41 hints.ai_socktype = type;
H A Dsocket_local_client_unix.c27 int socket_local_client(const char *name, int namespaceId, int type) argument
127 int type UNUSED)
153 int socket_local_client(const char *name, int namespaceId, int type) argument
157 s = socket(AF_LOCAL, type, 0);
160 if ( 0 > socket_local_client_connect(s, name, namespaceId, type)) {
/system/core/libnetutils/
H A Ddhcpmsg.c24 static void *init_dhcp_msg(dhcp_msg *msg, int type, void *hwaddr, uint32_t xid) argument
50 *x++ = type;
/system/extras/tests/kernel.config/
H A Dsysvipc_test.cpp26 int kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, unsigned long idx2) { argument
27 return syscall(SYS_kcmp, pid1, pid2, type, 0, idx1, idx2);
/system/update_engine/
H A Dconnection_manager_android.cc34 ConnectionType type, ConnectionTethering tethering) const {
33 IsUpdateAllowedOver( ConnectionType type, ConnectionTethering tethering) const argument
H A Dconnection_utils.cc50 const char* StringForConnectionType(ConnectionType type) { argument
51 switch (type) {
/system/bt/osi/src/socket_utils/
H A Dsocket_local_client.cc113 int type UNUSED_ATTR) {
139 int osi_socket_local_client(const char* name, int namespaceId, int type) { argument
142 s = socket(AF_LOCAL, type, 0);
145 if (0 > osi_socket_local_client_connect(s, name, namespaceId, type)) {
H A Dsocket_local_server.cc33 /* Only the bottom bits are really the socket type; there are flags too. */
80 int osi_socket_local_server(const char* name, int namespaceId, int type) { argument
84 s = socket(AF_LOCAL, type, 0);
94 if ((type & SOCK_TYPE_MASK) == SOCK_STREAM) {
/system/bt/service/ipc/
H A Dipc_manager.cc37 bool IPCManager::Start(Type type, Delegate* delegate) { argument
38 switch (type) {
66 LOG(ERROR) << "Unsupported IPC type given: " << type;
/system/core/fastboot/
H A Dsocket_mock.h90 EventType type; member in struct:SocketMock::Event

Completed in 5193 milliseconds

1234567891011>>