Searched defs:copy (Results 1 - 25 of 58) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DCopying.c82 characters, null characters are appended to the copy in the array pointed
109 strncpyX exists because normal strncpy does not indicate if the copy was
112 @return The strncpyX function returns 0 if the copy operation was
133 /** NetBSD Compatibility Function strdup creates a duplicate copy of a string. **/
138 char *copy; local
141 if ((copy = malloc(len)) == NULL)
143 memcpy(copy, str, len);
144 return (copy);
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dwindows.c75 WINDOW *copy; local
78 if ( ( copy = malloc( sizeof( WINDOW ) ) ) == NULL )
80 copy->scr = orig->scr;
81 copy->attrs = orig->attrs;
82 copy->ori_y = orig->ori_y;
83 copy->ori_x = orig->ori_x;
84 copy->curs_y = orig->curs_y;
85 copy->curs_x = orig->curs_x;
86 copy->height = orig->height;
87 copy
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask); member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
53 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask); member in struct:__GLXcontext
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
161 unsigned char *dof, *copy; local
188 if ((copy = malloc(len)) == NULL)
189 fatal("could not allocate copy of %d bytes", len);
192 bcopy(dof, copy, len);
201 corrupt(fd, copy, len);
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DCIShared.h79 CIShared copy() const { function in class:CIShared
115 * to change it. When it happens that instance makes a deep copy of the object
116 * (through its copy constructor) and does the actual change on that copy,
118 * "copy on write". Also, any instance can excplicitly stop sharing the data
120 * makes a copy if the data is referenced by more than one instance.
134 * (the default and the copy constructor) and the destructor automatically
148 * the copy constructor) because it doesn't know how to initialize the
252 /** @fn CIShared::copy() const
254 * Returns a "deep" copy o
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dglxcontext.h13 ** this file except in compliance with the License. You may obtain a copy
58 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask); member in struct:__GLXcontext
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DEdkIIWorkspaceBuild.py17 import os, string, copy, pdb, copy namespace
1506 SupModuleList = copy.copy(LibraryClass.SupModuleList)
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp_out.c64 /* no data, no length, flags, copy=1, no optdata, no optdatalen */
82 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t copy) argument
84 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_write(pcb=%p, arg=%p, len=%"U16_F", copy=%"U16_F")\n", (void *)pcb,
85 arg, len, (u16_t)copy));
92 return tcp_enqueue(pcb, (void *)arg, len, 0, copy, NULL, 0);
110 * @arg copy 1 if data must be copied, 0 if data is non-volatile and can be
117 u8_t flags, u8_t copy,
127 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_enqueue(pcb=%p, arg=%p, len=%"U16_F", flags=%"X16_F", copy=%"U16_F")\n",
128 (void *)pcb, arg, len, (u16_t)flags, (u16_t)copy));
195 /* If copy i
116 tcp_enqueue(struct tcp_pcb *pcb, void *arg, u16_t len, u8_t flags, u8_t copy, u8_t *optdata, u8_t optlen) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dapi_msg.h78 u8_t copy; member in struct:api_msg_msg::__anon14881::__anon14883
/vbox/src/libs/zlib-1.2.6/
H A Dinfback.c263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy
[all...]
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
383 unsigned copy, dist; local
402 /* copy state->wsize or less output bytes into the circular window */
403 copy = out - strm->avail_out;
404 if (copy >= state->wsize) {
411 if (dist > copy) dist = copy;
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dis
620 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dglxcontext.h13 ** this file except in compliance with the License. You may obtain a copy
63 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DBuildEngine.py19 import copy namespace
207 NewRuleObject = copy.copy(self)
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dapi_lib.c625 netconn_write(struct netconn *conn, void *dataptr, u16_t size, u8_t copy) argument
648 msg->msg.msg.w.copy = copy;
668 LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_write: writing %d bytes (%d)\n", len, copy));
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpcivpd.c14 * You should have received a copy of the GNU General Public License
421 void *copy; local
491 copy = malloc ( copy_len );
492 if ( ! copy ) {
496 if ( ( rc = pci_vpd_read ( vpd, copy_address, copy, copy_len ) ) != 0 )
520 if ( ( rc = pci_vpd_write ( vpd, dst_address, copy, copy_len ) ) != 0 )
549 free ( copy );
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQILabel.cpp150 void QILabel::copy() function in class:QILabel
200 /* Create a context menu for the copy to clipboard action. */
251 /* Create invisible copy action */
256 connect (mCopyAction, SIGNAL (triggered()), this, SLOT (copy()));
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dnextstep.c7 * the License. You may obtain a copy of the License at
167 char *copy = (char*) malloc (len+1); local
169 if (copy == (char*)0)
172 strcpy (copy, s1);
174 return copy;
/vbox/src/libs/xpcom18a4/xpcom/proxy/src/
H A DnsProxyEvent.cpp8 * the License. You may obtain a copy of the License at
160 nsProxyObjectCallInfo::CopyStrings(PRBool copy) argument
175 if (copy)
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsCharTraits.h7 * the License. You may obtain a copy of the License at
153 copy( char_type* s1, const char_type* s2, size_t n ) function in struct:nsCharTraits
434 copy( char_type* s1, const char_type* s2, size_t n ) function in struct:nsCharTraits
443 return copy(s1, s2, n);
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinfback9.c237 unsigned long length; /* literal or length of data to copy */
238 unsigned long offset; /* distance back to copy string from */
239 unsigned long copy; /* number of stored or match bytes to copy */ local
240 unsigned char FAR *from; /* where to copy match bytes from */
247 unsigned len; /* length to copy for repeats, bits to drop */
328 /* copy stored block from input to output */
330 copy = length;
333 if (copy > have) copy
[all...]
/vbox/src/libs/zlib-1.2.6/test/
H A Dinfcover.c290 z_stream strm, copy; local
335 ret = inflateCopy(&copy, &strm); assert(ret == Z_OK);
336 ret = inflateEnd(&copy); assert(ret == Z_OK);
391 z_stream strm, copy; local
438 ret = inflateCopy(&copy, &strm); assert(ret == Z_MEM_ERROR);
657 inf("63 0 3 0 0 0 0 0", "copy direct from output", 0, -8, 259,
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuicontentbase.py33 import copy; namespace
289 WuiSingleContentBase.__init__(self, copy.copy(oData), oDisp);

Completed in 203 milliseconds

123