Home
last modified time | relevance | path

Searched refs:BASE (Results 1 – 25 of 56) sorted by relevance

123

/frameworks/base/telephony/java/com/android/internal/telephony/
DDctConstants.java74 public static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER; field in DctConstants
75 public static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
76 public static final int EVENT_RADIO_AVAILABLE = BASE + 1;
77 public static final int EVENT_TRY_SETUP_DATA = BASE + 3;
78 public static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
79 public static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
80 public static final int EVENT_VOICE_CALL_ENDED = BASE + 8;
81 public static final int EVENT_DATA_CONNECTION_DETACHED = BASE + 9;
82 public static final int EVENT_ROAMING_ON = BASE + 11;
83 public static final int EVENT_ROAMING_OFF = BASE + 12;
[all …]
/frameworks/native/libs/math/include/math/
DTMatHelpers.h368 template <template<typename T> class BASE, typename T>
372 BASE<T>& operator *= (T v) {
373 BASE<T>& lhs(static_cast< BASE<T>& >(*this));
374 for (size_t col = 0; col < BASE<T>::NUM_COLS; ++col) {
382 const BASE<T>& operator *= (const BASE<U>& rhs) {
383 BASE<T>& lhs(static_cast< BASE<T>& >(*this));
384 lhs = matrix::multiply<BASE<T> >(lhs, rhs);
389 BASE<T>& operator /= (T v) {
390 BASE<T>& lhs(static_cast< BASE<T>& >(*this));
391 for (size_t col = 0; col < BASE<T>::NUM_COLS; ++col) {
[all …]
/frameworks/base/core/java/android/net/nsd/
DNsdManager.java182 private static final int BASE = Protocol.BASE_NSD_MANAGER; field in NsdManager
185 public static final int DISCOVER_SERVICES = BASE + 1;
187 public static final int DISCOVER_SERVICES_STARTED = BASE + 2;
189 public static final int DISCOVER_SERVICES_FAILED = BASE + 3;
191 public static final int SERVICE_FOUND = BASE + 4;
193 public static final int SERVICE_LOST = BASE + 5;
196 public static final int STOP_DISCOVERY = BASE + 6;
198 public static final int STOP_DISCOVERY_FAILED = BASE + 7;
200 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 8;
203 public static final int REGISTER_SERVICE = BASE + 9;
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dvalue.cpp53 template<typename BASE, int TYPEID>
54 Value MakePtrValue(const BASE* values, int count) { in MakePtrValue()
57 result.value = malloc(sizeof(BASE) * count); in MakePtrValue()
58 memcpy(result.value, values, sizeof(BASE) * count); in MakePtrValue()
77 template<typename BASE, int TYPEID>
78 int SetPtrValue(Value* value, const BASE* new_values, int count) { in SetPtrValue()
81 value->value = malloc(sizeof(BASE) * count); in SetPtrValue()
85 memcpy(value->value, new_values, sizeof(BASE) * count); in SetPtrValue()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java355 static final int BASE = Protocol.BASE_DATA_CONNECTION; field in DataConnection
356 static final int EVENT_CONNECT = BASE + 0;
357 static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
358 static final int EVENT_DEACTIVATE_DONE = BASE + 3;
359 static final int EVENT_DISCONNECT = BASE + 4;
360 static final int EVENT_DISCONNECT_ALL = BASE + 6;
361 static final int EVENT_DATA_STATE_CHANGED = BASE + 7;
362 static final int EVENT_TEAR_DOWN_NOW = BASE + 8;
363 static final int EVENT_LOST_CONNECTION = BASE + 9;
364 static final int EVENT_DATA_CONNECTION_DRS_OR_RAT_CHANGED = BASE + 11;
[all …]
/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java95 private static final int BASE = Protocol.BASE_SYSTEM_ASYNC_CHANNEL; field in AsyncChannel
111 public static final int CMD_CHANNEL_HALF_CONNECTED = BASE + 0;
121 public static final int CMD_CHANNEL_FULL_CONNECTION = BASE + 1;
131 public static final int CMD_CHANNEL_FULLY_CONNECTED = BASE + 2;
142 public static final int CMD_CHANNEL_DISCONNECT = BASE + 3;
155 public static final int CMD_CHANNEL_DISCONNECTED = BASE + 4;
157 private static final int CMD_TO_STRING_COUNT = CMD_CHANNEL_DISCONNECTED - BASE + 1;
160 sCmdToString[CMD_CHANNEL_HALF_CONNECTED - BASE] = "CMD_CHANNEL_HALF_CONNECTED";
161 sCmdToString[CMD_CHANNEL_FULL_CONNECTION - BASE] = "CMD_CHANNEL_FULL_CONNECTION";
162 sCmdToString[CMD_CHANNEL_FULLY_CONNECTED - BASE] = "CMD_CHANNEL_FULLY_CONNECTED";
[all …]
/frameworks/layoutlib/bridge/src/android/net/
DConnectivityManager.java37 import static android.os._Original_Build.VERSION_CODES.BASE;
730 public static final int CALLBACK_PRECHECK = BASE + 1;
731 public static final int CALLBACK_AVAILABLE = BASE + 2;
732 public static final int CALLBACK_LOSING = BASE + 3;
733 public static final int CALLBACK_LOST = BASE + 4;
734 public static final int CALLBACK_UNAVAIL = BASE + 5;
735 public static final int CALLBACK_CAP_CHANGED = BASE + 6;
736 public static final int CALLBACK_IP_CHANGED = BASE + 7;
737 private static final int EXPIRE_LEGACY_REQUEST = BASE + 8;
738 public static final int CALLBACK_SUSPENDED = BASE + 9;
[all …]
/frameworks/native/libs/vr/libpdx/
Dclient_tests.cpp62 : BASE{std::move(channel)} {} in SimpleClient()
65 : BASE{std::move(channel_factory), timeout_ms} { in SimpleClient()
69 using BASE::SendImpulse;
70 using BASE::InvokeRemoteMethod;
71 using BASE::InvokeRemoteMethodInPlace;
72 using BASE::Close;
73 using BASE::IsConnected;
74 using BASE::EnableAutoReconnect;
75 using BASE::DisableAutoReconnect;
76 using BASE::event_fd;
[all …]
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
Dservice_utility.h42 friend BASE;
46 : BASE(ClientChannelFactory::Create(endpoint_path), 0) {
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
Ddisplay_client.h55 friend BASE;
88 friend BASE;
Ddisplay_manager_client.h37 friend BASE;
/frameworks/native/libs/vr/libdisplay/
Ddisplay_client.cpp25 : BASE{pdx::default_transport::ClientChannel::Create( in Surface()
42 : BASE{pdx::default_transport::ClientChannelFactory::Create( in Surface()
157 : BASE(pdx::default_transport::ClientChannelFactory::Create( in DisplayClient()
Ddisplay_manager_client.cpp17 : BASE(pdx::default_transport::ClientChannelFactory::Create( in DisplayManagerClient()
/frameworks/native/libs/vr/libbufferhub/
Dproducer_buffer.cpp12 : BASE(BufferHubRPC::kClientPath) { in ProducerBuffer()
39 : BASE(BufferHubRPC::kClientPath) { in ProducerBuffer()
67 : BASE(std::move(channel)) { in ProducerBuffer()
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
Dconsumer_buffer.h60 friend BASE;
Dproducer_buffer.h77 friend BASE;
/frameworks/native/libs/vr/libperformance/include/private/dvr/
Dperformance_client.h29 friend BASE;
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
Dbuffer_hub_queue_client.h302 return BASE::Create(config, usage); in Create()
307 return BASE::Create(std::move(handle)); in Import()
394 friend BASE;
/frameworks/native/libs/vr/libpdx_default_transport/
Dpdx_tool.cpp28 friend BASE;
52 : BASE{ClientChannelFactory::Create(service_path), timeout_ms} {} in ControlClient()
/frameworks/native/libs/vr/libpdx_uds/
Dservice_framework_tests.cpp233 friend BASE;
248 : BASE(std::string("TestService") + name, in TestService()
397 friend BASE;
400 : BASE{android::pdx::uds::ClientChannelFactory::Create(kTestServicePath + in TestClient()
404 : BASE{android::pdx::uds::ClientChannel::Create(std::move(channel))} {} in TestClient()
/frameworks/native/libs/ui/include_vndk/ui/
DANativeObjectBase.h51 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF, NATIVE_BASE> BASE; typedef
/frameworks/native/libs/ui/include/ui/
DANativeObjectBase.h51 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF, NATIVE_BASE> BASE; typedef
/frameworks/native/libs/vr/libvrflinger/
Ddisplay_manager_service.h49 friend BASE;
/frameworks/native/libs/input/tests/
DInputDevice_test.cpp60 KeyCharacterMap::load(path, KeyCharacterMap::Format::BASE); in loadKeyCharacterMap()
/frameworks/native/services/vr/performanced/
Dperformance_service.h28 friend BASE;

123