HomeSort by relevance Sort by last modified time
    Searched refs:handle_name (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/sandbox/win/src/
handle_closer.h 47 // A NULL value for handle_name indicates all handles of the specified type.
48 // An empty string for handle_name indicates the handle is unnamed.
49 ResultCode AddHandle(const char16* handle_type, const char16* handle_name);
71 bool GetHandleName(HANDLE handle, string16* handle_name);
handle_closer_test.cc 79 string16 handle_name; local
86 if (GetHandleName(handle, &handle_name)) {
88 if (handle_name == argv[i])
115 string16 handle_name; local
118 CHECK(sandbox::GetHandleName(marker, &handle_name));
120 command += handle_name;
135 string16 handle_name; local
138 CHECK(sandbox::GetHandleName(marker, &handle_name));
139 CHECK_EQ(policy->AddKernelObjectToClose(L"File", handle_name.c_str()),
142 command += handle_name;
    [all...]
handle_closer.cc 38 const char16* handle_name) {
47 if (handle_name)
48 names->second.insert(handle_name);
49 } else if (!handle_name) { // Now we need to close all handles of this type.
52 names->second.insert(handle_name);
177 bool GetHandleName(HANDLE handle, string16* handle_name) {
195 handle_name->assign(name->Buffer, name->Length / sizeof(wchar_t));
197 handle_name->clear();
handle_closer_agent.cc 91 string16 handle_name;
131 if (!GetHandleName(handle, &handle_name) || !names.count(handle_name))
sandbox_policy.h 218 // A NULL value for handle_name indicates all handles of the specified type.
219 // An empty string for handle_name indicates the handle is unnamed.
221 const wchar_t* handle_name) = 0;
sandbox_policy_base.h 67 const char16* handle_name) OVERRIDE;
sandbox_policy_base.cc 418 const char16* handle_name) {
419 return handle_closer_.AddHandle(handle_type, handle_name);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 141 def handle_name(name, prefix): function in function:FixUrllib.transform_member
152 names.extend(handle_name(elt, pref))
154 names.extend(handle_name(elts[-1], pref))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 141 def handle_name(name, prefix): function in function:FixUrllib.transform_member
152 names.extend(handle_name(elt, pref))
154 names.extend(handle_name(elts[-1], pref))
  /external/chromium_org/ppapi/proxy/
ppapi_proxy_test.cc 548 std::ostringstream handle_name; local
549 handle_name << "TwoWayTestChannel" << base::GetCurrentProcId();
550 IPC::ChannelHandle handle(handle_name.str());

Completed in 382 milliseconds