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

<<111112113114115116117118119120>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 38 f = open(fname, 'w')
43 f = open(fname)
test_multibytecodec.py 151 open(TESTFN, 'w').write('\xa1')
152 f = codecs.open(TESTFN, encoding='cp949')
test_repr.py 131 fp = open(unittest.__file__)
133 "<open file %r, mode 'r' at 0x" % unittest.__file__))
211 fp = open(path, 'w')
test_site.py 104 pth_file = open(pth_fn, 'w')
283 FILE = open(self.file_path, 'w')
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
CollectTraceAction.java 2 * Copyright (C) 2011 The Android Open Source Project
100 if (dlg.open() != Window.OK) {
148 // and finally open the editor to view the file
174 // if there is a editor already open, then refresh its model
180 // open the editor (if not open), or bring it to foreground if it is already open
191 * Returns the editor part that has the provided file path open.
193 * @param traceFilePath file that should be open in an editor
194 * @return if given trace file is already open, then a reference to that editor part
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pprof 746 # OS X: open will use standard preference for SVG files.
747 system("/usr/bin/open", $fname);
    [all...]
  /art/runtime/
signal_catcher.cc 2 * Copyright (C) 2008 The Android Open Source Project
104 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666);
106 PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'";
  /bionic/libc/bionic/
arc4random.c 116 fd = open("/dev/urandom", O_RDONLY);
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 219 LONG open; member in struct:linux_romvec
  /bionic/libc/unistd/
syslog.c 270 (fd = open(_PATH_CONSOLE, O_WRONLY|O_NONBLOCK, 0)) >= 0) {
343 if (data->log_stat & LOG_NDELAY) /* open immediately */
  /bootable/recovery/applypatch/
applypatch.c 2 * Copyright (C) 2008 The Android Open Source Project
74 printf("failed to open \"%s\": %s\n", filename, strerror(errno));
218 printf("failed to open emmc partition \"%s\": %s\n",
328 int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
330 printf("failed to open \"%s\" for write: %s\n",
427 int fd = open(partition, O_RDWR);
429 printf("failed to open %s: %s\n", partition, strerror(errno));
457 int dc = open("/proc/sys/vm/drop_caches", O_WRONLY);
941 output = open(outname, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
943 printf("failed to open output file %s: %s\n"
    [all...]
  /bootable/recovery/
ui.cpp 2 * Copyright (C) 2011 The Android Open Source Project
230 int fd = open("/sys/class/android_usb/android0/state", O_RDONLY);
232 printf("failed to open /sys/class/android_usb/android0/state: %s\n",
  /build/tools/
parsedeps.py 93 f = open(filename)
  /build/tools/releasetools/
edify_generator.py 1 # Copyright (C) 2009 The Android Open Source Project
296 data = open(os.path.join(input_path, "updater")).read()
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
CAInstallNotificationVerifierActivity.java 2 * Copyright (C) 2013 The Android Open Source Project
213 is = getAssets().open(CERT_ASSET_NAME);
  /cts/suite/cts/utils/
get_csv_report.py 3 # Copyright (C) 2013 The Android Open Source Project
198 with open(outputCsv, 'w') as f:
  /cts/tools/utils/cts/
tools.py 3 # Copyright (C) 2009 The Android Open Source Project
171 stream = open(file_name, 'w')
  /dalvik/vm/
JarFile.cpp 2 * Copyright (C) 2008 The Android Open Source Project
37 * Attempt to open a file whose name is similar to <fileName>,
40 * to open "Home.dex". If the open succeeds, a pointer to a
43 * <flags> is passed directly to open(). O_CREAT is not supported.
71 fd = open(buf, flags);
76 ALOGV("Couldn't open %s: %s", buf, strerror(errno));
183 * Open a Jar file. It's okay if it's just a Zip archive without all of
209 * open it so we can stuff it into ppJarFile.
276 ALOGI("Unable to open or create cache for %s (%s)"
    [all...]
  /dalvik/vm/hprof/
Hprof.cpp 2 * Copyright (C) 2008 The Android Open Source Project
110 * Open the output file, and copy the head and tail to it.
122 outFd = open(tailCtx->fileName, O_WRONLY|O_CREAT|O_TRUNC, 0644);
124 ALOGE("can't open %s: %s", headCtx->fileName, strerror(errno));
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 219 LONG open; member in struct:linux_romvec
  /development/samples/ApiDemos/src/com/example/android/apis/content/
InstallApk.java 2 * Copyright (C) 2011 The Android Open Source Project
154 is = getAssets().open(assetName);
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
KeyChainDemoActivity.java 2 * Copyright 2012 The Android Open Source Project
226 BufferedInputStream bis = new BufferedInputStream(getAssets().open(
  /development/samples/SipDemo/src/com/example/android/sip/
WalkieTalkieActivity.java 2 * Copyright (C) 2010 The Android Open Source Project
141 manager.open(me, pi, null);
144 // This listener must be added AFTER manager.open is called,
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 2 * Copyright (C) 2011 The Android Open Source Project
137 tunnel = DatagramChannel.open();
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 2 * Copyright (C) 2011 The Android Open Source Project
137 InputStream file = getAssets().open(lang + "-" + loadCountry + ".freq");

Completed in 1488 milliseconds

<<111112113114115116117118119120>>