/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ |
H A D | ipcModuleReg.cpp | 58 ipcModuleMethods *methods; member in struct:ipcModuleRegEntry 70 AddModule(const nsID &target, ipcModuleMethods *methods, const char *libPath) argument 77 if (!methods) { 78 PR_NOT_REACHED("null module methods"); 89 ipcModules[ipcModuleCount].methods = methods; 136 if (AddModule(entries[i].target, entries[i].methods, buf) == PR_SUCCESS) { 137 if (entries[i].methods->init) 138 entries[i].methods->init(); 206 if (entry.methods [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcnetio.cpp | 47 { PRStatus rv = (fd->methods->close)(fd); fd = NULL; } 59 PRFileDesc* newfd = fd->methods->accept(fd, &peer, timeout); 69 (void)(newfd->methods->close)(newfd); 80 PRInt32 rv = (fd->methods->acceptread)( 93 { return (fd->methods->available64)(fd); } 96 { return (fd->methods->bind)(fd, addr); } 99 { return (fd->methods->connect)(fd, addr, timeout); } 104 PRStatus rv = (fd->methods->getsockname)(fd, &local); 112 PRStatus rv = (fd->methods->getpeername)(fd, &peer); 118 { return (fd->methods [all...] |
H A D | rcfileio.cpp | 51 { return fd->methods->available(fd); } 54 { PRStatus rv = fd->methods->close(fd); fd = NULL; return rv; } 59 { return fd->methods->fileInfo64(fd, &info->info); } 65 { return fd->methods->fsync(fd); } 74 { return fd->methods->read(fd, buf, amount); } 86 return fd->methods->seek64(fd, offset, whence); 90 { return fd->methods->write(fd, buf, amount); } 94 { return fd->methods->writev(fd, iov, size, timeout); } 120 ** The following methods have been made non-virtual and private. These
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prio.c | 50 const PRIOMethods *methods = PR_GetFileMethods(); local 59 methods); 61 methods); 63 methods); 70 _pr_stdin = PR_AllocFileDesc(0, methods); 71 _pr_stdout = PR_AllocFileDesc(1, methods); 72 _pr_stderr = PR_AllocFileDesc(2, methods); 121 PRInt32 osfd, const PRIOMethods *methods) 135 fd->methods = methods; 120 PR_AllocFileDesc( PRInt32 osfd, const PRIOMethods *methods) argument [all...] |
H A D | priometh.c | 131 return file->methods->file_type; 136 return (fd->methods->close)(fd); 141 return((fd->methods->read)(fd,buf,amount)); 146 return((fd->methods->write)(fd,buf,amount)); 151 return((fd->methods->seek)(fd, offset, whence)); 156 return((fd->methods->seek64)(fd, offset, whence)); 161 return((fd->methods->available)(fd)); 166 return((fd->methods->available64)(fd)); 171 return((fd->methods->fileInfo)(fd, info)); 176 return((fd->methods [all...] |
H A D | prlayer.c | 62 ** Default methods that just call down to the next fd. 72 PR_ASSERT(fd->methods->file_type == PR_DESC_LAYERED); 79 rv = fd->lower->methods->close(fd->lower); 95 return (lower->methods->close(lower)); 100 return (fd->methods->close)(fd); 109 return (fd->lower->methods->read)(fd->lower, buf, amount); 118 return (fd->lower->methods->write)(fd->lower, buf, amount); 126 return (fd->lower->methods->available)(fd->lower); 134 return (fd->lower->methods->available64)(fd->lower); 142 return (fd->lower->methods 470 PR_CreateIOLayerStub( PRDescIdentity ident, const PRIOMethods *methods) argument [all...] |
H A D | pripv6.c | 117 return((lo->methods->bind)(lo,tmp_addrp)); 138 return (fd->lower->methods->connect)(fd->lower, tmp_addrp, timeout); 160 return (fd->lower->methods->sendto)( 186 newfd = (fd->lower->methods->accept)(fd->lower, addrlower, timeout); 220 nbytes = sd->lower->methods->acceptread( 242 result = (fd->lower->methods->getsockname)(fd->lower, &tmp_ipv4addr); 256 result = (fd->lower->methods->getpeername)(fd->lower, &tmp_ipv4addr); 271 result = (fd->lower->methods->recvfrom)( 359 if (fd->methods->file_type == PR_DESC_SOCKET_TCP)
|
H A D | prfdcach.c | 124 PR_ASSERT(&_pr_faulty_methods == fd->methods); 159 fd->methods = &_pr_faulty_methods;
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | bigfile.c | 208 big_answer = file->methods->available64(file); 213 big_answer = file->methods->seek64(file, big_size, PR_SEEK_SET); 217 bytes = file->methods->write(file, buffer, BUFFER_SIZE); 221 big_answer = file->methods->available64(file); 225 rv = file->methods->fileInfo64(file, &big_info); 230 rv = file->methods->fileInfo(file, &small_info); 243 big_answer = file->methods->seek64(file, zero_meg, PR_SEEK_SET); 247 big_answer = file->methods->available64(file); 252 rv = file->methods->close(file); 260 big_answer = file->methods [all...] |
H A D | layer.c | 211 rv = lo->methods->recv(lo, &request, sizeof(request), flags, timeout); 218 rv = lo->methods->send( 226 rv = lo->methods->recv( 248 rv = lo->methods->send(lo, &amount, sizeof(amount), flags, timeout); 251 rv = lo->methods->recv( 260 rv = lo->methods->send(
|
H A D | nblayer.c | 365 new_flags = (fd->lower->methods->poll)(fd->lower, my_flags, out_flags); 401 newfd = (fd->lower->methods->accept)(fd->lower, addr, timeout); 431 rv = lo->methods->recv( 442 rv = lo->methods->send( 452 rv = lo->methods->recv( 489 rv = lo->methods->send( 499 rv = lo->methods->recv( 509 rv = lo->methods->send(
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/public/ |
H A D | ipcModule.h | 219 // module methods 221 ipcModuleMethods *methods; member in struct:ipcModuleEntry 232 // methods - the daemon's methods 238 typedef int (* ipcGetModulesFunc) (const ipcDaemonMethods *methods, const ipcModuleEntry **entries);
|
/vbox/src/libs/xpcom18a4/python/ |
H A D | xpt.py | 85 self.methods = Methods(item) 107 methods = filter(lambda m: not m.IsNotXPCOM(), self.methods) 108 for m in methods: 132 methods = filter(lambda m: not m.IsNotXPCOM(), self.methods) 133 if len(methods): 134 for m in methods: 147 # A class that allows caching and iterating of methods. 155 print "** GetMethodCount failed?? - assuming no methods" [all...] |
/vbox/src/VBox/Additions/x11/x11include/libpciaccess-0.10.8/ |
H A D | pciaccess_private.h | 120 const struct pci_system_methods * methods; member in struct:pci_system
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | shldisp.idl | 104 methods:
|
H A D | stdole2.idl | 290 methods: 366 methods: 433 methods:
|
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | CodecBase.cs | 160 #region Helper methods
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | uxpoll.c | 86 in_flags_read = (pds[index].fd->methods->poll)( 93 in_flags_write = (pds[index].fd->methods->poll)( 311 in_flags_read = (pd->fd->methods->poll)( 316 in_flags_write = (pd->fd->methods->poll)( 537 in_flags_read = (pd->fd->methods->poll)( 542 in_flags_write = (pd->fd->methods->poll)(
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2poll.c | 110 in_flags_read = (pd->fd->methods->poll)( 115 in_flags_write = (pd->fd->methods->poll)(
|
H A D | os2io.c | 777 switch (fd->methods->file_type) 833 switch (fd->methods->file_type) 870 switch (fd->methods->file_type)
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w32poll.c | 154 in_flags_read = (pd->fd->methods->poll)( 160 in_flags_write = (pd->fd->methods->poll)(
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/private/ |
H A D | pprio.h | 97 const PRIOMethods *methods);
|
/vbox/src/libs/xpcom18a4/python/src/ |
H A D | TypeObject.cpp | 87 // The type methods 231 chain.methods = methodList;
|
H A D | PyISupports.cpp | 544 Py_nsISupports::methods[] = member in class:Py_nsISupports 560 methods,
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | stdole2.idl | 290 methods: 366 methods: 433 methods:
|