HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 1626 - 1650 of 4741) sorted by null

<<61626364656667686970>>

  /system/core/libutils/
SystemClock.cpp 2 * Copyright (C) 2008 The Android Open Source Project
141 int fd = open("/dev/alarm", O_RDONLY);
  /system/core/toolbox/cp/
utils.c 120 if ((from_fd = open(entp->fts_path, O_RDONLY, 0)) == -1) {
161 to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0);
163 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
172 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
184 /* if hard linking then simply close the open fds, link and return */
  /system/core/toolbox/
hd.c 53 fd = open(argv[optind], O_RDONLY);
55 fprintf(stderr, "could not open %s, %s\n", argv[optind], strerror(errno));
insmod.c 20 /* open the file */
21 fd = open(filename, O_RDONLY);
65 fprintf(stderr, "insmod: can't open '%s'\n", argv[1]);
mkswap.c 39 fd = open(argv[1], O_WRONLY);
42 fprintf(stderr, "Cannot open %s\n", argv[1]);
  /system/extras/fatblock/
fdpool.c 2 * Copyright (C) 2010 The Android Open Source Project
129 fd = open(pathname, flags);
  /system/extras/tests/ext4/
corrupt_gdt_free_blocks.c 27 fd = open(argv[1], O_RDWR);
30 fprintf(stderr, "%s: Cannot open block device %s\n", me, argv[1]);
  /system/extras/tests/storage/
wipe_blkdev.c 2 * Copyright (C) 2011, 2012 The Android Open Source Project
103 fd = open(devname, O_RDWR);
105 fprintf(stderr, "Cannot open device %s\n", devname);
  /bionic/libc/kernel/tools/
utils.py 86 for line in open(path):
147 f = open(dst, "r")
181 f = open(dst, "w")
  /development/tools/findunused/
find_unused_resources.rb 93 File.open(filename) { |file|
113 File.open(filename) { |file|
132 File.open(filename) { |file|
  /device/asus/flo/camera/mm-image-codec/qomx_core/
qomx_core.c 191 if (FALSE == p_core_comp->open) {
200 p_core_comp->open = TRUE;
338 p_core_comp->open = FALSE;
  /external/chromium/build/util/
lastchange.py 225 revision = open(default_lastchange, 'r').read().strip()
238 old_contents = open(file_name, 'r').read()
245 open(file_name, 'w').write(contents)
  /external/chromium_org/build/android/
lighttpd_server.py 80 with codecs.open(self.base_config_path, 'r', 'utf-8') as f:
87 with codecs.open(self.config_path, 'w', 'utf-8') as f:
101 assert int(open(self.pid_file, 'r').read()) == self.process.pid
  /external/chromium_org/build/util/
lastchange.py 165 revision = open(default_lastchange, 'r').read().strip()
214 old_contents = open(file_name, 'r').read()
221 open(file_name, 'w').write(contents)
  /external/chromium_org/chrome/common/extensions/docs/server2/
integration_test.py 48 with open(os.path.join(path, filename), 'r') as f:
92 with open(known_broken_links_path, 'r') as f:
105 with open(known_broken_links_path, 'w') as f:
  /external/chromium_org/chrome/test/functional/rlz/
rlztest.py 200 # Open log file.
201 log_file = open(
224 # Open log file.
225 log_file = open(
248 log_file = open(
  /external/chromium_org/chrome/test/functional/
webpagereplay.py 147 return open(self.log_path, 'w')
162 for line in open(self.log_path).readlines():
204 log = open(self.log_path).read()
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 309 BOOL WINAPI WebPluginIMEWin::ImmSetOpenStatus(HIMC context, BOOL open) {
312 return ::ImmSetOpenStatus(context, open);
314 int input_type = open ? 1 : 0;
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_helpers_unittest.py 170 f = open(file_path, 'w')
175 f = open(file_path, 'r')
180 f = open(file_path, 'r')
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_filelist.py 62 with open(filename) as f:
170 with open(rule_path) as infile:
179 with open(rule_path, 'w') as output:
  /external/chromium_org/net/tools/quic/benchmark/
run_client.py 69 with open(json_file) as f:
146 with open(delay_file, 'w') as f:
152 with open(packets_file, 'w') as f:
  /external/chromium_org/ppapi/generators/
idl_lexer.py 225 data = open(filename).read()
286 open('original.txt', 'w').write(src1)
287 open('tokenized.txt', 'w').write(src2)
  /external/chromium_org/sandbox/linux/services/
credentials_unittest.cc 63 // No open directory should exist at startup.
67 int dev_fd = open("/dev", O_RDONLY | O_DIRECTORY);
77 int proc_fd = open("/proc", O_RDONLY | O_DIRECTORY);
81 // Don't pass |proc_fd|, an open directory (proc_fd) should
84 // Pass |proc_fd| and no open directory should be detected.
89 int dev_fd = open("/dev", O_RDONLY | O_DIRECTORY);
95 // directory file descriptor open.
  /external/chromium_org/third_party/WebKit/Source/web/scripts/
make-file-arrays.py 44 with open(file_name, 'rb') as f:
88 with open(header_file_name, 'w') as header_file:
101 with open(cpp_file_name, 'w') as cpp_file:
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
cros_interface.py 21 with open(lsb_release, 'r') as f:
41 with open(os.devnull, 'w') as devnull:
47 """Open a subprocess to execute a program and returns its output.
61 with open(os.devnull, 'w') as devnull:
166 raise LoginException('Permissions for %s are too open. To fix this,\n'
240 with open(f.name, 'r') as f2:

Completed in 1255 milliseconds

<<61626364656667686970>>