Home
last modified time | relevance | path

Searched refs:name_token (Results 1 – 8 of 8) sorted by relevance

/external/ipsec-tools/src/racoon/
Dgssapi.c159 gss_buffer_desc name_token; in gssapi_get_default_name() local
167 name_token.length = asprintf(&buf, "%s@%s", GSSAPI_DEF_NAME, name); in gssapi_get_default_name()
168 name_token.value = buf; in gssapi_get_default_name()
170 maj_stat = gss_import_name(&min_stat, &name_token, in gssapi_get_default_name()
174 maj_stat = gss_release_buffer(&min_stat, &name_token); in gssapi_get_default_name()
179 maj_stat = gss_release_buffer(&min_stat, &name_token); in gssapi_get_default_name()
278 gss_buffer_desc empty, name_token; in gssapi_get_itoken() local
296 name_token.length = iph1->approval->gssid->l; in gssapi_get_itoken()
297 name_token.value = iph1->approval->gssid->v; in gssapi_get_itoken()
298 maj_stat = gss_import_name(&min_stat, &name_token, in gssapi_get_itoken()
[all …]
/external/llvm-project/lldb/include/lldb/Interpreter/
DScriptInterpreter.h170 const void *name_token = nullptr) {
176 const void *name_token = nullptr) {
186 const void *name_token = nullptr) {
191 const void *name_token = nullptr) {
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPythonImpl.h55 const void *name_token = nullptr) override;
58 const void *name_token = nullptr) override;
61 const void *name_token = nullptr) override;
65 const void *name_token = nullptr) override;
DScriptInterpreterPython.cpp876 const void *name_token = nullptr) { in GenerateUniqueName() argument
882 if (!name_token) in GenerateUniqueName()
885 sstr.Printf("%s_%p", base_name_wanted, name_token); in GenerateUniqueName()
1396 StringList &user_input, std::string &output, const void *name_token) { in GenerateTypeScriptFunction() argument
1410 num_created_functions, name_token)); in GenerateTypeScriptFunction()
1447 StringList &user_input, std::string &output, const void *name_token) { in GenerateTypeSynthClass() argument
1460 "lldb_autogen_python_type_synth_class", num_created_classes, name_token)); in GenerateTypeSynthClass()
2153 const char *oneliner, std::string &output, const void *name_token) { in GenerateTypeScriptFunction() argument
2156 return GenerateTypeScriptFunction(input, output, name_token); in GenerateTypeScriptFunction()
2160 const char *oneliner, std::string &output, const void *name_token) { in GenerateTypeSynthClass() argument
[all …]
/external/llvm-project/lldb/source/API/
DSBTypeCategory.cpp416 const void *name_token = in AddTypeSummary() local
431 name_token) && in AddTypeSummary()
540 const void *name_token = in AddTypeSynthetic() local
555 name_token) && in AddTypeSynthetic()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc1005 io::Tokenizer::Token name_token = input_->current(); in ParseMessageFieldNoLabel() local
1056 location.StartAt(name_token); in ParseMessageFieldNoLabel()
1057 location.EndAt(name_token); in ParseMessageFieldNoLabel()
1066 location.StartAt(name_token); in ParseMessageFieldNoLabel()
1067 location.EndAt(name_token); in ParseMessageFieldNoLabel()
1074 AddError(name_token.line, name_token.column, in ParseMessageFieldNoLabel()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c3479 VGPU10NameToken name_token, in emit_decl_instruction() argument
3510 if (name_token.value) { in emit_decl_instruction()
3511 emit_dword(emit, name_token.value); in emit_decl_instruction()
3550 VGPU10NameToken name_token; in emit_input_declaration() local
3595 opcode0.value = operand0.value = name_token.value = 0; in emit_input_declaration()
3609 name_token.name = name; in emit_input_declaration()
3611 emit_decl_instruction(emit, opcode0, operand0, name_token, index, size); in emit_input_declaration()
3704 VGPU10NameToken name_token; in emit_output_declaration() local
3719 opcode0.value = operand0.value = name_token.value = 0; in emit_output_declaration()
3729 name_token.name = name; in emit_output_declaration()
[all …]
/external/googletest/googlemock/scripts/generator/cpp/
Dast.py1555 name_token = self._GetNextToken()
1560 return self._CreateVariable(class_token, name_token.name,
1565 tokens = (class_token, token, name_token, next_token)