Searched defs:control (Results 1 - 9 of 9) sorted by relevance

/system/core/libcutils/
H A Duevent.cpp56 char control[CMSG_SPACE(sizeof(struct ucred))]; local
58 &addr, sizeof(addr), &iov, 1, control, sizeof(control), 0,
/system/core/adb/daemon/
H A Dusb.h49 int control = -1; member in struct:usb_handle
/system/core/logd/
H A DLogListener.cpp51 alignas(4) char control[CMSG_SPACE(sizeof(struct ucred))]; local
53 NULL, 0, &iov, 1, control, sizeof(control), 0,
/system/bt/stack/include/
H A Davct_api.h53 #define AVCT_DATA_CTRL 0x0001 /* for the control channel */
57 /* Per the AVRC spec, minimum MTU for the control channel */
118 uint8_t control; /* Control role (Control/Target) */ member in struct:__anon1024
261 * AVCT_CONNECT_CFM_EVT or AVCT_CONNECT_IND_EVT on control
267 * AVCT_DATA_CTRL for control channel traffic;
H A Davrc_api.h169 /* This is the control callback function. This function passes events
183 tAVRC_CTRL_CBACK ctrl_cback; /* application control callback */
187 uint8_t control; /* Control role (Control/Target) */ member in struct:__anon1040
291 * roles, as determined by the p_ccb->control parameter.
302 * p_ccb->p_ctrl_cback: Pointer to the control callback
312 * p_ccb->control: Control role. This is set to
314 * for control connections or
594 * control block (if using dynamic memory), and initializes the
595 * control block and tracing level.
/system/bt/stack/test/rfcomm/
H A Dstack_rfcomm_test_utils.cc51 std::bitset<8> control; local
52 control |= frame_type;
53 control.set(4, pf);
54 return static_cast<uint8_t>(control.to_ulong());
111 std::vector<uint8_t> CreateRfcommPacket(uint8_t address, uint8_t control, argument
117 result.push_back(control);
133 if (GetFrameTypeFromControlField(control) == RFCOMM_UIH) {
/system/nvram/client/
H A Dnvram_client.c62 // A table mapping control values to names.
64 nvram_control_t control; member in struct:__anon2557
75 // Returns the string representation of |control|, or NULL if |control| isn't a
76 // valid control value.
77 static const char* ControlToString(nvram_control_t control) { argument
79 if (kControlNameTable[i].control == control) {
87 // Sets |control| to the NV_CONTROL_ value corresponding to the string control
90 StringToControl(const char* name, nvram_control_t* control) argument
[all...]
/system/core/adb/
H A Djdwp_service.cpp43 named @jdwp-control (@ is a shortcut for "first byte is zero"
47 a connection to @jdwp-control to announce its availability.
50 JDWP thread @jdwp-control
83 JDWP thread @jdwp-control
249 D("ignoring unexpected JDWP %d control socket activity (%d bytes)", proc->pid,
347 /* name of the debug control Unix socket */
348 #define JDWP_CONTROL_NAME "\0jdwp-control"
360 static int jdwp_control_init(JdwpControl* control, const char* sockname, int socknamelen) { argument
368 D("vm debug control socket name too long (%d extra chars)", pathlen + 1 - maxpath);
378 D("could not create vm debug control socke
413 JdwpControl* control = (JdwpControl*)_control; local
[all...]
/system/extras/ANRdaemon/
H A DANRdaemon.cpp198 const char* control = (enable?"1":"0"); local
199 ssize_t len = strlen(control);
201 while (write(fd, control, len) != len) {

Completed in 2207 milliseconds