Searched refs:sz (Results 1 - 23 of 23) sorted by relevance

/system/core/libcutils/
H A Dload_file.c25 int sz; local
32 sz = lseek(fd, 0, SEEK_END);
33 if(sz < 0) goto oops;
37 data = (char*) malloc(sz + 1);
40 if(read(fd, data, sz) != sz) goto oops;
42 data[sz] = 0;
44 if(_sz) *_sz = sz;
/system/core/fastboot/
H A Dutil_windows.c43 DWORD sz; local
56 sz = GetFileSize( file, NULL );
59 return sz;
78 DWORD sz; local
91 sz = GetFileSize( file, NULL );
94 if (sz > 0) {
95 data = (char*) malloc( sz );
97 fprintf(stderr, "load_file: could not allocate %ld bytes\n", sz );
98 sz = 0;
102 if ( !ReadFile( file, data, sz,
[all...]
H A Dfastboot.c164 int sz; local
172 sz = lseek(fd, 0, SEEK_END);
173 if(sz < 0) goto oops;
177 data = (char*) malloc(sz);
180 if(read(fd, data, sz) != sz) goto oops;
183 if(_sz) *_sz = sz;
314 unsigned *sz, const char *cmdline)
341 *sz = ksize;
364 *sz
313 load_bootable_image(const char *kernel, const char *ramdisk, unsigned *sz, const char *cmdline) argument
369 unzip_file(zipfile_t zip, const char *name, unsigned *sz) argument
471 setup_requirements(char *data, unsigned sz) argument
607 unsigned int sz; local
617 unsigned sz; local
629 unsigned sz; local
688 unsigned sz; local
707 unsigned sz; local
817 unsigned sz; local
[all...]
H A Dfastboot.h49 void fb_queue_flash(const char *ptn, void *data, unsigned sz);
50 void fb_queue_flash_sparse(const char *ptn, struct sparse_file *s, unsigned sz);
H A Dengine.c401 void fb_queue_flash(const char *ptn, void *data, unsigned sz) argument
407 a->size = sz;
408 a->msg = mkmsg("sending '%s' (%d KB)", ptn, sz / 1024);
414 void fb_queue_flash_sparse(const char *ptn, struct sparse_file *s, unsigned sz) argument
421 a->msg = mkmsg("sending sparse '%s' (%d KB)", ptn, sz / 1024);
/system/core/include/cutils/
H A Dmisc.h26 * sz is non-zero, return the size of the file via sz.
29 extern void *load_file(const char *fn, unsigned *sz);
/system/core/init/
H A Dproperty_service.h27 void get_property_workspace(int *fd, int *sz);
H A Dutil.c144 int sz; local
163 sz = lseek(fd, 0, SEEK_END);
164 if(sz < 0) goto oops;
168 data = (char*) malloc(sz + 2);
171 if(read(fd, data, sz) != sz) goto oops;
173 data[sz] = '\n';
174 data[sz+1] = 0;
175 if(_sz) *_sz = sz;
H A Dproperty_service.c472 void get_property_workspace(int *fd, int *sz) argument
475 *sz = pa_workspace.size;
508 unsigned sz; local
510 data = read_file(fn, &sz);
H A Dinit.c241 int fd, sz; local
245 get_property_workspace(&fd, &sz);
246 sprintf(tmp, "%d,%d", dup(fd), sz);
/system/extras/sound/
H A Dplaywav.c37 int (*fill)(void *buf, unsigned sz, void *cookie),
42 unsigned sz, n; local
63 sz = config.buffer_size;
64 if (sz > sizeof(buf)) {
71 if (fill(buf, sz, cookie))
73 if (write(afd, buf, sz) != sz)
85 if (fill(buf, sz, cookie))
87 if (write(afd, buf, sz) != sz)
36 pcm_play(unsigned rate, unsigned channels, int (*fill)(void *buf, unsigned sz, void *cookie), void *cookie) argument
125 fill_buffer(void *buf, unsigned sz, void *cookie) argument
196 unsigned sz, n; local
[all...]
/system/core/gpttool/
H A Dgpttool.c195 u64 parse_size(char *sz) argument
197 int l = strlen(sz);
198 u64 n = strtoull(sz, 0, 10);
200 switch(sz[l-1]){
221 u64 sz; local
230 sz = ptbl->header.last_lba - next_lba;
232 sz = parse_size(y);
233 if (sz & 511) {
237 sz /= 512;
240 if (sz
259 u64 sz, blk; local
[all...]
/system/vold/
H A DNetlinkManager.cpp52 int sz = 64 * 1024; local
66 if (setsockopt(mSock, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz)) < 0) {
/system/bluetooth/bluedroid/
H A Dbluetooth.c53 int sz; local
62 sz = read(fd, &buf, sizeof(buf));
64 if (sz >= 9 && memcmp(buf, "bluetooth", 9) == 0) {
75 int sz; local
90 sz = read(fd, &buffer, 1);
91 if (sz != 1) {
112 int sz; local
127 sz = write(fd, &buffer, 1);
128 if (sz < 0) {
/system/core/mkbootimg/
H A Dmkbootimg.c31 int sz; local
38 sz = lseek(fd, 0, SEEK_END);
39 if(sz < 0) goto oops;
43 data = (char*) malloc(sz);
46 if(read(fd, data, sz) != sz) goto oops;
49 if(_sz) *_sz = sz;
/system/netd/
H A DNetlinkManager.cpp57 int sz = 64 * 1024; local
70 if (setsockopt(*sock, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz)) < 0) {
/system/bluetooth/brcm_patchram_plus/
H A Dbrcm_patchram_plus.c743 int sz; local
763 sz = read(fd, bdaddr, len);
764 if (sz < 0) {
769 } else if (sz != len) {
770 fprintf(stderr, "read(%s) unexpected size %d", path, sz);
/system/core/adb/
H A Dcommandline.c389 int adb_download_buffer(const char *service, const char *fn, const void* data, int sz, argument
397 sprintf(buf,"%s:%d", service, sz);
407 total = sz;
415 while(sz > 0) {
416 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
422 sz -= xfer;
425 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
453 unsigned sz; local
455 data = load_file(fn, &sz);
[all...]
/system/core/logwrapper/
H A Dlogwrap.c308 int sz; local
339 sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b);
341 sz += b;
343 for (b = 0; b < sz; b++) {
/system/core/libsysutils/src/
H A DNetlinkEvent.cpp76 size_t sz = size; local
79 while (NLMSG_OK(nh, sz) && (nh->nlmsg_type != NLMSG_DONE)) {
/system/core/charger/
H A Dcharger.c208 unsigned sz = 0; local
214 buf = load_file(LAST_KMSG_PATH, &sz);
215 if (!buf || !sz) {
220 len = min(sz, LAST_KMSG_MAX_SZ);
221 ptr = buf + (sz - len);
249 static int read_file(const char *path, char *buf, size_t sz) argument
258 cnt = read(fd, buf, sz - 1);
/system/core/libnetutils/
H A Ddhcpclient.c351 static int is_valid_reply(dhcp_msg *msg, dhcp_msg *reply, int sz) argument
353 if (sz < DHCP_MSG_FIXED_SIZE) {
354 if (verbose) ALOGD("netcfg: Wrong size %d != %d\n", sz, DHCP_MSG_FIXED_SIZE);
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.h216 integer_t(int r, int sz=32, int f=0) argument
217 : reg_t(r, f), s(sz) {
219 void setTo(int r, int sz=32, int f=0) { argument
220 reg_t::setTo(r, f); s=sz;

Completed in 244 milliseconds