HomeSort by relevance Sort by last modified time
    Searched refs:to_send (Results 1 - 7 of 7) sorted by null

  /external/dbus/dbus/
dbus-auth-script.c 478 DBusString to_send; local
482 if (!_dbus_string_init (&to_send))
488 if (!append_quoted_string (&to_send, &line))
492 _dbus_string_free (&to_send);
496 _dbus_verbose ("Sending '%s'\n", _dbus_string_get_const_data (&to_send));
498 if (!_dbus_string_append (&to_send, "\r\n"))
502 _dbus_string_free (&to_send);
510 if (_dbus_string_find (&to_send, 0,
518 _dbus_string_free (&to_send);
526 _dbus_string_free (&to_send);
    [all...]
  /external/chromium/chrome/browser/
process_singleton_win.cc 92 std::wstring to_send(L"START\0", 6); // want the NULL in the string.
96 to_send.append(cur_dir.value());
97 to_send.append(L"\0", 1); // Null separator.
98 to_send.append(GetCommandLineW());
99 to_send.append(L"\0", 1); // Null separator.
115 cds.cbData = static_cast<DWORD>((to_send.length() + 1) * sizeof(wchar_t));
116 cds.lpData = const_cast<wchar_t*>(to_send.c_str());
process_singleton_linux.cc 832 std::string to_send(kStartToken);
833 to_send.push_back(kTokenDelimiter);
838 to_send.append(current_dir.value());
843 to_send.push_back(kTokenDelimiter);
844 to_send.append(*it);
848 if (!WriteToSocket(socket.fd(), to_send.data(), to_send.length())) {
    [all...]
  /external/dbus/bus/
connection.c 2033 MessageToSend *to_send; local
2225 MessageToSend *to_send; local
    [all...]
  /external/bluetooth/bluedroid/stack/gatt/
gatt_cl.c 345 UINT16 to_send, offset; local
350 to_send = p_attr->len - p_attr->offset;
352 if (to_send > (p_tcb->payload_size - GATT_WRITE_LONG_HDR_SIZE)) /* 2 = UINT16 offset bytes */
353 to_send = p_tcb->payload_size - GATT_WRITE_LONG_HDR_SIZE;
363 GATT_TRACE_DEBUG2("offset =0x%x len=%d", offset, to_send );
369 to_send, /* length */
374 p_clcb->counter = to_send;
    [all...]
gatt_int.h 251 BOOLEAN to_send; member in struct:__anon2604
641 extern BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_HDR *p_buf);
gatt_utils.c     [all...]

Completed in 147 milliseconds