HomeSort by relevance Sort by last modified time
    Searched refs:bufprint (Results 1 - 22 of 22) sorted by null

  /external/qemu/android/utils/
bufprint.c 13 #include "android/utils/bufprint.h"
51 bufprint(char* buffer, char* end, const char* fmt, ... ) function
91 return bufprint(buff, end, "%s", path);
127 return bufprint(buff, end, "%s", s);
155 return bufprint(buff, end, "%s", appDir);
161 return bufprint(buff, end, ".");
173 return bufprint(buff, end, "%s\\%s", home, _ANDROID_PATH );
180 return bufprint(buff, end, "%s\\%s", path, _ANDROID_PATH );
188 return bufprint(buff, end, "%s/%s", home, _ANDROID_PATH );
197 p = bufprint(p, end, PATH_SEP "%s", suffix)
    [all...]
bufprint.h 20 ** bufprint() allows your to easily and safely append formatted string
32 ** this allows you to chain several calls to bufprint() and only check for
39 ** p = bufprint(p, end, "%s/%s", first, second);
40 ** p = bufprint(p, end, "/%s", third);
50 extern char* bufprint (char* buffer, char* buffend, const char* fmt, ... );
dirscanner.c 13 #include "android/utils/bufprint.h"
46 p = bufprint(p, end, "\\*");
157 p = bufprint(p, end, "%s", rootPath);
198 p = bufprint(p, end, "%.*s/%s", s->rootLen, s->root, name);
timezone.c 14 #include "android/utils/bufprint.h"
91 return bufprint(p, end, "Unknown/Unknown");
93 return bufprint(p, end, "%s", tz);
250 p = bufprint( p, scan->path_end, "/%s", ent->d_name );
348 p = bufprint( p, end, "%s/%s", tzdir, "localtime" );
391 scan->path_root = bufprint( scan->path, scan->path_end, "%s", tzdir );
ini.c 20 #include "android/utils/bufprint.h"
328 p = bufprint(temp, end, "%s = %s\n", pair->key, pair->value);
  /external/qemu/android/
main-emulator.c 29 #include <android/utils/bufprint.h>
243 p = bufprint(path, pathEnd, "%s/%s%s%s", progDir, emulator64Prefix, avdArch, exeExt);
254 p = bufprint(path, pathEnd, "%s/%s%s%s", progDir, emulatorPrefix, avdArch, exeExt);
273 p = bufprint(path, pathEnd, "%s%s%s", emulator64Prefix, avdArch, exeExt);
281 p = bufprint(path, pathEnd, "%s%s%s", emulatorPrefix, avdArch, exeExt);
299 p = bufprint(temp, end, "%s/%s", path, filename);
334 p = bufprint(temp, end, "%s/lib", progDir);
351 p = bufprint(temp, end, "%s/lib", parentDir);
376 p = bufprint(temp, end, "PATH=%s", prefix);
378 p = bufprint(temp, end, "PATH=%s;%s", path, prefix)
    [all...]
