Searched refs:to_send (Results 1 - 7 of 7) sorted by relevance

/external/dbus/dbus/
H A Ddbus-auth-script.c478 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/
H A Dprocess_singleton_win.cc92 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());
H A Dprocess_singleton_linux.cc832 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())) {
/external/dbus/bus/
H A Dconnection.c1917 MessageToSend *to_send)
1919 if (to_send->message)
1920 dbus_message_unref (to_send->message);
1922 if (to_send->preallocated)
1923 dbus_connection_free_preallocated_send (connection, to_send->preallocated);
1925 dbus_free (to_send);
2033 MessageToSend *to_send; local
2058 to_send = dbus_new (MessageToSend, 1);
2059 if (to_send == NULL)
2064 to_send
1916 message_to_send_free(DBusConnection *connection, MessageToSend *to_send) argument
2225 MessageToSend *to_send; local
[all...]
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_cl.c345 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;
1093 p_cmd->to_send && p_cmd->p_cmd != NULL)
1099 p_cmd->to_send = FALSE;
H A Dgatt_int.h251 BOOLEAN to_send; member in struct:__anon1049
641 extern BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_HDR *p_buf);
H A Dgatt_utils.c1896 BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_HDR *p_buf) argument
1900 p_cmd->to_send = to_send; /* waiting to be sent */
1905 if (!to_send)

Completed in 164 milliseconds