/system/iorap/include/binder/ |
D | common.h | 25 #define IORAP_JAVA_NAMESPACE_BINDER_TYPEDEF(what) \ argument 26 …mespace android { namespace startop { namespace iorap { using what = ::iorap::binder::what; } } } …
|
/system/media/camera/docs/ |
D | metadata_helpers.py | 327 def inner(what): argument 328 newstr = what.ljust(size) 330 return what + "\n" + "".ljust(indent + size) 371 def inner(what): argument 375 if len(what) > wut - current_col: 376 return what + "\n".ljust(col) 378 return what.ljust(wut - current_col) 382 def ctype_enum(what): argument 401 return 'TYPE_%s' %(what.upper()) 536 def _jtype_primitive(what): argument [all …]
|
/system/core/cli-test/ |
D | cli-test.cpp | 98 static void SetField(const char* what, std::string* field, std::string_view value) { in SetField() argument 100 Die(0, "%s:%zu: %s already set to '%s'", g_file, g_line, what, field->c_str()); in SetField() 179 static bool RunCommands(const char* what, const std::vector<std::string>& commands) { in RunCommands() argument 182 V("running %s \"%s\"", what, command.c_str()); in RunCommands() 186 fprintf(stderr, "Command (%s) \"%s\" %s\n", what, command.c_str(), in RunCommands() 193 static bool CheckOutput(const char* what, std::string actual_output, in CheckOutput() argument 200 fprintf(stderr, "Incorrect %s.\nExpected:\n%s\nActual:\n%s\n", what, expected_output.c_str(), in CheckOutput()
|
/system/core/libutils/include/utils/ |
D | Looper.h | 55 Message() : what(0) { } in Message() 56 Message(int w) : what(w) { } in Message() 59 int what; member 390 void removeMessages(const sp<MessageHandler>& handler, int what);
|
D | TypeHelpers.h | 173 void splat_type(TYPE* where, const TYPE* what, size_t n) { 177 new(where) TYPE(*what); 183 *where++ = *what;
|
/system/core/libutils/ |
D | Looper_test.cpp | 508 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 530 EXPECT_EQ(MSG_TEST1, handler1->messages[0].what) in TEST_F() 532 EXPECT_EQ(MSG_TEST3, handler1->messages[1].what) in TEST_F() 534 EXPECT_EQ(MSG_TEST4, handler1->messages[2].what) in TEST_F() 538 EXPECT_EQ(MSG_TEST2, handler2->messages[0].what) in TEST_F() 562 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 592 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 610 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 635 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 666 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() [all …]
|
D | Looper.cpp | 323 this, handler.get(), message.what); in pollInner() 590 this, uptime, handler.get(), message.what); in sendMessageAtTime() 637 void Looper::removeMessages(const sp<MessageHandler>& handler, int what) { in removeMessages() argument 639 ALOGD("%p ~ removeMessages - handler=%p, what=%d", this, handler.get(), what); in removeMessages() 648 && messageEnvelope.message.what == what) { in removeMessages()
|
/system/netd/server/ |
D | NetlinkCommands.cpp | 157 int rtNetlinkFlush(uint16_t getAction, uint16_t deleteAction, const char* what, in rtNetlinkFlush() argument 170 NetlinkDumpCallback callback = [writeSock, deleteAction, shouldDelete, what] (nlmsghdr *nlh) { in rtNetlinkFlush() 186 ALOGW("Flushing %s: %s", what, strerror(-ret)); in rtNetlinkFlush()
|
D | NetlinkCommands.h | 65 [[nodiscard]] int rtNetlinkFlush(uint16_t getAction, uint16_t deleteAction, const char* what,
|
D | SockDiag.h | 95 int destroyLiveSockets(const DestroyFilter& destroy, const char *what, iovec *iov, int iovcnt);
|
D | SockDiag.cpp | 334 int SockDiag::destroyLiveSockets(const DestroyFilter& destroyFilter, const char *what, in destroyLiveSockets() argument 342 ALOGE("Failed to dump %s sockets for %s: %s", familyName, what, strerror(-ret)); in destroyLiveSockets() 346 ALOGE("Failed to destroy %s sockets for %s: %s", familyName, what, strerror(-ret)); in destroyLiveSockets()
|
/system/iorap/tests/src/inode2filename/ |
D | search_directories_test.cc | 79 static constexpr std::string_view EmptySubstringAtEnd(std::string_view what) { in EmptySubstringAtEnd() 80 return what.substr(/*pos*/what.size(), /*count*/0); in EmptySubstringAtEnd() 96 static constexpr SplitIterable Iterable(std::string_view what, in Iterable() 98 return SplitIterable{what, separator}; in Iterable() 307 static constexpr void VisitSplitStringView(std::string_view what, in VisitSplitStringView() argument 320 size_t pos = what.find_first_of(separator); in VisitSplitStringView() 323 f(what); in VisitSplitStringView() 330 std::string_view left_split = what.substr(/*pos*/0, pos); in VisitSplitStringView() 335 what = what.substr(pos + sep_length); in VisitSplitStringView() 341 std::vector<std::string> VisitSplitStringViewVec(std::string_view what, in VisitSplitStringViewVec() argument [all …]
|
/system/incremental_delivery/incfs/ |
D | MountRegistry.cpp | 194 void MountRegistry::Mounts::addBind(std::string_view what, std::string_view where) { in addBind() argument 195 auto whatAbsolute = path::normalize(what); in addBind() 198 LOG(ERROR) << "[incfs] No root found for bind from " << what << " to " << where; in addBind() 213 void MountRegistry::Mounts::removeBind(std::string_view what) { in removeBind() argument 214 auto absolute = path::normalize(what); in removeBind() 217 LOG(WARNING) << "[incfs] Trying to remove non-existent bind point '" << what << '\''; in removeBind()
|
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/app/src/main/java/com/example/simpleperf/simpleperfexamplepurejava/ |
D | MultiProcessService.java | 19 switch (msg.what) { in handleMessage()
|
D | MultiProcessActivity.java | 37 message.what = MultiProcessService.MSG_START_BUSY_THREAD;
|
/system/tools/aidl/ |
D | ast_java_unittest.cpp | 44 a_class.what = Class::CLASS; in TEST()
|
/system/incremental_delivery/incfs/include/ |
D | MountRegistry.h | 90 void addBind(std::string_view what, std::string_view where); 92 void removeBind(std::string_view what);
|
/system/bt/doc/ |
D | properties.md | 12 ### TODO: write descriptions of what each property means and how
|
/system/core/libpixelflinger/ |
D | pixelflinger.cpp | 402 uint16_t* what = 0; in ggl_texParameteri() local 407 what = &c->activeTMU->s_wrap; in ggl_texParameteri() 413 what = &c->activeTMU->t_wrap; in ggl_texParameteri() 420 what = &c->activeTMU->min_filter; in ggl_texParameteri() 426 what = &c->activeTMU->min_filter; in ggl_texParameteri() 433 what = &c->activeTMU->mag_filter; in ggl_texParameteri() 438 if (!what) { in ggl_texParameteri() 443 if (*what != param) { in ggl_texParameteri() 444 *what = param; in ggl_texParameteri()
|
/system/bpf/bpfloader/ |
D | bpfloader.rc | 1 # zygote-start is what officially starts netd (see //system/core/rootdir/init.rc) 50 # But we don't know what that is for all possible devices...
|
/system/chre/apps/chqts/src/ |
D | Android.bp | 19 // what we can easily test.
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | traced.te | 13 # class accordingly to what defined in the config provided by
|
/system/bt/test/ |
D | README.md | 18 Then see what options the test script provides:
|
/system/iorap/src/perfetto/ |
D | main.cc | 132 LOG(ERROR) << "Perfetto trace proto collection error: " << rxcpp::util::what(err); in CollectPerfettoTraceBufferViaAbstractions()
|
/system/security/keystore/ |
D | key_config.proto | 48 // Check what block mode is being used depending on the mode of encryption
|