Home
last modified time | relevance | path

Searched refs:AddFileAt (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/device/google/cuttlefish/host/commands/process_sandboxer/policies/
Drun_cvd.cpp36 .AddFileAt(sandboxer_proxy, host.HostToolExe("adb_connector")) in RunCvdPolicy()
37 .AddFileAt(sandboxer_proxy, host.HostToolExe("casimir_control_server")) in RunCvdPolicy()
38 .AddFileAt(sandboxer_proxy, host.HostToolExe("control_env_proxy_server")) in RunCvdPolicy()
39 .AddFileAt(sandboxer_proxy, host.HostToolExe("crosvm")) in RunCvdPolicy()
40 .AddFileAt(sandboxer_proxy, host.HostToolExe("echo_server")) in RunCvdPolicy()
41 .AddFileAt(sandboxer_proxy, host.HostToolExe("gnss_grpc_proxy")) in RunCvdPolicy()
42 .AddFileAt(sandboxer_proxy, host.HostToolExe("kernel_log_monitor")) in RunCvdPolicy()
43 .AddFileAt(sandboxer_proxy, host.HostToolExe("log_tee")) in RunCvdPolicy()
44 .AddFileAt(sandboxer_proxy, host.HostToolExe("logcat_receiver")) in RunCvdPolicy()
45 .AddFileAt(sandboxer_proxy, host.HostToolExe("metrics")) in RunCvdPolicy()
[all …]
Dprocess_restarter.cpp35 .AddFileAt(sandboxer_proxy, host.HostToolExe("adb_connector")) in ProcessRestarterPolicy()
36 .AddFileAt(sandboxer_proxy, host.HostToolExe("casimir")) in ProcessRestarterPolicy()
37 .AddFileAt(sandboxer_proxy, host.HostToolExe("crosvm")) in ProcessRestarterPolicy()
38 .AddFileAt(sandboxer_proxy, host.HostToolExe("root-canal")) in ProcessRestarterPolicy()
39 .AddFileAt(sandboxer_proxy, host.HostToolExe("vhost_device_vsock")) in ProcessRestarterPolicy()
Dassemble_cvd.cpp51 .AddFileAt(sandboxer_proxy, host.HostToolExe("avbtool")) in AssembleCvdPolicy()
52 .AddFileAt(sandboxer_proxy, host.HostToolExe("crosvm")) in AssembleCvdPolicy()
53 .AddFileAt(sandboxer_proxy, host.HostToolExe("mkenvimage_slim")) in AssembleCvdPolicy()
54 .AddFileAt(sandboxer_proxy, host.HostToolExe("newfs_msdos")) in AssembleCvdPolicy()
55 .AddFileAt(sandboxer_proxy, host.HostToolExe("simg2img")) in AssembleCvdPolicy()
Dcvd_internal_start.cpp36 .AddFileAt(sandboxer_proxy, host.HostToolExe("assemble_cvd")) in CvdInternalStartPolicy()
37 .AddFileAt(sandboxer_proxy, host.HostToolExe("run_cvd")) in CvdInternalStartPolicy()
Davbtool.cpp73 .AddFileAt(host.HostToolExe("sandboxer_proxy"), "/usr/bin/openssl") in AvbToolPolicy()
/aosp_15_r20/external/sandboxed-api/sandboxed_api/sandbox2/
H A Dmounts_test.cc55 EXPECT_THAT(mounts.AddFileAt("/a", ""), in TEST()
57 EXPECT_THAT(mounts.AddFileAt("", "/a"), in TEST()
59 EXPECT_THAT(mounts.AddFileAt("/a", "a"), in TEST()
63 EXPECT_THAT(mounts.AddFileAt("/a", "/"), in TEST()
77 EXPECT_THAT(mounts.AddFileAt("/a", "/f"), IsOk()); in TEST()
129 EXPECT_THAT(mounts.AddFileAt(path, "/a"), IsOk()); in TEST()
130 EXPECT_THAT(mounts.AddFileAt(path, "/a"), IsOk()); in TEST()
131 EXPECT_THAT(mounts.AddFileAt(symlink_path, "/a"), IsOk()); in TEST()
172 EXPECT_THAT(mounts.AddFileAt("/f", "/c"), in TEST()
178 EXPECT_THAT(mounts.AddFileAt("/f", "/c/d/e"), in TEST()
[all …]
H A Dnamespace_test.cc104 .AddFileAt(path, "/binary_path") in TEST()
120 .AddFileAt(name, "/temp_file") in TEST()
130 .AddFileAt(name, "/temp_file") in TEST()
H A Dstack_trace.cc171 .AddFileAt(maps_file, in GetPolicy()
173 .AddFileAt(maps_file, in GetPolicy()
178 .AddFileAt(exe_path, app_path) in GetPolicy()
H A Dmounts.h54 return AddFileAt(path, path, is_ro);
57 absl::Status AddFileAt(absl::string_view outside, absl::string_view inside,
H A Dpolicybuilder.cc1336 return AddFileAt(path, path, is_ro); in AddFile()
1339 PolicyBuilder& PolicyBuilder::AddFileAt(absl::string_view outside, in AddFileAt() function in sandbox2::PolicyBuilder
1375 if (auto status = mounts_.AddFileAt(*valid_outside, inside, is_ro); in AddFileAtIfNamespaced()
H A Dpolicybuilder.h618 PolicyBuilder& AddFileAt(absl::string_view outside, absl::string_view inside,
H A Dmonitor_base.cc112 if (auto status = mounts.AddFileAt( in MaybeEnableTomoyoLsmWorkaround()
H A Dmounts.cc340 absl::Status Mounts::AddFileAt(absl::string_view outside, in AddFileAt() function in sandbox2::Mounts
/aosp_15_r20/device/google/cuttlefish/host/commands/process_sandboxer/
Dpolicies.cpp132 r1.AddFileAt(server_socket_outside_path, kManagerSocketPath, false); in PolicyForExecutable()
/aosp_15_r20/external/sandboxed-api/sandboxed_api/sandbox2/examples/tool/
H A Dsandbox2tool.cc192 builder.AddFileAt(source, target, true); in main()