/system/media/camera/docs/ |
D | metadata_helpers.py | 336 def inner(what): argument 337 newstr = what.ljust(size) 339 return what + "\n" + "".ljust(indent + size) 380 def inner(what): argument 384 if len(what) > wut - current_col: 385 return what + "\n".ljust(col) 387 return what.ljust(wut - current_col) 391 def ctype_enum(what): argument 410 return 'TYPE_%s' %(what.upper()) 545 def _jtype_primitive(what): argument [all …]
|
/system/core/libutils/include/utils/ |
D | Looper.h | 56 Message() : what(0) { } in Message() 57 Message(int w) : what(w) { } in Message() 60 int what; member 391 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/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() 186 static bool RunCommands(const char* what, const std::vector<std::string>& commands) { in RunCommands() argument 189 V("running %s \"%s\"", what, command.c_str()); in RunCommands() 193 fprintf(stderr, "Command (%s) \"%s\" %s\n", what, command.c_str(), in RunCommands() 200 static bool CheckOutput(const char* what, std::string actual_output, in CheckOutput() argument 207 fprintf(stderr, "Incorrect %s.\nExpected:\n%s\nActual:\n%s\n", what, expected_output.c_str(), in CheckOutput()
|
/system/core/libutils/ |
D | Looper_test.cpp | 477 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 499 EXPECT_EQ(MSG_TEST1, handler1->messages[0].what) in TEST_F() 501 EXPECT_EQ(MSG_TEST3, handler1->messages[1].what) in TEST_F() 503 EXPECT_EQ(MSG_TEST4, handler1->messages[2].what) in TEST_F() 507 EXPECT_EQ(MSG_TEST2, handler2->messages[0].what) in TEST_F() 531 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 561 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 579 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 604 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() 635 EXPECT_EQ(MSG_TEST1, handler->messages[0].what) in TEST_F() [all …]
|
D | Looper.cpp | 335 this, handler.get(), message.what); in pollInner() 598 this, uptime, handler.get(), message.what); in sendMessageAtTime() 645 void Looper::removeMessages(const sp<MessageHandler>& handler, int what) { in removeMessages() argument 647 ALOGD("%p ~ removeMessages - handler=%p, what=%d", this, handler.get(), what); in removeMessages() 656 && messageEnvelope.message.what == what) { in removeMessages()
|
/system/netd/server/ |
D | NetlinkCommands.cpp | 159 int rtNetlinkFlush(uint16_t getAction, uint16_t deleteAction, const char* what, in rtNetlinkFlush() argument 172 NetlinkDumpCallback callback = [writeSock, deleteAction, shouldDelete, what] (nlmsghdr *nlh) { in rtNetlinkFlush() 188 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 | 355 int SockDiag::destroyLiveSockets(const DestroyFilter& destroyFilter, const char *what, in destroyLiveSockets() argument 363 ALOGE("Failed to dump %s sockets for %s: %s", familyName, what, strerror(-ret)); in destroyLiveSockets() 367 ALOGE("Failed to destroy %s sockets for %s: %s", familyName, what, strerror(-ret)); in destroyLiveSockets()
|
/system/extras/simpleperf/ |
D | RegEx.cpp | 61 LOG(ERROR) << "regex_error: " << e.what() << ", pattern " << pattern_ << ", format " in Replace() 75 LOG(ERROR) << "regex_error: " << e.what() << ", pattern " << pattern; in Create()
|
/system/core/fastboot/ |
D | vendor_boot_img_utils.cpp | 166 const char* what) { in load_file() argument 168 return ErrnoErrorf("Can't seek to the beginning of {} image", what); in load_file() 172 return ErrnoErrorf("Cannot read {} to string", what); in load_file() 175 return Errorf("Size of {} does not match, expected 0x{:x}, read 0x{:x}", what, in load_file() 183 const char* what) { in store_file() argument 185 return ErrnoErrorf("Cannot seek to beginning of {} before writing", what); in store_file() 188 return ErrnoErrorf("Cannot write new content to {}", what); in store_file()
|
/system/incremental_delivery/incfs/ |
D | MountRegistry.cpp | 167 void MountRegistry::Mounts::addBind(std::string_view what, std::string_view where) { in addBind() argument 168 auto whatAbsolute = path::normalize(what); in addBind() 171 LOG(ERROR) << "[incfs] No root found for bind from " << what << " to " << where; in addBind() 185 void MountRegistry::Mounts::removeBind(std::string_view what) { in removeBind() argument 186 auto absolute = path::normalize(what); in removeBind() 189 LOG(WARNING) << "[incfs] Trying to remove non-existent bind point '" << what << '\''; in removeBind()
|
/system/incremental_delivery/incfs/include/ |
D | MountRegistry.h | 94 void addBind(std::string_view what, std::string_view where); 95 void removeBind(std::string_view what);
|
/system/tools/aidl/ |
D | ast_java_unittest.cpp | 44 a_class.what = Class::CLASS; in TEST()
|
/system/extras/simpleperf/demo/SimpleperfExampleJava/app/src/main/java/simpleperf/example/java/ |
D | MultiProcessService.java | 20 switch (msg.what) { in handleMessage()
|
D | MultiProcessActivity.java | 36 message.what = MultiProcessService.MSG_START_BUSY_THREAD;
|
/system/chre/apps/test/chqts/src/ |
D | Android.bp | 19 // what we can easily test.
|
/system/extras/simpleperf/doc/ |
D | jit_symbols.md | 15 Simpleperf supports picking up symbols from per-pid symbol map files, somewhat similar to what
|
/system/bpf/bpfloader/ |
D | bpfloader.rc | 1 # zygote-start is what officially starts netd (see //system/core/rootdir/init.rc) 49 # But we don't know what that is for all possible devices...
|
/system/core/fastboot/fuzzy_fastboot/ |
D | README.md | 302 explaining what went wrong. An example is shown below: 331 at what line number and file is generating the error. Gtest will always print this out. 333 what went wrong. 362 to select specific tests to run once you know what fail, 366 ### Step 4: Figure out what Fuzzy Fastboot can't/isn't testing 368 Think about what device specific things are not being tested, and test them manually. 383 - **Be extremely careful of the Fuzzy Fastboot tests you are running. Know exactly what the tests d… 390 …shing algorithm to the Fuzzy Fastboot, so it can be checked to agree with what the device is repor…
|
/system/libbase/include/android-base/ |
D | logging.h | 302 #define CHECK_PTHREAD_CALL(call, args, what) \ argument 308 PLOG(FATAL) << #call << " failed for " << (what); \
|
/system/sepolicy/prebuilts/api/34.0/private/ |
D | bluetooth.te | 45 # For Bluetooth to check what profile are available
|
/system/sepolicy/prebuilts/api/33.0/private/ |
D | bluetooth.te | 45 # For Bluetooth to check what profile are available
|
/system/sepolicy/private/ |
D | bluetooth.te | 45 # For Bluetooth to check what profile are available
|