Home | History | Annotate | Download | only in android

Lines Matching defs:uc

51     AUserConfig*  uc;
58 ANEW0(uc);
82 uc->iniPath = ASTRDUP(temp);
83 DD("looking user-config in: %s", uc->iniPath);
87 parentPath = path_parent(uc->iniPath, 1);
90 uc->iniPath);
107 if (path_exists(uc->iniPath)) {
109 ini = iniFile_newFromFile(uc->iniPath);
112 uc->iniPath);
117 uc->windowX = iniFile_getInteger(ini, KEY_WINDOW_X, DEFAULT_X);
118 DD(" found %s = %d", KEY_WINDOW_X, uc->windowX);
120 uc->windowY = iniFile_getInteger(ini, KEY_WINDOW_Y, DEFAULT_Y);
121 DD(" found %s = %d", KEY_WINDOW_Y, uc->windowY);
124 uc->uuid = (uint64_t) iniFile_getInt64(ini, KEY_UUID, 0LL);
126 DD(" found %s = %lld", KEY_UUID, uc->uuid);
132 uc->windowX = DEFAULT_X;
133 uc->windowY = DEFAULT_Y;
134 uc->changed = 1;
144 uc->uuid = (uint64_t)tm.tv_sec*1000 + tm.tv_usec/1000;
145 uc->changed = 1;
146 DD(" Generated UUID = %lld", uc->uuid);
149 return uc;