HomeSort by relevance Sort by last modified time
    Searched full:object_name (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/cc/debug/
traced_value.cc 20 base::DictionaryValue* dict, const char* object_name, const void* id) {
21 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id));
27 const char* object_name,
30 MakeDictIntoImplicitSnapshot(dict, object_name, id);
37 const char* object_name,
41 MakeDictIntoImplicitSnapshot(dict, object_name, id);
traced_value.h 23 base::DictionaryValue* dict, const char* object_name, const void* id);
27 const char* object_name,
33 const char* object_name,
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_object_entry.cc 13 const base::string16& object_name,
18 name(object_name),
mtp_device_operations_util.h 73 // Returns the identifier of the object specified by the |object_name|.
75 // |object_name| specifies the friendly name of the object.
78 const base::string16& object_name);
mtp_device_object_entry.h 20 const base::string16& object_name,
mtp_device_operations_util.cc 258 // name in |object_name|. Leave |object_name| blank to request all entries. On
262 const base::string16& object_name,
275 const bool get_all_entries = object_name.empty();
290 } else if (entry.name == object_name) {
404 const base::string16& object_name) {
406 if (!GetMTPDeviceObjectEntries(device, parent_id, object_name,
  /external/lldb/test/expression_command/formatters/
TestFormatters.py 84 object_name = self.res.GetOutput()
85 object_name = object_name[7:]
86 object_name = object_name[0:object_name.find(' =')]
91 self.expect("expression $" + object_name,
97 self.expect("expression --show-types -- $" + object_name,
109 self.expect("expression $" + object_name + '.a',
112 self.expect("expression *$" + object_name + '.b.i_ptr'
    [all...]
  /external/chromium_org/sandbox/win/src/
filesystem_interception.cc 303 UNICODE_STRING object_name; local
304 InitializeObjectAttributes(&object_attributes, &object_name, 0, NULL, NULL);
311 object_name.Buffer = file_rename_info->FileName;
312 object_name.Length = object_name.MaximumLength =
file_policy_test.cc 101 UNICODE_STRING object_name; local
102 RtlInitUnicodeString(&object_name, file.c_str());
105 InitializeObjectAttributes(&obj_attributes, &object_name,
136 UNICODE_STRING object_name; local
137 RtlInitUnicodeString(&object_name, file.c_str());
140 InitializeObjectAttributes(&obj_attributes, &object_name,
214 UNICODE_STRING object_name; local
216 RtlInitUnicodeString(&object_name, file.c_str());
219 InitializeObjectAttributes(&obj_attributes, &object_name,
policy_engine_params.h 35 // POLPARAM(OBJECT_NAME)
45 // p[open_params::OBJECT_NAME] =
  /external/chromium_org/content/renderer/java/
gin_java_bridge_object.h 46 const std::string& object_name,
gin_java_bridge_object.cc 30 const std::string& object_name,
50 global->Set(gin::StringToV8(isolate, object_name), controller.ToV8());
  /external/kernel-headers/original/uapi/linux/
ncp_fs.h 90 void __user * object_name; /* a userspace data, in most cases user name */ member in struct:ncp_objectname_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
ncp_fs.h 90 void * object_name; /* a userspace data, in most cases user name */ member in struct:ncp_objectname_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ncp_fs.h 90 void * object_name; /* a userspace data, in most cases user name */ member in struct:ncp_objectname_ioctl
  /external/chromium_org/third_party/openssl/openssl/crypto/ui/
ui_locl.h 94 and object_name is the name of the object (might be a card name or
99 const char *object_name);
ui_lib.c 412 const char *object_name)
418 object_desc, object_name);
429 if (object_name)
430 len += sizeof(prompt2) - 1 + strlen(object_name);
436 if (object_name)
439 BUF_strlcat(prompt, object_name, len + 1);
696 int UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor)(UI* ui, const char* object_desc, const char* object_name))
ui.h 173 and object_name is the name of the object (might be a card name or
181 "Enter {object_desc} for {object_name}:"
183 So, if object_desc has the value "pass phrase" and object_name has
189 const char *object_desc, const char *object_name);
313 int UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor)(UI* ui, const char* object_desc, const char* object_name));
  /external/lldb/source/Expression/
ClangUserExpression.cpp 563 ConstString &object_name,
570 err.SetErrorStringWithFormat("Couldn't load '%s' because the context is incomplete", object_name.AsCString());
577 valobj_sp = frame_sp->GetValueForVariableExpressionPath(object_name.AsCString(),
594 err.SetErrorStringWithFormat("Couldn't load '%s' because its value couldn't be evaluated", object_name.AsCString());
625 ConstString object_name; local
629 object_name.SetCString("this");
633 object_name.SetCString("self");
643 object_ptr = GetObjectPointer(frame, object_name, object_ptr_error);
    [all...]
  /external/openssl/crypto/ui/
ui_locl.h 94 and object_name is the name of the object (might be a card name or
99 const char *object_name);
ui_lib.c 412 const char *object_name)
418 object_desc, object_name);
429 if (object_name)
430 len += sizeof(prompt2) - 1 + strlen(object_name);
436 if (object_name)
439 BUF_strlcat(prompt, object_name, len + 1);
696 int UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor)(UI* ui, const char* object_desc, const char* object_name))
  /external/protobuf/gtest/scons/
SConscript 137 object_name = os.path.basename(source).rstrip('.cc') + build_env['OBJ_SUFFIX']
138 if object_name not in _all_objects:
139 _all_objects[object_name] = build_env.Object(target=object_name,
141 return _all_objects[object_name]
  /external/chromium_org/base/process/
process_metrics_mac.cc 155 mach_port_t object_name; local
162 &object_name);
174 mach_port_deallocate(mach_task_self(), object_name); local
  /external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
ObjectContainerBSDArchive.cpp 155 ObjectContainerBSDArchive::Archive::FindObject (const ConstString &object_name, const TimeValue &object_mod_time)
157 const ObjectNameToIndexMap::Entry *match = m_object_name_to_index_map.FindFirstValueForName (object_name.GetCString());
306 ConstString object_name (module_sp->GetObjectName());
307 if (object_name)
  /external/lldb/source/Core/
Module.cpp 172 const ConstString *object_name,
203 if (object_name)
204 m_object_name = *object_name;
868 Module::SetFileSpecAndObjectName (const FileSpec &file, const ConstString &object_name)
874 m_object_name = object_name;
920 const char *object_name = m_object_name.GetCString(); local
921 if (object_name)
922 s->Printf("(%s)", object_name);
1466 const ConstString &object_name = module_ref.GetObjectName(); local
    [all...]

Completed in 318 milliseconds

1 2