Home
last modified time | relevance | path

Searched refs:global (Results 1 – 7 of 7) sorted by relevance

/busybox-1.35.0/archival/libarchive/
Dget_header_tar.c65 #define process_pax_hdr(archive_handle, sz, global) \ argument
69 static void process_pax_hdr(archive_handle_t *archive_handle, unsigned sz, int global) in process_pax_hdr() argument
116 if (!global) { in process_pax_hdr()
139 free(archive_handle->tar__sctx[global]); in process_pax_hdr()
140 archive_handle->tar__sctx[global] = xstrdup(value); in process_pax_hdr()
/busybox-1.35.0/docs/
Dsmallint.txt21 (a1) global flag variables - make data/bss smaller
31 or when these are global objects of this structure type
Dkeep_data_small.txt14 we should avoid large global data in our applets, and should
61 One example how to reduce global data usage is in
86 take a look at archival/gzip.c. Here all global data is replaced by
87 single global pointer (ptr_to_globals) to allocated storage.
142 All global variables are prefixed by 'G.' now. If this makes code
Dnofork_noexec.txt53 * do not expect shared global variables/buffers to be in their
84 * do not use shared global data, or save/restore shared global data
Dtar_pax.txt16 Represents global extended header records for the following
19 record and until another global extended header record is reached
21 global headers should not be used with interchange media that
172 block field, previously entered extended header value, or global
Dstyle-guide.txt32 - const and global variables
486 strcpy(buffer, lotsa_chars); /* happily uses global *buffer */
496 assigning them to a global pointer thusly:
502 strcpy(pbuffer, lotsa_chars); /* happily uses global *pbuffer */
561 one function, do not make it global to the file. Instead, declare it inside
566 global name space clean. The only exception to this rule is the "applet_main"
/busybox-1.35.0/
DTODO95 Go through and turn all the global and static variables into structures,