Searched defs:fd (Results 226 - 250 of 552) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/
H A DCommonTimeManagementService.java179 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DDropBoxManagerService.java143 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
144 DropBoxManagerService.this.dump(fd, pw, args);
351 public synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DGraphicsStatsService.java168 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
178 ThreadedRenderer.dumpProfileData(mTempBuffer, fd);
189 ThreadedRenderer.dumpProfileData(buffer.mBuffer, fd);
H A DNetworkScoreService.java410 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
421 scoreCache.asBinder().dump(fd, args);
430 mServiceConnection.dump(fd, writer, args);
499 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
H A DNetworkTimeUpdateService.java325 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/am/
H A DProviderMap.java325 protected boolean dumpProvider(FileDescriptor fd, PrintWriter pw, String name, String[] args, argument
379 dumpProvider("", fd, pw, providers.get(i), args, dumpAll);
388 private void dumpProvider(String prefix, FileDescriptor fd, PrintWriter pw, argument
412 tp.go(fd, 2000);
/frameworks/base/services/core/java/com/android/server/audio/
H A DMediaFocusControl.java389 IAudioFocusDispatcher fd, String clientId, String callingPackageName, int flags) {
455 final FocusRequester nfr = new FocusRequester(aa, focusChangeHint, flags, fd, cb,
388 requestAudioFocus(AudioAttributes aa, int focusChangeHint, IBinder cb, IAudioFocusDispatcher fd, String clientId, String callingPackageName, int flags) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationFudger.java337 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DLocationProviderProxy.java218 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
233 service.asBinder().dump(fd, args);
H A DMockProvider.java139 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/search/
H A DSearchManagerService.java306 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
314 mSearchables.valueAt(i).dump(fd, ipw, args);
H A DSearchables.java456 void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_AlarmManagerService.cpp57 CLOCK_REALTIME fd which exists specifically to be canceled on RTC changes */
77 AlarmImplAlarmDriver(int fd) : AlarmImpl(&fd, 1) { } argument
169 int fd; local
185 fd = open(rtc_dev.string(), O_RDWR);
186 if (fd < 0) {
208 res = ioctl(fd, RTC_SET_TIME, &rtc);
212 close(fd);
288 int fd = open("/dev/alarm", O_RDWR); local
289 if (fd <
[all...]
H A Dcom_android_server_UsbHostManager.cpp173 int fd = usb_device_get_fd(device); local
174 if (fd < 0) {
178 int newFD = dup(fd);
H A Dcom_android_server_tv_TvUinputBridge.cpp111 NativeConnection(int fd, int32_t maxPointers);
117 NativeConnection::NativeConnection(int fd, int32_t maxPointers) : argument
118 mFd(fd), mMaxPointers(maxPointers) {
132 int fd = ::open("/dev/uinput", O_WRONLY | O_NDELAY); local
133 if (fd < 0) {
148 ioctl(fd, UI_SET_PHYS, uniqueId);
151 ioctl(fd, UI_SET_EVBIT, EV_KEY);
153 ioctl(fd, UI_SET_KEYBIT, KEYS[i].linuxKeyCode);
157 ioctl(fd, UI_SET_EVBIT, EV_MSC);
158 ioctl(fd, UI_SET_MSCBI
[all...]
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
H A DSoundTriggerService.java221 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
223 mSoundTriggerHelper.dump(fd, pw, args);
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java267 public void dumpLocked(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp142 int fd; member in class:TouchEvents::EventThread
148 read(fd, &event, sizeof(event));
170 fd = open("/dev/input/event1", O_RDONLY);
224 int fd = open("/dev/graphics/fb0", O_RDWR); local
225 ioctl(fd, FBIOGET_VSCREENINFO, &vi);
226 ioctl(fd, FBIOGET_FSCREENINFO, &fi);
227 void* bits = mmap(0, fi.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
260 ioctl(fd, FBIO_WAITFORVSYNC, &crt);
292 close(fd);
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp173 int fd = fileno(f.get()); local
176 if (fstat(fd, &fileStats) != 0) {
187 if (!fileMap.create(path.data(), fd, 0, fileStats.st_size, true)) {
/frameworks/native/libs/binder/
H A DBinder.cpp151 status_t BBinder::dump(int /*fd*/, const Vector<String16>& /*args*/)
217 int fd = data.readFileDescriptor(); local
223 return dump(fd, args);
H A DBpBinder.cpp146 status_t BpBinder::dump(int fd, const Vector<String16>& args) argument
150 send.writeFileDescriptor(fd);
H A DProcessState.cpp314 int fd = open("/dev/binder", O_RDWR | O_CLOEXEC); local
315 if (fd >= 0) {
317 status_t result = ioctl(fd, BINDER_VERSION, &vers);
320 close(fd);
321 fd = -1;
325 close(fd);
326 fd = -1;
329 result = ioctl(fd, BINDER_SET_MAX_THREADS, &maxThreads);
336 return fd;
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp226 int fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0); local
227 if (fd == -1) {
237 fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0);
239 if (fd == -1) {
252 close(fd);
262 close(fd);
272 if (write(fd, buf, fileSize) == -1) {
276 close(fd);
282 fchmod(fd, S_IRUSR);
283 close(fd);
291 int fd = open(mFilename.string(), O_RDONLY, 0); local
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DDecodeTask.java121 ParcelFileDescriptor fd = null;
126 Trace.beginSection("create fd");
127 fd = mFactory.createFileDescriptor();
154 if (fd != null) {
155 byteSize = fd.getStatSize();
164 if (fd != null) {
167 Trace.beginSection("create orientation fd and stream");
173 if (fd != null) {
200 if (fd == null) {
212 if (fd !
488 decode(ParcelFileDescriptor fd, InputStream in) argument
[all...]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java519 synchronized void dump(FileDescriptor fd, IndentingPrintWriter pw, String[] args) { argument
537 mIpManager.dump(fd, pw, args);

Completed in 373 milliseconds

1234567891011>>