HomeSort by relevance Sort by last modified time
    Searched refs:out_name (Results 1 - 25 of 49) sorted by null

1 2

  /external/toybox/toys/pending/
gzip.c 86 char *in_name, *out_name; local
94 out_name = strdup(arg);
95 out_name[len-3] = '\0';
100 out_name = strdup("-");
104 free(out_name);
105 out_name = strdup("-");
108 both_files = strcmp(in_name, "-") && strcmp(out_name, "-");
113 if (!strcmp(out_name, "-")) out = stdout;
115 int out_fd = xcreate(out_name,
129 if (both_files) fix_time(out_name, &sb)
138 char *out_name; local
    [all...]
  /external/webrtc/webrtc/common_video/libyuv/
scaler_unittest.cc 28 FILE* source_file, std::string out_name,
32 // |input_file| and an output sequence with filename |out_name|. |width| and
34 double ComputeAvgSequencePSNR(FILE* input_file, std::string out_name,
126 std::string out_name = webrtc::test::OutputPath() + local
129 source_file_, out_name,
133 source_file2 = fopen(out_name.c_str(), "rb");
134 out_name = webrtc::test::OutputPath() + "LibYuvTest_PointScale_352_288_"
137 source_file2, out_name,
140 avg_psnr = ComputeAvgSequencePSNR(source_file_, out_name, width_, height_);
147 out_name = webrtc::test::OutputPath() + "LibYuvTest_PointScale_320_240.yuv"
198 std::string out_name = webrtc::test::OutputPath() + local
255 std::string out_name = webrtc::test::OutputPath() + local
    [all...]
  /frameworks/base/tools/aapt2/
NameMangler.h 82 static bool Unmangle(std::string* out_name, std::string* out_package) {
83 size_t pivot = out_name->find('$');
88 out_package->assign(out_name->data(), pivot);
89 out_name->assign(out_name->data() + pivot + 1,
90 out_name->size() - (pivot + 1));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/protocols/
rwhod.h 42 char out_name[8]; /* user id */ member in struct:outmp
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/protocols/
rwhod.h 42 char out_name[8]; /* user id */ member in struct:outmp
  /system/vold/
Process.h 31 static void getProcessName(int pid, std::string& out_name);
Process.cpp 73 void Process::getProcessName(int pid, std::string& out_name) {
74 if (!ReadFileToString(StringPrintf("/proc/%d/cmdline", pid), &out_name)) {
75 out_name = "???";
  /system/connectivity/wificond/
ap_interface_binder.h 47 binder::Status getInterfaceName(std::string* out_name) override;
ap_interface_binder.cpp 90 binder::Status ApInterfaceBinder::getInterfaceName(std::string* out_name) {
95 *out_name = impl_->GetInterfaceName();
client_interface_binder.cpp 76 Status ClientInterfaceBinder::getInterfaceName(std::string* out_name) {
80 *out_name = impl_->GetInterfaceName();
client_interface_binder.h 48 ::android::binder::Status getInterfaceName(std::string* out_name) override;
  /frameworks/base/libs/androidfw/
AssetManager2.cpp 336 bool AssetManager2::GetResourceName(uint32_t resid, ResourceName* out_name) {
353 out_name->package = package->GetPackageName().data();
354 out_name->package_len = package->GetPackageName().size();
356 out_name->type = entry.type_string_ref.string8(&out_name->type_len);
357 out_name->type16 = nullptr;
358 if (out_name->type == nullptr) {
359 out_name->type16 = entry.type_string_ref.string16(&out_name->type_len);
360 if (out_name->type16 == nullptr)
    [all...]
  /external/selinux/checkpolicy/
checkmodule.c 269 char *out_name = basename(out_path); local
270 char *separator = strrchr(out_name, '.');
274 if (strcmp(mod_name, out_name) != 0) {
275 fprintf(stderr, "%s: Module name %s is different than the output base filename %s\n", argv[0], mod_name, out_name);
  /external/syslinux/lzo/
prepcore.c 137 const char *out_name = NULL; variable
206 out_name = argv[2];
350 f = fopen(out_name, "wb");
352 error("cannot open output file %s: %s", out_name, strerror(errno));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 82 static bool ParseCommandOutput(const char *str, uptr addr, char **out_name,
108 *out_name = symbol_name;
  /external/webrtc/talk/media/devices/
macdevicemanager.cc 158 std::string* out_name) {
169 *out_name = name;
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BtFunhausBaseTest.py 108 out_name = "{}_{}".format(serial, "bluetooth_dumpsys.txt")
113 dumpsys_path, "/", out_name))
BtMetricsBaseTest.py 118 out_name = "{}_{}".format(serial, "bluetooth_metrics.txt")
123 os.path.join(ad.metrics_path, out_name))
  /tools/test/connectivity/acts/framework/acts/controllers/
android_device.py 703 out_name = f_name.replace("adblog,", "").replace(".txt", "")
704 out_name = ",{},{}.txt".format(begin_time, out_name)
705 tag_len = utils.MAX_FILENAME_LEN - len(out_name)
707 out_name = tag + out_name
708 full_adblog_path = os.path.join(adb_excerpt_path, out_name)
871 out_name = "AndroidDevice%s_%s" % (self.serial, begin_time.replace(
873 out_name = "%s.zip" % out_name if new_br else "%s.txt" % out_nam
    [all...]
  /cts/tools/dasm/src/java_cup/
Main.java 367 String out_name; local
385 out_name = out_path + emit.parser_class_name + ".java";
386 fil = new File(out_name);
391 System.err.println("Can't open \"" + out_name + "\" for output");
396 out_name = out_path + emit.symbol_const_class_name + ".java";
397 fil = new File(out_name);
402 System.err.println("Can't open \"" + out_name + "\" for output");
  /frameworks/base/tools/aapt2/xml/
XmlPullParser.cpp 198 static void SplitName(const char* name, std::string* out_ns, std::string* out_name) {
206 out_name->assign(name);
209 out_name->assign(p + 1);
XmlDom.cpp 50 static void SplitName(const char* name, std::string* out_ns, std::string* out_name) {
58 out_name->assign(name);
61 out_name->assign(p + 1);
  /system/tpm/trunks/
session_manager_impl.cc 146 TPM2B_NAME out_name; local
152 &out_name, &qualified_name, nullptr /*authorization_delegate*/);
  /external/curl/lib/
setup-os400.h 151 gss_name_t * out_name);
  /external/libpng/contrib/tools/
pngfix.c 840 const char * out_name; /* Name of output file (if required) */ member in struct:file
    [all...]

Completed in 1741 milliseconds

1 2