HomeSort by relevance Sort by last modified time
    Searched refs:wfd (Results 1 - 25 of 41) 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_);
font.h 194 virtual void LoadFont(WritableFontData* wfd,
  /frameworks/base/core/java/android/os/
FileObserver.java 89 int wfd = startWatching(m_fd, path, mask); local
91 Integer i = new Integer(wfd);
92 if (wfd >= 0) {
105 public void onEvent(int wfd, int mask, String path) {
110 WeakReference weak = m_observers.get(wfd);
111 if (weak != null) { // can happen with lots of events from a dead wfd
114 m_observers.remove(wfd);
132 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]);
  /bootable/recovery/uncrypt/
uncrypt.cpp 69 static int write_at_offset(unsigned char* buffer, size_t size, int wfd, off64_t offset) {
70 if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) {
76 ssize_t wrote = TEMP_FAILURE_RETRY(write(wfd, buffer + written, size - written));
227 int wfd = -1; local
229 wfd = open(blk_dev, O_WRONLY | O_SYNC);
230 if (wfd < 0) {
255 if (write_at_offset(buffers[head], sb.st_blksize, wfd,
296 if (write_at_offset(buffers[head], sb.st_blksize, wfd,
317 if (fsync(wfd) == -1) {
321 close(wfd);
    [all...]
  /frameworks/base/core/jni/
android_util_FileObserver.cpp 121 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd)
125 inotify_rm_watch((int)fd, (uint32_t)wfd);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
newapis.h 198 WIN32_FIND_DATA wfd; local
199 hfind = FindFirstFile(ptszFile,&wfd);
203 pfad->dwFileAttributes = wfd.dwFileAttributes;
204 pfad->ftCreationTime = wfd.ftCreationTime;
205 pfad->ftLastAccessTime = wfd.ftLastAccessTime;
206 pfad->ftLastWriteTime = wfd.ftLastWriteTime;
207 pfad->nFileSizeHigh = wfd.nFileSizeHigh;
208 pfad->nFileSizeLow = wfd.nFileSizeLow;
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.h 48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
tsan_fd.cc 218 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd) {
219 DPrintf("#%d: FdCreatePipe(%d, %d)\n", thr->tid, rfd, wfd);
222 init(thr, pc, wfd, ref(s));
  /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/toybox/toys/pending/
bootchartd.c 54 static void dump_data_in_file(char *fname, int wfd)
59 xwrite(wfd, TT.buf, strlen(TT.buf));
60 xsendfile(rfd, wfd);
62 xwrite(wfd, "\n", 1);
ftpget.c 200 wfd = (TT.isget)?local_fd:remote_fd; local
202 if (rfd < 0 || wfd < 0) error_exit("Error in file creation:");
203 while ((len = xread(rfd, toybuf, sizeof(toybuf)))) xwrite(wfd, toybuf, len);
  /hardware/qcom/wlan/qcwcn/wcnss-service/
wcnss_service.c 273 int wfd; local
300 wfd = open(WLAN_INI_FILE_DEST, O_WRONLY | O_CREAT | O_TRUNC, 0660);
301 if (wfd < 0) {
307 rc = sendfile(wfd, rfd, 0, st_src.st_size);
333 close(wfd);
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 40 const u8 *wfd; member in struct:ieee802_11_elems
  /system/core/adb/
fdevent.cpp 365 fd_set rfd, wfd, efd; local
368 memcpy(&wfd, &write_fds, sizeof(fd_set));
373 n = select(select_n, &rfd, &wfd, &efd, NULL);
384 FD_ZERO(&wfd);
402 if(FD_ISSET(i, &wfd)) { events |= FDE_WRITE; n--; }
  /external/libxml2/
nanohttp.c 459 fd_set wfd; local
493 FD_ZERO(&wfd);
498 FD_SET(ctxt->fd, &wfd);
502 (void) select(ctxt->fd + 1, NULL, &wfd, NULL, &tv);
854 fd_set wfd; local
954 FD_ZERO(&wfd);
955 FD_SET(s, &wfd);
961 switch (select(s + 1, NULL, &wfd, &xfd, &tv))
963 switch (select(s + 1, NULL, &wfd, NULL, &tv))
989 if (FD_ISSET(s, &wfd)
    [all...]
  /external/openssh/
channels.c 238 channel_register_fds(Channel *c, int rfd, int wfd, int efd,
243 channel_max_fd = MAX(channel_max_fd, wfd);
248 if (wfd != -1 && wfd != rfd)
249 fcntl(wfd, F_SETFD, FD_CLOEXEC);
250 if (efd != -1 && efd != rfd && efd != wfd)
254 c->wfd = wfd;
255 c->sock = (rfd == wfd) ? rfd : -1;
263 c->wfd_isatty = is_tty || isatty(c->wfd);
    [all...]
channels.h 103 int wfd; /* write fd */ member in struct:Channel
109 int wfd_isatty; /* wfd is a tty */

Completed in 871 milliseconds

1 2