Home
last modified time | relevance | path

Searched refs:custom_params (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/unittests/Process/gdb-remote/
DGDBRemoteCommunicationClientTest.cpp453 StructuredData::DictionarySP custom_params = in TEST_F() local
455 custom_params->AddStringItem("tracetech", "intel-pt"); in TEST_F()
456 custom_params->AddIntegerItem("psb", 0x01); in TEST_F()
458 options.setTraceParams(custom_params); in TEST_F()
588 auto custom_params = options.getTraceParams(); in TEST_F() local
593 ASSERT_TRUE(custom_params); in TEST_F()
594 ASSERT_EQ(custom_params->GetType(), eStructuredDataTypeDictionary); in TEST_F()
595 ASSERT_TRUE(custom_params->GetValueForKeyAsInteger("psb", psb_value)); in TEST_F()
598 custom_params->GetValueForKeyAsString("tracetech", trace_tech_value)); in TEST_F()
/external/curl/lib/
Dimap.h66 char *custom_params; /* Parameters for the custom request */ member
Dimap.c615 imap->custom_params ? imap->custom_params : ""); in imap_perform_list()
1506 Curl_safefree(imap->custom_params); in imap_done()
2095 imap->custom_params = strdup(params); in imap_parse_custom_request()
2098 if(!imap->custom_params) in imap_parse_custom_request()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
Dcli-wrapper-pt.cpp178 lldb::SBStructuredData custom_params; in DoExecute() local
179 lldb::SBError error = custom_params.SetFromJSON(sb_stream); in DoExecute()
185 lldb_SBTraceOptions.setTraceParams(custom_params); in DoExecute()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp1269 StructuredData::DictionarySP custom_params = options.getTraceParams(); in Handle_jTraceConfigRead() local
1270 if (custom_params) in Handle_jTraceConfigRead()
1271 json_packet.AddItem("params", custom_params); in Handle_jTraceConfigRead()
DGDBRemoteCommunicationClient.cpp3392 StructuredData::DictionarySP custom_params = options.getTraceParams(); in SendStartTracePacket() local
3393 if (custom_params) in SendStartTracePacket()
3394 json_packet.AddItem("params", custom_params); in SendStartTracePacket()