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

1 2

  /external/sfntly/cpp/src/sfntly/
font_factory.cc 56 WritableFontDataPtr wfd; local
57 wfd.Attach(WritableFontData::CreateWritableFontData(b));
58 if (IsCollection(wfd)) {
59 LoadCollection(wfd, output);
63 font.Attach(LoadSingleOTF(wfd));
85 WritableFontDataPtr wfd; local
86 wfd.Attach(WritableFontData::CreateWritableFontData(b));
87 if (IsCollection(wfd)) {
88 LoadCollectionForBuilding(wfd, output);
92 builder.Attach(LoadSingleOTFForBuilding(wfd, 0))
170 WritableFontDataPtr wfd; local
    [all...]
font_factory.h 116 CALLER_ATTACH Font* LoadSingleOTF(WritableFontData* wfd);
119 void LoadCollection(WritableFontData* wfd, FontArray* output);
123 LoadSingleOTFForBuilding(WritableFontData* wfd,
131 static bool IsCollection(ReadableFontData* wfd);
font.cc 224 WritableFontData* wfd,
227 builder->LoadFont(wfd, offset_to_offset_table);
333 void Font::Builder::LoadFont(WritableFontData* wfd,
336 assert(wfd);
338 ReadHeader(wfd, offset_to_offset_table, &records);
339 LoadTableData(&records, wfd, &data_blocks_);
  /frameworks/base/core/java/android/os/
FileObserver.java 92 int wfd = startWatching(m_fd, path, mask); local
94 Integer i = new Integer(wfd);
95 if (wfd >= 0) {
108 public void onEvent(int wfd, int mask, String path) {
113 WeakReference weak = m_observers.get(wfd);
114 if (weak != null) { // can happen with lots of events from a dead wfd
117 m_observers.remove(wfd);
135 private native void stopWatching(int fd, int wfd);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_select.py 37 rfd, wfd, xfd = select.select([p], [], [], tout)
38 if (rfd, wfd, xfd) == ([], [], []):
40 if (rfd, wfd, xfd) == ([p], [], []):
49 self.fail('Unexpected return values from select():', rfd, wfd, xfd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_select.py 37 rfd, wfd, xfd = select.select([p], [], [], tout)
38 if (rfd, wfd, xfd) == ([], [], []):
40 if (rfd, wfd, xfd) == ([p], [], []):
49 self.fail('Unexpected return values from select():', rfd, wfd, xfd)
  /external/sfntly/cpp/src/test/
font_data_test.cc 82 FillTestFontDataWithShortsForSearching(WritableFontData* wfd,
92 wfd->WriteUShort(offset, lower_data[i]);
99 wfd->WriteUShort(offset, upper_data[i]);
103 return wfd;
109 WritableFontDataPtr wfd; local
110 wfd.Attach(WritableFontData::CreateWritableFontData(array_setup_offset[0]));
111 FillTestFontDataWithShortsForSearching(wfd,
120 int32_t found = wfd->SearchUShort(array_setup_offset[1],
179 void WriteFontDataWithSingleByte(ReadableFontData* rfd, WritableFontData* wfd) {
182 wfd->WriteByte(index, b)
319 WritableFontDataPtr wfd = new WritableFontData(ba); local
    [all...]
font_parsing_test.cc 63 WritableFontDataPtr wfd; local
64 wfd.Attach(gdef_builder->Data());
67 wfd->ReadBytes(0, &(b[0]), 0, TTF_LENGTH[SAMPLE_TTF_FEAT]);
  /external/libppp/src/
server.c 98 int ssize = sizeof ss, wfd; local
103 wfd = accept(s->fd, sa, &ssize);
104 if (wfd < 0)
107 close(wfd);
108 wfd = -1;
111 wfd = -1;
113 if (wfd >= 0)
125 close(wfd);
126 wfd = -1;
140 close(wfd);
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.c 256 * event. To that extent, we create a single wfd and overlapped as a means
321 struct winfd wfd = INVALID_WINFD; local
330 wfd.itransfer = itransfer;
331 wfd.cancel_fn = cancel_fn;
339 wfd.rw = RW_READ;
341 wfd.rw = RW_WRITE;
358 wfd.fd = i;
364 &wfd.handle, 0, TRUE, DUPLICATE_SAME_ACCESS)) {
366 wfd.handle = handle;
373 wfd.handle = handle
427 struct winfd wfd; local
453 struct winfd wfd; local
479 struct winfd wfd; local
    [all...]
windows_usb.c 2862 struct winfd wfd; local
2955 struct winfd wfd; local
3083 struct winfd wfd; local
3877 struct winfd wfd; local
3985 struct winfd wfd; local
    [all...]
wince_usb.c 591 struct winfd wfd = fd_to_winfd(transfer_priv->pollable_fd.fd); local
593 wfd.itransfer = NULL;
594 CloseHandle(wfd.handle);
618 struct winfd wfd; local
640 wfd = usbi_create_fd(eventHandle, direction_in ? RW_READ : RW_WRITE, itransfer, &wince_cancel_transfer);
641 if (wfd.fd < 0) {
646 transfer_priv->pollable_fd = wfd;
652 ret = UkwIssueControlTransfer(priv->dev, flags, setup, buf, bufLen, &transfer->actual_length, wfd.overlapped);
655 transfer->length, &transfer->actual_length, wfd.overlapped);
841 // let handle_callback free the event using the transfer wfd
    [all...]
  /system/core/toolbox/
cat.c 159 int wfd; local
161 wfd = fileno(stdout);
163 if (fstat(wfd, &sbuf) == 0) {
175 if ((nw = write(wfd, buf + off, (size_t)nr)) < 0)
  /frameworks/base/core/jni/
android_util_FileObserver.cpp 125 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd)
129 inotify_rm_watch((int)fd, (uint32_t)wfd);
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.h 48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 39 WritableFontDataPtr wfd = new WritableFontData(ba); local
40 return wfd.Detach();
50 WritableFontDataPtr wfd = new WritableFontData(ba); local
51 return wfd.Detach();
readable_font_data.cc 43 ReadableFontDataPtr wfd = new ReadableFontData(ba); local
44 return wfd.Detach();
158 int32_t ReadableFontData::CopyTo(WritableFontData* wfd) {
159 return array_->CopyTo(wfd->BoundOffset(0),
160 wfd->array_,
readable_font_data.h 181 // @param wfd the destination
184 virtual int32_t CopyTo(WritableFontData* wfd);
  /external/qemu/telephony/
sysdeps_posix.c 423 fd_set rfd, wfd, efd; local
428 memcpy(&wfd, &_s_fdsets[1], sizeof(fd_set));
446 n = select( _s_maxfd+1, &rfd, &wfd, &efd, timeout);
463 if(FD_ISSET(i, &wfd)) events |= SYS_EVENT_WRITE;
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 40 const u8 *wfd; member in struct:ieee802_11_elems
  /bootable/recovery/minadbd/
fdevent.c 370 fd_set rfd, wfd, efd; local
373 memcpy(&wfd, &write_fds, sizeof(fd_set));
378 n = select(select_n, &rfd, &wfd, &efd, NULL);
389 FD_ZERO(&wfd);
407 if(FD_ISSET(i, &wfd)) { events |= FDE_WRITE; n--; }
  /system/core/adb/
fdevent.c 370 fd_set rfd, wfd, efd; local
373 memcpy(&wfd, &write_fds, sizeof(fd_set));
378 n = select(select_n, &rfd, &wfd, &efd, NULL);
389 FD_ZERO(&wfd);
407 if(FD_ISSET(i, &wfd)) { events |= FDE_WRITE; n--; }
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 454 fd_set wfd; local
488 FD_ZERO(&wfd);
493 FD_SET(ctxt->fd, &wfd);
497 (void) select(ctxt->fd + 1, NULL, &wfd, NULL, &tv);
849 fd_set wfd; local
949 FD_ZERO(&wfd);
950 FD_SET(s, &wfd);
956 switch (select(s + 1, NULL, &wfd, &xfd, &tv))
958 switch (select(s + 1, NULL, &wfd, NULL, &tv))
984 if (FD_ISSET(s, &wfd)
    [all...]
  /external/libxml2/
nanohttp.c 452 fd_set wfd; local
486 FD_ZERO(&wfd);
491 FD_SET(ctxt->fd, &wfd);
495 (void) select(ctxt->fd + 1, NULL, &wfd, NULL, &tv);
847 fd_set wfd; local
947 FD_ZERO(&wfd);
948 FD_SET(s, &wfd);
954 switch (select(s + 1, NULL, &wfd, &xfd, &tv))
956 switch (select(s + 1, NULL, &wfd, NULL, &tv))
982 if (FD_ISSET(s, &wfd)
    [all...]
  /external/openssh/
channels.c 224 channel_register_fds(Channel *c, int rfd, int wfd, int efd,
229 channel_max_fd = MAX(channel_max_fd, wfd);
234 if (wfd != -1 && wfd != rfd)
235 fcntl(wfd, F_SETFD, FD_CLOEXEC);
236 if (efd != -1 && efd != rfd && efd != wfd)
240 c->wfd = wfd;
241 c->sock = (rfd == wfd) ? rfd : -1;
247 c->wfd_isatty = is_tty || isatty(c->wfd);
    [all...]

Completed in 660 milliseconds

1 2