Searched refs:base (Results 126 - 150 of 773) sorted by relevance

1234567891011>>

/frameworks/native/libs/ui/
H A DDebugUtils.cpp21 #include <android-base/stringprintf.h>
24 using android::base::StringPrintf;
88 return android::base::StringPrintf("Unknown deprecated dataspace code %d",
93 return android::base::StringPrintf("Unknown dataspace code %d", dataspaceSelect);
150 return android::base::StringPrintf("Unknown dataspace transfer %d", dataspaceTransfer);
190 return android::base::StringPrintf("Unknown dataspace range %d", dataspaceRange);
197 return android::base::StringPrintf("%s %s %s", decodeStandard(dataspace).c_str(),
244 return android::base::StringPrintf("Unknown color mode %d", colorMode);
271 return android::base::StringPrintf("Unknown color transform %d", colorTransform);
303 return android::base
[all...]
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp27 #include "android-base/errors.h"
28 #include "android-base/file.h"
29 #include "android-base/logging.h"
30 #include "android-base/unique_fd.h"
31 #include "android-base/utf8.h"
42 using ::android::base::ReadFileToString;
43 using ::android::base::SystemErrorCodeToString;
44 using ::android::base::unique_fd;
52 if (!::android::base::UTF8PathToWindowsLongPath(path.c_str(), &path_utf16)) {
111 int result = ::android::base
152 AppendPath(std::string* base, StringPiece part) argument
[all...]
/frameworks/native/services/vr/performanced/
H A Dtask.cpp13 #include <android-base/unique_fd.h>
22 android::base::unique_fd OpenTaskDirectory(pid_t task_id) {
26 return android::base::unique_fd(
65 base::unique_fd Task::OpenTaskFile(const std::string& name) const {
67 return base::unique_fd(
73 base::unique_fd fd(openat(task_fd_.get(), relative_path.c_str(), O_RDONLY));
H A Dcpu_set.cpp11 #include <android-base/file.h>
39 base::unique_fd root_cpuset_fd(open(path.c_str(), kDirectoryFlags));
49 std::unique_ptr<CpuSet> CpuSetManager::Create(base::unique_fd base_fd,
52 DirectoryReader directory(base::unique_fd(dup(base_fd)));
60 new CpuSet(parent, name, base::unique_fd(dup(base_fd))));
70 base::unique_fd entry_fd(
196 base::unique_fd&& cpuset_fd)
208 base::unique_fd CpuSet::OpenPropertyFile(const std::string& name) const {
216 base::unique_fd CpuSet::OpenFile(const std::string& name, int flags) const {
218 return base
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DLinearLayoutManagerPrepareForDropTest.java134 final int base = mLayoutManager.getWidth() / 5;
135 final int itemRand = holder.mBoundItem.mText.hashCode() % base;
136 holder.itemView.setMinimumWidth(base + itemRand);
138 final int base = mLayoutManager.getHeight() / 5;
139 final int itemRand = holder.mBoundItem.mText.hashCode() % base;
140 holder.itemView.setMinimumHeight(base + itemRand);
/frameworks/av/media/libmedia/include/media/omx/1.0/
H A DWOmxBufferSource.h37 using ::android::hidl::base::V1_0::IBase;
62 LWOmxBufferSource(sp<IOmxBufferSource> const& base);
73 TWOmxBufferSource(sp<IOMXBufferSource> const& base);
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
H A DWOmxBufferSource.h37 using ::android::hidl::base::V1_0::IBase;
62 LWOmxBufferSource(sp<IOmxBufferSource> const& base);
73 TWOmxBufferSource(sp<IOMXBufferSource> const& base);
/frameworks/base/cmds/bootanimation/iot/
H A Diotbootanimation_main.cpp19 #include <base/files/file_util.h>
56 if (!::base::PathExists(::base::FilePath(library_path))) {
/frameworks/base/cmds/incident_helper/tests/
H A DSystemPropertiesParser_test.cpp19 #include "frameworks/base/core/proto/android/os/system_properties.pb.h"
21 #include <android-base/file.h>
22 #include <android-base/test_utils.h>
29 using namespace android::base;
/frameworks/base/tools/aapt2/io/
H A DFileStream.h25 #include "android-base/macros.h"
26 #include "android-base/unique_fd.h"
54 android::base::unique_fd fd_;
72 explicit FileOutputStream(android::base::unique_fd fd,
95 android::base::unique_fd owned_fd_;
/frameworks/native/include/ui/
H A DFence.h22 #include <android-base/unique_fd.h>
59 explicit Fence(base::unique_fd fenceFd);
143 base::unique_fd mFenceFd;
/frameworks/native/libs/ui/include/ui/
H A DFence.h22 #include <android-base/unique_fd.h>
59 explicit Fence(base::unique_fd fenceFd);
143 base::unique_fd mFenceFd;
/frameworks/native/libs/ui/include_vndk/ui/
H A DFence.h22 #include <android-base/unique_fd.h>
59 explicit Fence(base::unique_fd fenceFd);
143 base::unique_fd mFenceFd;
/frameworks/base/cmds/incidentd/tests/
H A DThrottler_test.cpp19 #include <android-base/test_utils.h>
/frameworks/base/core/java/android/content/
H A DSearchRecentSuggestionsProvider.java233 final String base = uri.getPathSegments().get(0);
235 if (base.equals(sSuggestions)) {
255 String base = uri.getPathSegments().get(0);
256 if (base.equals(sSuggestions)) {
281 String base = uri.getPathSegments().get(0);
283 if (base.equals(sSuggestions)) {
352 String base = uri.getPathSegments().get(0);
353 if (!base.equals(sSuggestions)) {
381 Cursor c = db.query(base, useProjection, whereClause.toString(),
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java38 * Creates a new context wrapper with no theme and no base context.
40 * <strong>Note:</strong> A base context <strong>must</strong> be attached
51 * The specified theme will be applied on top of the base context's theme.
55 * @param base the base context
57 * the base context's theme
59 public ContextThemeWrapper(Context base, @StyleRes int themeResId) { argument
60 super(base);
68 * this constructor will completely replace the base context's theme.
70 * @param base th
73 ContextThemeWrapper(Context base, Resources.Theme theme) argument
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameStore.java18 package android.filterpacks.base;
/frameworks/base/native/webview/plat_support/
H A DAndroid.mk35 frameworks/base/core/jni/android/graphics \
/frameworks/base/services/core/jni/BroadcastRadio/
H A DNativeCallbackThread.h20 #include <android-base/macros.h>
/frameworks/base/services/core/jni/
H A Dcom_android_server_connectivity_tethering_OffloadHardwareInterface.cpp25 #include <android-base/unique_fd.h>
44 base::unique_fd s(socket(AF_NETLINK, SOCK_DGRAM, NETLINK_NETFILTER));
74 hidl_handle handleFromFileDescriptor(base::unique_fd fd) {
105 base::unique_fd
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameSlotSource.java17 package androidx.media.filterpacks.base;
/frameworks/base/tests/SoundTriggerTests/
H A DAndroid.mk31 LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
/frameworks/base/tests/UsbTests/
H A DAndroid.mk26 frameworks-base-testutils \
/frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
H A DALooper.h21 #include <android-base/macros.h>
/frameworks/native/cmds/installd/
H A DCacheItem.h27 #include <android-base/macros.h>

Completed in 708 milliseconds

1234567891011>>