Home
last modified time | relevance | path

Searched refs:on (Results 1 – 25 of 86) sorted by relevance

1234

/system/netd/server/
DInterfaceController.cpp109 int InterfaceController::setEnableIPv6(const char *interface, const int on) { in setEnableIPv6() argument
117 const char *disable_ipv6 = on ? "0" : "1"; in setEnableIPv6()
121 int InterfaceController::setIPv6PrivacyExtensions(const char *interface, const int on) { in setIPv6PrivacyExtensions() argument
128 return writeValueToPath(ipv6_proc_path, interface, "use_tempaddr", on ? "2" : "0"); in setIPv6PrivacyExtensions()
134 int InterfaceController::setIPv6NdOffload(char* interface, const int on) { in setIPv6NdOffload() argument
142 on ? "1" : "0" in setIPv6NdOffload()
147 (on ? "enabling" : "disabling"), interface, ret, strerror(errno)); in setIPv6NdOffload()
DInterfaceController.h24 int setEnableIPv6(const char *interface, const int on);
25 int setIPv6PrivacyExtensions(const char *interface, const int on);
26 int setIPv6NdOffload(char* interface, const int on);
DNetlinkManager.cpp72 int on = 1; in setupSocket() local
90 if (setsockopt(*sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) { in setupSocket()
/system/core/rootdir/
Dinit.usb.rc6 on post-fs-data
12 on boot
16 on property:sys.usb.config=none && property:sys.usb.configfs=0
25 on property:sys.usb.config=adb && property:sys.usb.configfs=0
35 on property:sys.usb.config=accessory && property:sys.usb.configfs=0
44 on property:sys.usb.config=accessory,adb && property:sys.usb.configfs=0
54 on property:sys.usb.config=audio_source && property:sys.usb.configfs=0
63 on property:sys.usb.config=audio_source,adb && property:sys.usb.configfs=0
73 on property:sys.usb.config=accessory,audio_source && property:sys.usb.configfs=0
82 on property:sys.usb.config=accessory,audio_source,adb && property:sys.usb.configfs=0
[all …]
Dinit.usb.configfs.rc1 on property:sys.usb.config=none && property:sys.usb.configfs=1
9 on property:sys.usb.config=adb && property:sys.usb.configfs=1
12 on property:sys.usb.ffs.ready=1 && property:sys.usb.config=adb && property:sys.usb.configfs=1
21 on property:sys.usb.config=mtp && property:sys.usb.configfs=1
30 on property:sys.usb.config=mtp,adb && property:sys.usb.configfs=1
33 on property:sys.usb.ffs.ready=1 && property:sys.usb.config=mtp,adb && property:sys.usb.configfs=1
43 on property:sys.usb.config=ptp && property:sys.usb.configfs=1
52 on property:sys.usb.config=ptp,adb && property:sys.usb.configfs=1
55 on property:sys.usb.ffs.ready=1 && property:sys.usb.config=ptp,adb && property:sys.usb.configfs=1
65 on property:sys.usb.config=accessory && property:sys.usb.configfs=1
[all …]
Dinit.rc14 on early-init
23 on init
115 # set fwmark on accepted sockets
156 # system-background is for system tasks that should only run on
157 # little cores, not on bigs
178 # qtaguid will limit access to specific data based on group memberships.
204 on property:sys.boot_from_charger_mode=1
209 on load_system_props_action
212 on load_persist_props_action
218 on firmware_mounts_complete
[all …]
/system/core/adb/
DSERVICES.TXT3 to understand what's going on here.
48 be sent directly to the adbd daemon running on the device.
63 either the device or emulator connect to/running on the host.
79 running on the host. This will fail if there is none or more than one.
83 interpreted as 'any single device or emulator connected to/running on
101 to the <remote> address on a given device.
109 tcp:<port> -> TCP connection on localhost:<port>
110 local:<path> -> Unix local domain socket on <path>
114 tcp:<port> -> TCP localhost:<port> on device
115 local:<path> -> Unix local domain socket on device
[all …]
DOVERVIEW.TXT8 connected to or running on a given host developer machine
18 This is a background process that runs on the host machine. Its purpose
23 to each one of them: OFFLINE, BOOTLOADER, RECOVERY or ONLINE (more on
36 few services for clients that run on the host.
49 or a script. It first tries to locate the ADB server on the host machine,
71 it on the device. The ADB server is used to multiplex streams
82 server itself. The ADB server listens on TCP:localhost:5037.
129 - Local transports, for emulators running on the host, connected to
134 running on another machine. This hasn't been done yet though.
Dsysdeps.h237 int on = 1; in disable_tcp_nagle() local
238 adb_setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (const void*)&on, sizeof(on)); in disable_tcp_nagle()
454 int on = 1; in disable_tcp_nagle() local
455 setsockopt( fd, IPPROTO_TCP, TCP_NODELAY, (void*)&on, sizeof(on) ); in disable_tcp_nagle()
Dprotocol.txt42 connection. The protocol depends on shared state and any break in the
92 possible, an on-screen confirmation may be displayed for the user to
93 confirm they want to install the public key on the device.
127 stream on the recipient's side is ignored. The stream may have been
130 The local-id is ignored on all but the first READY message (where it
132 not change on later READY messages sent to the same stream.
142 stream on the recipient's side is ignored. The stream may have been
160 stream on the recipient's side is ignored. The stream may have
205 kernel interface on linux and osx does not allow you to do meaningful
240 I plan on providing either a message or a special control stream so that
[all …]
/system/vold/
DNetlinkManager.cpp54 int on = 1; in start() local
72 if (setsockopt(mSock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) { in start()
/system/extras/tests/sdcard/
Dsysutil.h95 void setNewFairSleepers(bool on);
101 void setNormalizedSleepers(bool on);
/system/core/logd/
DLogListener.cpp120 int on = 1; in getLogSocket() local
121 if (setsockopt(sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) { in getLogSocket()
/system/core/libcutils/
Duevent.c107 int on = passcred; in uevent_open_socket() local
120 setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)); in uevent_open_socket()
/system/bt/doc/
Dbtsnoop_net.md8 incoming TCP connections on port 8872.
10 To use this feature with hcidump on a Linux host, you can run:
/system/core/logcat/
Devent.logtags2 # This is installed on the device, in /system/etc, and parsed by logcat.
50 # This event is logged on each tickle
81 # Logged on every state change in the hierarchical state machine
98 # blocking_package: if this is on a main thread, the package name, otherwise ""
112 # 0 for screen off, 1 for screen on, 2 for key-guard done
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf
/system/core/init/
Dreadme.txt12 when it is the last character on a line, may be used for line-folding.
30 the tail of a to-be-executed queue (unless it is already on the
40 on <trigger>
79 computed based on the service executable file security context.
97 Services on the system partition can instead use policy-defined transitions
98 based on their file security context.
134 on property:test.a=1 && property:test.b=1
180 on property:ro.boot.myfancyhardware=1
224 Calls fs_mgr_mount_all on the given fs_mgr-format fstab.
252 Calls unlink(2) on the given path. You might want to
[all …]
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf
/system/core/include/system/
Dradio.h198 bool on; /* RADIO_EVENT_ANTENNA, RADIO_EVENT_TA */ member
210 bool on; member
/system/bt/
DNOTICE42 form, that is based on (or derived from) the Work and for which the
53 or by an individual or Legal Entity authorized to submit on behalf of
57 communication on electronic mailing lists, source code control systems,
58 and issue tracking systems that are managed by, or on behalf of, the
64 on behalf of whom a Contribution has been received by Licensor and
146 Contributor provides its Contributions) on an "AS IS" BASIS,
171 on Your own behalf and on Your sole responsibility, not on behalf
186 file or class name and description of purpose be included on the
199 distributed under the License is distributed on an "AS IS" BASIS,
/system/extras/ksmutils/
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf
/system/extras/showslab/
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf
/system/extras/libpagemap/
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf
/system/extras/timeinfo/
DNOTICE8 distributed under the License is distributed on an "AS IS" BASIS,
54 form, that is based on (or derived from) the Work and for which the
65 or by an individual or Legal Entity authorized to submit on behalf of
69 communication on electronic mailing lists, source code control systems,
70 and issue tracking systems that are managed by, or on behalf of, the
76 on behalf of whom a Contribution has been received by Licensor and
158 Contributor provides its Contributions) on an "AS IS" BASIS,
183 on Your own behalf and on Your sole responsibility, not on behalf

1234