Searched refs:target (Results 1 - 25 of 40) sorted by relevance

12

/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
H A Dtarget.h44 enum perf_target_errno perf_target__validate(struct perf_target *target);
45 enum perf_target_errno perf_target__parse_uid(struct perf_target *target);
47 int perf_target__strerror(struct perf_target *target, int errnum, char *buf,
50 static inline bool perf_target__has_task(struct perf_target *target) argument
52 return target->tid || target->pid || target->uid_str;
55 static inline bool perf_target__has_cpu(struct perf_target *target) argument
57 return target->system_wide || target
60 perf_target__none(struct perf_target *target) argument
[all...]
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
H A Dtarget.h48 enum perf_target_errno perf_target__validate(struct perf_target * target);
49 enum perf_target_errno perf_target__parse_uid(struct perf_target * target);
/system/vold/fs/
H A DExt4.h30 status_t Check(const std::string& source, const std::string& target);
31 status_t Mount(const std::string& source, const std::string& target, bool ro,
34 const std::string& target);
H A DF2fs.h31 status_t Mount(const std::string& source, const std::string& target);
H A DVfat.h31 status_t Mount(const std::string& source, const std::string& target, bool ro,
H A DExt4.cpp67 status_t Check(const std::string& source, const std::string& target) { argument
72 const char* c_target = target.c_str();
129 status_t Mount(const std::string& source, const std::string& target, bool ro, argument
135 const char* c_target = target.c_str();
165 const std::string& target) {
171 cmd.push_back(target);
164 Format(const std::string& source, unsigned int numSectors, const std::string& target) argument
H A DF2fs.cpp53 status_t Mount(const std::string& source, const std::string& target) { argument
55 const char* c_target = target.c_str();
H A DVfat.cpp121 status_t Mount(const std::string& source, const std::string& target, bool ro, argument
129 const char* c_target = target.c_str();
/system/netd/server/
H A DNetdConstants.cpp71 static int execIptables(IptablesTarget target, bool silent, va_list args) { argument
93 if (target == V4 || target == V4V6) {
97 if (target == V6 || target == V4V6) {
104 int execIptables(IptablesTarget target, ...) { argument
106 va_start(args, target);
107 int res = execIptables(target, false, args);
112 int execIptablesSilently(IptablesTarget target, ...) { argument
114 va_start(args, target);
[all...]
H A DFirewallController.cpp160 IptablesTarget target = V4; local
162 target = V6;
173 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL);
174 res |= execIptables(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL);
185 IptablesTarget target = V4; local
187 target = V6;
204 res |= execIptables(target, op, LOCAL_INPUT, "-s", addr, "-p", protocolStr,
206 res |= execIptables(target, op, LOCAL_OUTPUT, "-d", addr, "-p", protocolStr,
229 const char* target; local
232 target
[all...]
H A DNetdConstants.h36 int execIptables(IptablesTarget target, ...);
37 int execIptablesSilently(IptablesTarget target, ...);
/system/core/libutils/
H A DPrinter.cpp126 String8Printer::String8Printer(String8* target, const char* prefix) : argument
127 mTarget(target),
130 if (target == NULL) {
/system/core/libbacktrace/
H A DAndroid.mk73 build_type := target
91 build_type := target
132 build_type := target
H A DAndroid.build.mk72 ifeq ($(build_type),target)
/system/gatekeeper/
H A Dgatekeeper_messages.cpp49 SizedBuffer *target) {
50 if (*buffer + sizeof(target->length) > end) return ERROR_INVALID;
52 memcpy(&target->length, *buffer, sizeof(target->length));
53 *buffer += sizeof(target->length);
54 if (target->length != 0) {
55 const uint8_t *buffer_end = *buffer + target->length;
58 target->buffer.reset(new uint8_t[target->length]);
59 memcpy(target
48 read_from_buffer(const uint8_t **buffer, const uint8_t *end, SizedBuffer *target) argument
[all...]
/system/core/libnativebridge/tests/
H A DAndroid.nativebridge-dummy.mk6 # Shared library for target
42 # Shared library for target
/system/core/libnativebridge/
H A DAndroid.mk6 # Shared library for target
/system/extras/verity/
H A DBootSignature.java57 * target CHARACTER STRING,
69 private DERPrintableString target; field in class:BootSignature
78 * @param target Target name, included in the signed data
81 public BootSignature(String target, int length) { argument
83 this.target = new DERPrintableString(target);
114 target = (DERPrintableString) attrs.getObjectAt(0);
122 attrs.add(target);
220 public static void doSignature( String target, argument
238 BootSignature bootsig = new BootSignature(target, imag
[all...]
/system/core/fs_mgr/
H A Dfs_mgr.c96 static void check_fs(char *blk_device, char *fs_type, char *target) argument
124 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts);
126 __func__, blk_device, target, fs_type, ret, strerror(errno));
132 int result = umount(target);
134 INFO("%s(): unmount(%s) succeeded\n", __func__, target);
137 ERROR("%s(): umount(%s)=%d: %s\n", __func__, target, result, strerror(errno));
219 static int __mount(const char *source, const char *target, const struct fstab_rec *rec) argument
229 if (!lstat(target, &info))
231 unlink(target);
232 mkdir(target, 075
[all...]
/system/netd/client/
H A DNetdClient.cpp111 int setNetworkForTarget(unsigned netId, std::atomic_uint* target) { argument
113 *target = netId;
130 *target = netId;
/system/media/camera/docs/
H A Dhtml.mako120 # Convert target "xxx.yyy#zzz" to a HTML reference to Android public developer
122 def html_link(target, shortname):
124 lastdot = target.rfind('.')
126 shortname = target
128 shortname = target[lastdot + 1:]
130 target = target.replace('.','/')
131 if target.find('#') != -1:
132 target = target
[all...]
/system/core/libpixelflinger/codeflinger/
H A Dmips_opcode.h59 unsigned target: 26; member in struct:__anon1431::__anon1433
92 unsigned target: 26; member in struct:__anon1431::__anon1437
/system/core/include/utils/
H A DPrinter.h90 // Create a printer using the specified String8 as the target.
92 // - target's memory lifetime must be a superset of this String8Printer.
93 String8Printer(String8* target, const char* prefix = 0);
106 // Create a printer using the specified printer as the target.
/system/core/rootdir/
H A DAndroid.mk5 # Only copy init.rc if the target doesn't have its own.
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/
H A Dperf.h169 struct perf_target target; member in struct:perf_record_opts

Completed in 483 milliseconds

12