Home
last modified time | relevance | path

Searched refs:D (Results 1 – 25 of 218) sorted by relevance

123456789

/system/bt/vendor_libs/test_vendor_lib/scripts/
Dbuild_and_run.sh123 adb logcat bt_btif:D bt_btif_core:D bt_hci:D bt_main:D bt_vendor:D \
124 bte_logmsg:D command_packet:D dual_mode_controller:D event_packet:D \
125 hci_transport:D hci_handler:D packet:D packet_stream:D \
126 test_channel_transport:D vendor_manager:D *:S
/system/core/fs_mgr/tests/
Dadb-remount-test.sh621 D=`get_property ro.serialno`
622 [ -n "${D}" ] || D=`get_property ro.boot.serialno`
623 [ -z "${D}" -o -n "${ANDROID_SERIAL}" ] || ANDROID_SERIAL=${D}
743 D=`adb_sh df -k </dev/null` &&
744 H=`echo "${D}" | head -1` &&
745 D=`echo "${D}" | grep -v " /vendor/..*$" | grep "^overlay "` &&
747 echo "${D}" &&
751 D=`adb_sh cat /proc/mounts </dev/null |
753 if echo "${D}" | grep /dev/root >/dev/null; then
754 D=`echo / /
[all …]
/system/core/adb/client/
Dusb_windows.cpp171 D("Created device thread"); in device_poll_thread()
188 D("Received (WM_POWERBROADCAST, PBT_APMRESUMEAUTOMATIC) notification, " in _power_window_proc()
204 D("Created power notification thread"); in _power_notification_thread()
247 D("Power notification thread exiting"); in _power_notification_thread()
263 D("Could not allocate %u bytes for usb_handle: %s", sizeof(usb_handle), strerror(errno)); in do_usb_open()
270 D("AdbCreateInterfaceByName failed: %s", in do_usb_open()
279 D("AdbOpenDefaultBulkReadEndpoint failed: %s", in do_usb_open()
288 D("AdbOpenDefaultBulkWriteEndpoint failed: %s", in do_usb_open()
297 D("AdbGetInterfaceName returned name length of zero: %s", in do_usb_open()
304 D("Could not allocate %lu characters for interface_name: %s", name_len, strerror(errno)); in do_usb_open()
[all …]
Dusb_linux.cpp170 D("desclength %zu is too small", desclength); in find_usb_device()
191 D("usb_config_descriptor not found"); in find_usb_device()
206 D("interface descriptor has wrong size"); in find_usb_device()
247 D("endpoints not found"); in find_usb_device()
254 D("bulk endpoints not found"); in find_usb_device()
306 D("++ usb_bulk_write ++"); in usb_bulk_write()
345 D("++ usb_bulk_read ++"); in usb_bulk_read()
366 D("[ reap urb - wait ]"); in usb_bulk_read()
386 D("[ reap urb - error ]"); in usb_bulk_read()
390 D("[ urb @%p status = %d, actual = %d ]", out, out->status, out->actual_length); in usb_bulk_read()
[all …]
Dtransport_mdns.cpp115 D("Got %d from DNSServiceGetAddrInfo.", ret); in ResolvedService()
135 D("mDNS resolved non-IP address."); in Connect()
142 D("Could not convert IP address to string."); in Connect()
149 D("Connect to %s (%s:%hu) : %s", name_.c_str(), ip_addr, port_, in Connect()
166 D("Got IP for service."); in register_service_ip()
195 D("Got %d from DNSServiceResolve.", ret); in DiscoveredService()
219 D("Resolved a service."); in register_resolved_mdns_service()
224 D("Got error %d resolving service.", errorCode); in register_resolved_mdns_service()
250 D("Registering a transport."); in register_mdns_transport()
252 D("Got error %d during mDNS browse.", errorCode); in register_mdns_transport()
[all …]
/system/iorap/include/binder/
Dauto_parcelable.h127 using D = std::decay_t<F>; // [const] [volatile] X[&][&] -> X in writeAnyToParcel() local
129 if constexpr (std::is_base_of_v<Parcelable, D>) { in writeAnyToParcel()
131 } else if constexpr (std::is_enum_v<D>) { in writeAnyToParcel()
134 } else if constexpr (std::is_same_v<D, std::decay_t<type_name>>) { \ in writeAnyToParcel()
137 } else if constexpr (std::is_same_v<D, std::string>) { in writeAnyToParcel()
140 STATIC_FAIL(D, "Unsupported type: Add more manual type conversions above^^^"); in writeAnyToParcel()
153 using D = std::decay_t<F>; in readAnyFromParcel() local
155 D value; in readAnyFromParcel()
158 if constexpr (std::is_base_of_v<Parcelable, D>) { in readAnyFromParcel()
160 } else if constexpr (std::is_enum_v<D>) { in readAnyFromParcel()
[all …]
/system/core/adb/daemon/
Djdwp_service.cpp164 D("removing pid %d from jdwp process list", this->pid); in RemoveFromList()
166 D("removing transient JdwpProcess from list"); in RemoveFromList()
191 D("truncating JDWP process list (max len = %zu)", bufferlen); in jdwp_process_list()
223 D("failed to read jdwp pid: rc = %zd, errno = %s", rc, strerror(errno)); in jdwp_process_event()
228 D("Adding pid %d to jdwp process list", proc->pid); in jdwp_process_event()
232 D("terminating JDWP connection %d", proc->pid); in jdwp_process_event()
238 D("trying to send fd to JDWP process (count = %zu)", proc->out_fds.size()); in jdwp_process_event()
243 D("sending new file descriptor to JDWP %d failed: %s", proc->pid, strerror(errno)); in jdwp_process_event()
247 D("sent file descriptor %d to JDWP process %d", fd, proc->pid); in jdwp_process_event()
263 D("looking for pid %d in JDWP process list", pid); in create_jdwp_connection_fd()
[all …]
Dtransport_qemu.cpp70 D("transport: qemu_socket_thread() starting"); in qemu_socket_thread()
80 D("adb service is not available. Falling back to TCP socket."); in qemu_socket_thread()
95 D("Accepting ADB host connection has failed."); in qemu_socket_thread()
108 D("adb service become unavailable."); in qemu_socket_thread()
112 D("Unable to send the '%s' request to ADB service.", _accept_req); in qemu_socket_thread()
116 D("transport: qemu_socket_thread() exiting"); in qemu_socket_thread()
Dusb_legacy.cpp71 D("[ aio: got error on io_setup (%d) ]", errno); in aio_block_init()
78 D("[ could not get endpoint descriptor! (%d) ]", errno); in getMaxPacketSize()
126 D("about to write (fd=%d, len=%d)", h->bulk_in.get(), len); in usb_ffs_write()
134 D("ERROR: fd = %d, n = %d: %s", h->bulk_in.get(), n, strerror(errno)); in usb_ffs_write()
141 D("[ done fd=%d ]", h->bulk_in.get()); in usb_ffs_write()
146 D("about to read (fd=%d, len=%d)", h->bulk_out.get(), len); in usb_ffs_read()
155 D("ERROR: fd = %d, n = %d: %s", h->bulk_out.get(), n, strerror(errno)); in usb_ffs_read()
172 D("[ done fd=%d ]", h->bulk_out.get()); in usb_ffs_read()
186 D("[ Failed to madvise: %d ]", errno); in usb_ffs_do_aio()
248 D("[ kick: source (fd=%d) clear halt failed (%d) ]", h->bulk_in.get(), errno); in usb_ffs_kick()
[all …]
Dmain.cpp162 D("Local port disabled"); in drop_privileges()
225 D("Warning: ADB_EXTERNAL_STORAGE is not set. Leaving EXTERNAL_STORAGE" in adbd_main()
253 D("using port=%d", port); in adbd_main()
261 D("adbd_main(): pre init_jdwp()"); in adbd_main()
263 D("adbd_main(): post init_jdwp()"); in adbd_main()
265 D("Event loop starting"); in adbd_main()
313 D("Handling main()"); in main()
Dshell_service.cpp376 D("subprocess parent: stdin/stdout FD = %d, stderr FD = %d", in ForkAndExec()
387 D("subprocess parent: exec completed"); in ForkAndExec()
393 D("subprocess parent: completed"); in ForkAndExec()
421 D("execinprocess: stdin/stdout FD = %d, stderr FD = %d", stdinout_sfd_.get(), in ExecInProcess()
433 D("execinprocess: completed"); in ExecInProcess()
449 D("protocol FD = %d", protocol_sfd_.get()); in ConnectProtocolEndpoints()
522 D("passing data streams for PID %d", subprocess->pid()); in ThreadHandler()
525 D("deleting Subprocess for PID %d", subprocess->pid()); in ThreadHandler()
549 D("closing FD %d", dead_sfd->get()); in PassDataStreams()
557 D("protocol FD died, sending SIGHUP to pid %d", pid_); in PassDataStreams()
[all …]
/system/media/audio_utils/include/audio_utils/
DStatistics.h246 typename D = double, // output mean data type
247 typename S = KahanSum<D>, // compensated mean summation type, if any
250 typename PRODUCT = std::multiplies<D> // how the output variance is computed
278 const D delta = value - mMean;
288 D meanDelta = delta / mWeight;
325 constexpr D getMean() const {
414 typename D = double // output mean/variance data type
419 explicit ReferenceStatistics(D alpha = D(1.))
423 constexpr void setAlpha(D alpha) {
454 D getWeight() const {
[all …]
/system/core/adb/
Dsockets.cpp162 D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu", s->id, s->fd, r, in local_socket_flush_outgoing()
178 D("LS(%d): fd=%d post avail loop. r=%d is_eof=%d forced_eof=%d", s->id, s->fd, r, is_eof, in local_socket_flush_outgoing()
189 D("LS(%u): fd=%d post peer->enqueue(). r=%d", saved_id, saved_fd, r); in local_socket_flush_outgoing()
212 D(" closing because is_eof=%d r=%d s->fde.force_eof=%d", is_eof, r, s->fde->force_eof); in local_socket_flush_outgoing()
221 D("LS(%d): enqueue %zu", s->id, data.size()); in local_socket_enqueue()
299 D("LS(%d): destroying fde.fd=%d", s->id, s->fd); in local_socket_destroy()
307 D("local_socket_destroy: exiting"); in local_socket_destroy()
313 D("entered local_socket_close. LS(%d) fd=%d", s->id, s->fd); in local_socket_close()
316 D("LS(%d): closing peer. peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd); in local_socket_close()
335 D("LS(%d): closed", id); in local_socket_close()
[all …]
Dtransport_local.cpp69 D("transport: ADB_LOCAL_TRANSPORT_MAX_PORT read as %d", adb_local_transport_max_port); in adb_local_transport_max_port_env_override()
71 D("transport: ADB_LOCAL_TRANSPORT_MAX_PORT '%s' invalid or >= 65536, so ignored", in adb_local_transport_max_port_env_override()
97 D("warning: failed to configure TCP keepalives (%s)", strerror(errno)); in tcp_connect()
110 D("connection requested to '%s'", address.c_str()); in connect_device()
125 D("reconnect failed: %s", response.c_str()); in connect_device()
170 D("client: connected on remote on fd %d", fd.get()); in local_connect_arbitrary_ports()
208 D("transport: client_socket_thread() starting"); in client_socket_thread()
261 D("unrecoverable error: '%s'", error.c_str()); in server_socket_thread()
264 D("server: cannot bind socket yet: %s", error.c_str()); in server_socket_thread()
272 D("server: trying to get new connection from fd %d", serverfd.get()); in server_socket_thread()
[all …]
Dtransport_usb.cpp41 D("UsbReadMessage"); in UsbReadMessage()
51 D("usb_read returned unexpected length %d (expected %zu)", n, sizeof(*msg)); in UsbReadMessage()
64 D("UsbReadPayload(%d)", p->msg.data_length); in UsbReadPayload()
99 D("remote usb: read terminated (message)"); in remote_read()
103 D("remote usb: read received unexpected header length %d", n); in remote_read()
109 D("remote usb: terminated (data)"); in remote_read()
113 D("remote usb: read payload failed (need %u bytes, give %d bytes), skip it", in remote_read()
184 D("transport: usb"); in init_usb_transport()
Dsysdeps_win32.cpp111 D("CloseHandle(%p) failed: %s", h, in operator ()()
156 D( "_fh_from_int: invalid fd %d passed to %s", fd + WIN32_FH_BASE, in _fh_from_int()
165 D( "_fh_from_int: invalid fd %d passed to %s", fd + WIN32_FH_BASE, in _fh_from_int()
204 D("_fh_alloc: no more free file descriptors"); in _fh_alloc()
271 D("adb_read: could not read %d bytes from %s", len, f->name); in _fh_file_read()
284 D("adb_file_write: could not write %d bytes from %s", len, f->name); in _fh_file_write()
373 D("adb_open: invalid options (0x%0x)", options); in adb_open()
393 D("adb_open: could not open '%s': ", path); in adb_open()
396 D("file not found"); in adb_open()
401 D("path not found"); in adb_open()
[all …]
Dadb_io.cpp81 D("readx: fd=%d wanted=%zu", fd, len); in ReadFdExactly()
88 D("readx: fd=%d error %d: %s", fd, errno, strerror(errno)); in ReadFdExactly()
91 D("readx: fd=%d disconnected", fd); in ReadFdExactly()
113 D("writex: fd=%d error %d: %s", fd, errno, strerror(errno)); in WriteFdExactly()
118 D("writex: fd=%d disconnected", fd); in WriteFdExactly()
Dtransport.cpp195 D("transport %s was kicked. giving up on it.", it->transport->serial.c_str()); in Run()
216 D("attempting to reconnect %s", attempt.transport->serial.c_str()); in Run()
220 D("attempting to reconnect %s failed.", attempt.transport->serial.c_str()); in Run()
222 D("transport %s exceeded the number of retry attempts. giving up on it.", in Run()
237 D("reconnection to %s succeeded.", attempt.transport->serial.c_str()); in Run()
242 D("cancelling reconnection attempt to %s.", attempt.transport->serial.c_str()); in Run()
391 D("remote local: read terminated (message)"); in Read()
396 D("remote local: read overflow (data length = %" PRIu32 ")", packet->msg.data_length); in Read()
403 D("remote local: terminated (data)"); in Read()
412 D("remote local: write terminated"); in Write()
[all …]
/system/gatekeeper/include/gatekeeper/
DUniquePtr.h51 template <typename T, typename D = DefaultDelete<T> >
80 D()(mPtr);
100 template <typename T, typename D>
101 class UniquePtr<T[], D> {
123 D()(mPtr);
/system/bt/vendor_libs/test_vendor_lib/model/setup/
Ddevice_boutique.h40 template <typename D>
43 DeviceBoutique::Register(name, &D::Create); in Registrar()
45 static Registrar<D> registrar_;
/system/tools/hidl/
Dhidl-gen_l.ll17 D [0-9]
20 E [Ee][+-]?{D}+
24 COMPONENT {L}({L}|{D})*
27 VERSION {AT}{D}+{DOT}{D}+
178 0{D}+{IS}? { yylval->str = strdup(yytext); return token::INTEGER; }
179 {D}+{IS}? { yylval->str = strdup(yytext); return token::INTEGER; }
182 {D}+{E}{FS}? { yylval->str = strdup(yytext); return token::FLOAT; }
183 {D}+\.{E}?{FS}? { yylval->str = strdup(yytext); return token::FLOAT; }
184 {D}*\.{D}+{E}?{FS}? { yylval->str = strdup(yytext); return token::FLOAT; }
/system/core/libusbhost/
Dusbhost.c27 #define D ALOGD macro
29 #define D printf macro
33 #define D(...) macro
203 D("Created device discovery thread\n"); in usb_host_load()
269 D("%s subdirectory %s: index: %d\n", (event->mask & IN_CREATE) ? in usb_host_read_event()
290 D("new device %s\n", path); in usb_host_read_event()
293 D("gone device %s\n", path); in usb_host_read_event()
328 D("usb_device_open %s\n", dev_name); in usb_device_open()
346 D("usb_device_open no access sleeping\n"); in usb_device_open()
355 D("usb_device_open open returned %d writeable %d errno %d\n", fd, writeable, errno); in usb_device_open()
[all …]
/system/ca-certificates/google/files/
D69105f4f.063 45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F
65 keyid:45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F
83 SHA1 Fingerprint=05:63:B8:63:0D:62:D7:5A:BB:C8:AB:1E:4B:DF:B5:A8:99:B2:4D:43
/system/ca-certificates/files/
D69105f4f.063 45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F
65 keyid:45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F
83 SHA1 Fingerprint=05:63:B8:63:0D:62:D7:5A:BB:C8:AB:1E:4B:DF:B5:A8:99:B2:4D:43
D1df5a75f.031 Issuer: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009
35 Subject: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009
69 …URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%202009,O=D-Trust%20GmbH,C=…
90 SHA1 Fingerprint=58:E8:AB:B0:36:15:33:FB:80:F7:9B:1B:6D:29:D3:FF:8D:5F:00:F0

123456789