/external/chromium_org/chrome/browser/ |
chrome_process_finder_win.cc | 165 std::wstring to_send(L"START\0", 6); // want the NULL in the string. 169 to_send.append(cur_dir.value()); 170 to_send.append(L"\0", 1); // Null separator. 171 to_send.append(command_line.GetCommandLineString()); 172 to_send.append(L"\0", 1); // Null separator. 180 cds.cbData = static_cast<DWORD>((to_send.length() + 1) * sizeof(wchar_t)); 181 cds.lpData = const_cast<wchar_t*>(to_send.c_str());
|
process_singleton_posix.cc | 842 std::string to_send(kStartToken); 843 to_send.push_back(kTokenDelimiter); 848 to_send.append(current_dir.value()); 853 to_send.push_back(kTokenDelimiter); 854 to_send.append(*it); 858 if (!WriteToSocket(socket.fd(), to_send.data(), to_send.length())) { [all...] |
/external/chromium_org/mojo/services/view_manager/ |
view_manager_service_impl.cc | 120 std::vector<const ServerView*> to_send; local 122 GetUnknownViewsFrom(view, &to_send); 128 ViewsToViewDatas(to_send)); 536 std::vector<const ServerView*> to_send; local 538 GetUnknownViewsFrom(GetView(ViewIdFromTransportId(*i)), &to_send); local 542 ViewToViewData(to_send.front()),
|
/external/bluetooth/bluedroid/stack/gatt/ |
gatt_cl.c | 365 UINT16 to_send, offset; local 370 to_send = p_attr->len - p_attr->offset; 372 if (to_send > (p_tcb->payload_size - GATT_WRITE_LONG_HDR_SIZE)) /* 2 = UINT16 offset bytes */ 373 to_send = p_tcb->payload_size - GATT_WRITE_LONG_HDR_SIZE; 383 GATT_TRACE_DEBUG("offset =0x%x len=%d", offset, to_send ); 389 to_send, /* length */ 394 p_clcb->counter = to_send; [all...] |
gatt_utils.c | [all...] |
gatt_int.h | 269 BOOLEAN to_send; member in struct:__anon5911 682 extern BOOLEAN gatt_cmd_enq(tGATT_TCB *p_tcb, UINT16 clcb_idx, BOOLEAN to_send, UINT8 op_code, BT_HDR *p_buf);
|
/external/chromium_org/cc/resources/ |
prioritized_resource_unittest.cc | 350 ResourceProvider::ResourceIdArray to_send; local 353 to_send.push_back(textures[i]->resource_id()); 354 resource_provider_->PrepareSendToParent(to_send, &transferable); 550 ResourceProvider::ResourceIdArray to_send; 553 to_send.push_back(textures[i]->resource_id()); 554 resource_provider_->PrepareSendToParent(to_send, &transferable); [all...] |