qemulator.c 14 #include "android/utils/bufprint.h"
225 p = bufprint( p, end, "Press " );
229 p = bufprint(p, end, ", ");
231 p = bufprint(p, end, " or ");
233 p = bufprint(p, end, "%s",
237 p = bufprint(p, end, " to leave trackball mode. ");
241 p = bufprint(p, end, "%d:%s",
user-config.c 13 #include "android/utils/bufprint.h"
67 p = bufprint(temp, end, "%s/%s", avdInfo_getContentPath(info),
190 bufprint(temp, temp+sizeof(temp),
main-common.c 30 #include "android/utils/bufprint.h"
150 p = bufprint(p, end, "%s.keyset", keyset);
166 p = bufprint(p, end, "%s" PATH_SEP "keysets" PATH_SEP "%s", opts->sysdir, keyset);
172 p = bufprint(p, end, PATH_SEP "keysets" PATH_SEP "%s", keyset);
572 bufprint(tmp, tmp+sizeof(tmp), "%s/%s", skinDirPath, skinName);
839 p = bufprint(app, end, "%s", searchPaths[nn]);
840 q = bufprint(p, end, "/%s", fileName);
850 p = bufprint(app, end, "/../platforms");
861 q = bufprint(p, end, "/%s/images/%s", subdir, fileName);
866 p = bufprint(p, end, "/%s/images", subdir)
    [all...]
main.c 40 #include "android/utils/bufprint.h"
121 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
759 bufprint(tmp, tmpend, "%s/%s", opts->datadir, "system.img");
1007 p = bufprint(p, end, " androidboot.hardware=goldfish");
1008 p = bufprint(p, end, " clocksource=pit");
1012 p = bufprint(p, end, " androidboot.console=ttyS%d", shell_serial );
1016 p = bufprint(p, end, " android.tracing=1");
1020 p = bufprint(p, end, " android.checkjni=1");
1024 p = bufprint( p, end, " android.bootanim=0" );
1028 char* q = bufprint(p, end, " androidboot.logcat=%s", opts->logcat)
    [all...]
hw-events.c 13 #include "android/utils/bufprint.h"
128 return bufprint(buf, bufend, "%s", list[index].name);
help.c 4 #include "android/utils/bufprint.h"
232 p = bufprint(p, end, "%s%s", (n == 0) ? "" : ", ",
474 p = bufprint( p, end, PATH_SEP "lib" PATH_SEP "images" );
    [all...]
opengles.c 25 #include <android/utils/bufprint.h>
hw-qemud.c 16 #include "android/utils/bufprint.h"
851 p = bufprint(tmp, end, "disconnect:00");
869 p = bufprint(tmp, end, "disconnect:%02x",
    [all...]
  /external/qemu/telephony/
remote_call.c 13 #include "android/utils/bufprint.h"
179 p = bufprint(p, end, "gsm call " PHONE_PREFIX "%d\n", from_num );
183 p = bufprint(p, end, "gsm busy " PHONE_PREFIX "%d\n", from_num);
187 p = bufprint(p, end, "gsm hold " PHONE_PREFIX "%d\n", from_num);
191 p = bufprint(p, end, "gsm accept " PHONE_PREFIX "%d\n", from_num);
195 p = bufprint(p, end, "gsm cancel " PHONE_PREFIX "%d\n", from_num );
244 p = bufprint(p, end, "sms pdu ");
android_modem.c 20 #include "android/utils/bufprint.h"
588 start = bufprint( start, end, "%d", modem->base_port );
    [all...]
  /external/qemu/android/skin/
keyset.c 14 #include "android/utils/bufprint.h"
230 p = bufprint(p, end, "Ctrl-");
233 p = bufprint(p, end, "RCtrl-");
236 p = bufprint(p, end, "Shift-");
239 p = bufprint(p, end, "RShift-");
242 p = bufprint(p, end, "Alt-");
245 p = bufprint(p, end, "RAlt-");
249 p = bufprint(p, end, "%s", keysym_names[nn]._str);
255 p = bufprint(p, end, "%c", sym);
file.c 15 #include "android/utils/bufprint.h"
30 p = bufprint( p, end, "%s" PATH_SEP "%s", dirname, filename );
  /external/qemu/android/avd/
info.c 17 #include "android/utils/bufprint.h"
222 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
230 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
267 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
284 p = bufprint(temp, end, "%s/layout", skinPath);
303 p = bufprint(temp, end, "%s/skins/%s", skinDirRoot, skinName);
331 p = bufprint(temp, end, "%s/skins/%s", skinDirRoot, file+6);
378 p = bufprint(temp, end, "%s/%s", sdkRootPath, skinName);
467 p = bufprint(p, end, PATH_SEP "%s", relPath);
557 p = bufprint(p, end, "%s/%s", i->contentPath, fileName)
    [all...]
util.c 16 #include "android/utils/bufprint.h"
90 p = bufprint(p, end, PATH_SEP ANDROID_AVD_DIR PATH_SEP "%s.ini", avdName);
138 p = bufprint(p, end, PATH_SEP "%s", relPath);
158 p = bufprint(temp, end, "%s" PATH_SEP "config.ini", avdPath);
244 p = bufprint(temp, end, "%s/system/build.prop", androidOut);
  /external/qemu/
sockets.c 482 return bufprint( p, end, "%d.%d.%d.%d:%d",
493 p = bufprint(p, end, "%s%04x", column, (tab[n] << 8) | tab[n+1]);
496 return bufprint(p, end, ":%d", a->u.in6.port);
500 return bufprint(p, end, "%s", a->u._unix.path);
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 487 return bufprint( p, end, "%d.%d.%d.%d:%d",
498 p = bufprint(p, end, "%s%04x", column, (tab[n] << 8) | tab[n+1]);
501 return bufprint(p, end, ":%d", a->u.in6.port);
505 return bufprint(p, end, "%s", a->u._unix.path);
    [all...]

Completed in 401 milliseconds