/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();
|
named_pipe_policy_test.cc | 34 base::string16 handle_name; local 35 if (GetHandleName(pipe, &handle_name)) { 36 if (handle_name.compare(0, wcslen(argv[1]), argv[1]) != 0)
|
handle_closer_agent.cc | 91 string16 handle_name; 131 if (!GetHandleName(handle, &handle_name) || !names.count(handle_name))
|
sandbox_policy.h | 219 // A NULL value for handle_name indicates all handles of the specified type. 220 // An empty string for handle_name indicates the handle is unnamed. 222 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 | 555 std::ostringstream handle_name; local 556 handle_name << "TwoWayTestChannel" << base::GetCurrentProcId(); 557 IPC::ChannelHandle handle(handle_name.str());
|