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

<<121122123124125126127128129130>>

  /system/core/run-as/
package.c 3 ** Copyright 2010, The Android Open Source Project
72 /* Open 'filename' and map it into our address-space.
97 /* open the file for reading */
98 fd = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
  /system/core/toolbox/
iftop.c 2 * Copyright (c) 2008, The Android Open Source Project
106 fd = open(PROC_NET_DEV, O_RDONLY);
108 perror("open");
lsof.c 2 * Copyright (c) 2010, The Android Open Source Project
133 // Prints out all open file descriptors
191 fd = open(info.path, O_RDONLY);
235 fprintf(stderr, "Couldn't open /proc\n");
  /system/extras/tests/directiotest/
directiotest.c 187 fd = open(path, O_RDWR | O_DIRECT | O_LARGEFILE);
189 perror("open");
  /system/vold/
Process.cpp 2 * Copyright (C) 2008 The Android Open Source Project
69 fd = open(buffer, O_RDONLY);
86 // compute path to process's directory of open files
174 * Hunt down processes that have files open at the given mount point.
179 // hunt down and kill processes that have files open on the given mount point
201 SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
203 SLOGE("Process %s (%d) has open filemap for %s", name, pid, openfile);
  /external/strace/
strace.c 1154 /* Open the process pseudo-files in /proc. */
1156 if ((tcp->pfd = open(proc, O_WRONLY|O_EXCL)) < 0) {
1157 perror("strace: open(\"/proc/...\", ...)");
1164 if ((tcp->pfd_stat = open(proc, O_RDONLY|O_EXCL)) < 0) {
1165 perror("strace: open(\"/proc/...\", ...)");
1172 if ((tcp->pfd_as = open(proc, O_RDONLY|O_EXCL)) < 0) {
1173 perror("strace: open(\"/proc/...\", ...)");
1180 /* Open the process pseudo-file in /proc. */
1183 tcp->pfd = open(proc, O_RDWR|O_EXCL);
1186 tcp->pfd = open(proc, O_RDWR)
    [all...]
  /packages/apps/Email/src/com/android/email/service/
ImapService.java 2 * Copyright (C) 2012 The Android Open Source Project
214 * @param remoteFolder the (open) Folder we're working on
386 // 2. Open the remote folder and create the remote folder if necessary
409 remoteFolder.open(OpenMode.READ_WRITE);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
options_browsertest.js 371 * Verifies that the correct pages are currently open/visible.
373 * be open, with the topmost listed last.
375 * open. If undefined, the topmost (last) page name in |expectedPages|
398 // Collect open pages.
410 this.compareArrays_(expectedPages, openPages, true, 'Open pages');
483 // The settings page is also still "open" (i.e., visible), in order to show
535 // Open a layer-1 overlay, not updating history.
541 // Open a layer-2 overlay for which the layer-1 is a parent, not updating
551 // Open a layer-1 overlay, updating history.
557 // Open a layer-2 overlay, updating history
    [all...]
  /hardware/invensense/60xx/libsensors_iio/
MPLSensor.cpp 227 /* open temperature fd for temp comp */
229 gyro_temperature_fd = open(mpu.temperature, O_RDONLY);
231 LOGE("HAL:could not open temperature node");
244 fd = open(mpu.accel_fsr, O_RDONLY);
325 LOGE("HAL:Could not open or load MPL calibration file (%d)", rv);
384 LOGE("HAL:could not open trigger name");
396 LOGE("HAL:could not open current trigger");
408 iio_fd = open(iio_device_node, O_RDONLY);
410 LOGE("HAL:could not open iio device node");
572 fd = open(mpu.firmware_loaded, O_RDONLY)
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/css/
bootstrap.css     [all...]
  /external/elfutils/src/
ar.c 18 Red Hat elfutils is an included package of the Open Invention Network.
19 An included package of the Open Invention Network is a package for which
20 Open Invention Network licensees cross-license their patents. No patent
22 included package. Should you wish to participate in the Open Invention
393 int fd = open (arfname, flags, mode);
399 error (EXIT_FAILURE, errno, gettext ("cannot open archive '%s'"),
409 error (EXIT_FAILURE, 0, gettext ("cannot open archive '%s': %s"),
604 xfd = open (arhdr->ar_name, flags, 0600);
619 xfd = open (truncfname, flags, 0600);
624 error (0, errno, gettext ("cannot open %.*s")
    [all...]
  /system/security/keystore/
keystore.cpp 2 * Copyright (C) 2009 The Android Open Source Project
115 ALOGE("could not open keymaster device in %s (%s)",
348 bool open() { function in class:Entropy
350 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
352 ALOGE("open: %s: %s", randomDevice, strerror(errno));
538 int out = TEMP_FAILURE_RETRY(open(tmpFileName,
541 ALOGW("could not open file: %s: %s", tmpFileName, strerror(errno));
562 int in = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
705 int in = TEMP_FAILURE_RETRY(open(mMasterKeyFile, O_RDONLY));
773 ALOGW("couldn't open user directory: %s", strerror(errno))
    [all...]
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py 285 f = open(path+'!', "w")
514 ff = open(path)
737 f = open(repo.root+"/last-change", "w")
937 for line in open(f, 'r'):
945 # ignore cannot open file, etc.
972 f = open(repo.root + '/CONTRIBUTORS', 'r')
974 ui.write("warning: cannot open %s: %s\n" % (opening, ExceptionDetail()))
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 285 f = open(path+'!', "w")
514 ff = open(path)
737 f = open(repo.root+"/last-change", "w")
937 for line in open(f, 'r'):
945 # ignore cannot open file, etc.
972 f = open(repo.root + '/CONTRIBUTORS', 'r')
974 ui.write("warning: cannot open %s: %s\n" % (opening, ExceptionDetail()))
    [all...]
  /prebuilts/devtools/tools/lib/
bcpkix-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcpkix-jdk15on/1.48/
bcpkix-jdk15on-1.48.jar 
  /external/libusb/libusb/os/
linux_usbfs.c 46 * and so forth, avoiding the need to open the device:
53 * the active configuration without having to open the usbfs node in RDWR mode.
287 fd = open(filename, O_RDONLY);
290 "open %s failed ret=%d errno=%d", filename, fd, errno);
576 fd = open(filename, O_RDONLY);
579 "open '%s' failed, ret=%d errno=%d", filename, fd, errno);
704 fd = open(path, O_RDWR);
706 fd = open(path, O_RDONLY);
714 usbi_err(DEVICE_CTX(dev), "open failed, ret=%d errno=%d", fd, errno);
834 /* open a bus directory and adds all discovered devices to discdevs. o
    [all...]
  /external/ppp/pppd/
auth.c 417 /* open user info file */
425 option_error("unable to open user login data file %s", fname);
528 * An Open on LCP has requested a change from Dead to Establish phase.
809 (*cbcp_protent.open)(unit);
852 && protp->enabled_flag && protp->open != NULL)
853 (*protp->open)(0);
877 && protp->enabled_flag && protp->open != NULL) {
878 (*protp->open)(0);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/test/
venc_test.cpp 366 ion_data.ion_device_fd = open (PMEM_DEVICE,O_RDONLY);
369 E("\nERROR: ION Device open() Failed");
395 pMem->pmem_fd = open(PMEM_DEVICE, O_RDWR);
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/test/
venc_test.cpp 395 ion_data.ion_device_fd = open (PMEM_DEVICE, O_RDONLY);
398 E("\nERROR: ION Device open() Failed");
428 pMem->pmem_fd = open(PMEM_DEVICE, O_RDWR);
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 2 * Copyright (C) 2007 The Android Open Source Project
744 * is going to be ejected, so applications can clean up any files they have open.
917 public void open(long [] list, int position) { method in class:MediaPlaybackService
1100 public boolean open(String path) { method in class:MediaPlaybackService
2091 public void open(long [] list, int position) { method in class:MediaPlaybackService.ServiceStub
    [all...]
  /bionic/libc/bionic/
system_properties.c 2 * Copyright (C) 2008 The Android Open Source Project
139 fd = open(property_filename, O_RDWR | O_CREAT | O_NOFOLLOW | O_CLOEXEC |
205 fd = open(property_filename, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
  /development/scripts/app_engine_server/
memcache_zipserve.py 288 f = open(self.REDIRECT_FILE)
581 logging.error('Can\'t open zipfile %s, cause: %s' % (zipfilename,
  /device/generic/goldfish/audio/
audio_hw.c 2 * Copyright (C) 2012 The Android Open Source Project
640 fd = open(AUDIO_DEVICE_NAME, O_RDWR);
677 .open = adev_open,
687 .author = "The Android Open Source Project",
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_display.c 277 fb_fd = open(ANDROID_FB0, O_RDWR);
280 fb_fd = open(LE_FB0, O_RDWR);
284 CDBG_ERROR("cannot open framebuffer %s or %s file node\n",

Completed in 1458 milliseconds

<<121122123124125126127128129130>>