のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2012-01-01から1年間の記事一覧

エラー: アプリケーションは現在使用中です

adobe flash playerをアンインストールし、 再度インストールしようとしたら、 エラーメッセージが出てインストールできなかった。 エラー: アプリケーションは現在使用中ですインストール時に発生したエラー アクションリストが見つかりません 再起動して、…

Android4.2 cwm-recovery

[rooted] cd /mnt/shell/emulated mv ./clockworkmod ./0/ cd /mnt/shell/emulated/0

CPUのクロックが高いままになる。

ATH.exeが原因のようだ。 ATH.exeが12%〜13%使用している。 itunesのWifiで同期に関係あるプロセスみたい。 重すぎ。 ATH.exeが重い | a weblog by k1

エアロバイク(プログラムバイク ALINCO AFB6010)を買ってみた。

ALINCO(アルインコ) プログラムバイク AFB6010出版社/メーカー: ALINCO(アルインコ)発売日: 2012/05/28メディア: スポーツ用品 クリック: 32回この商品を含むブログ (6件) を見るALINCO(アルインコ) エクササイズフロアマット mini EXP100出版社/メーカー: A…

freetype

190 FT_CALLBACK_DEF( FT_Error ) 191 ftc_basic_family_load_glyph( FTC_Family ftcfamily, 192 FT_UInt gindex, 193 FTC_Cache cache, 194 FT_Glyph *aglyph ) 195 { 196 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; 197 FT_Error error; 198 F…

Log: Couldn't rename file, to backup file

544 private void writeToFile(MemoryCommitResult mcr) { 545 // Rename the current file so it may be used as a backup during the next read 546 if (mFile.exists()) { 547 if (!mcr.changesMade) { 548 // If the file already exists, but no change…

am_kill too many background

14745 if (!app.killedBackground) { 14746 if (app.curAdj >= ProcessList.HIDDEN_APP_MIN_ADJ) { 14747 numHidden++; 14748 if (numHidden > mProcessLimit) { 14749 Slog.i(TAG, "No longer want " + app.processName 14750 + " (pid " + app.pid + "): h…

Font

203 void Font::render(SkPaint* paint, const char *text, uint32_t start, uint32_t len, 204 int numGlyphs, SkPath* path, float hOffset, float vOffset) { 205 if (numGlyphs == 0 || text == NULL || len == 0) { 206 return; 207 } 208 209 text += …

eclipse error

Error: Android source build in eclipse - Stack Overflow

.classpathは隠しファイルだった。

development/ide/eclipse/の中に、.classpathがない。 表示>隠しファイルを表示する(Ctrl+H)にしたところ 表示されるようになった。 隠しファイルだったのか。 cd /path/to/android/root cp development/ide/eclipse/.classpath . chmod u+w .classpath

Androidの最大プロセス数は?

最大が32768で、制限されて5548なのかな。 shell@android:/ # cat /proc/sys/kernel/pid_max cat /proc/sys/kernel/pid_max 32768 shell@android:/ # ulimit -a ulimit -a time(cpu-seconds) unlimited file(blocks) unlimited coredump(blocks) 0 data(KiB)…

アクティビティのスタックのダンプ(dump activity stack)

>adb shell dumpsys activity > activity.log # ダンプログ出力元クラスは下記 # com.android.server.am.ActivityManagerService.dumpHistoryList # (FileDescriptor, PrintWriter, List, String, String, boolean, boolean, boolean, String) >adb shell du…

アプリ

628 private boolean isInterestingProcess(ActivityManager.RunningAppProcessInfo pi) { 629 if ((pi.flags&ActivityManager.RunningAppProcessInfo.FLAG_CANT_SAVE_STATE) != 0) { 630 return true; 631 } 632 if ((pi.flags&ActivityManager.RunningAppP…

設定アプリでプロセスを止めるとき

Settings>App>Running Process 110 public void onClick(View v) { 111 if (v == mReportButton) { 160 } 162 if (mManageIntent != null) { 175 } else if (mServiceItem != null) { 177 } else if (mActiveItem.mItem.mBackground) { 181 } else { 182 // …

製品版Windows8でpso2が動かない。=>動くようになった。

正式な製品版でのWindows8をインストールしました。 PSO2のランチャーまでは動きました。 ゲームを始めようとすると、異常を検出して終了してしまいます。 エラー ゲームプログラムに異常を感知しました。 Norton internet securityのファイアウォールの設定…

dump.hprof

android.os.Debug.dumpHprofData("/sdcard/dump.hprof");

com.android.settings.inputmethod.InputMethodAndLanguageSettings

Cross Reference: /packages/apps/Settings/src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java

fallback_fonts.xmlを開いているのはどこか?

161 FILE* openLocalizedFile(const char* origname) { 162 FILE* file = 0; 163 164 #if !defined(SK_BUILD_FOR_ANDROID_NDK) 165 SkString basename; 166 SkString filename; 167 char language[3] = ""; 168 char region[3] = ""; 169 170 basename.set(o…

Shutting down VM

786 void AndroidRuntime::start(const char* className, const char* options) 787 { 788 ALOGD("\n>>>>>> AndroidRuntime START %s <<<<<<\n", 789 className != NULL ? className : "(unknown)"); 790 791 blockSigpipe(); 792 793 /* 794 * 'startSystem…

thread exiting with uncaught exception

1563 static void threadExitUncaughtException(Thread* self, Object* group) 1564 { 1565 Object* exception; 1566 Object* handlerObj; 1567 Method* uncaughtHandler; 1568 1569 ALOGW("threadid=%d: thread exiting with uncaught exception (group=%p)…

Consumer closed input channel or an error occurred.

2057 int InputDispatcher::handleReceiveCallback(int fd, int events, void* data) { 2058 InputDispatcher* d = static_cast<InputDispatcher*>(data); 2059 2060 { // acquire lock 2061 AutoMutex _l(d->mLock); 2062 2063 ssize_t connectionIndex = d->mConnectionsByFd</inputdispatcher*>…

mInstrumentation

997 public void sendOrderedBroadcast(Intent intent, 998 String receiverPermission, BroadcastReceiver resultReceiver, 999 Handler scheduler, int initialCode, String initialData, 1000 Bundle initialExtras) { 1001 IIntentReceiver rd = null; 1…

VM exiting with result code

885 void AndroidRuntime::exit(int code) 886 { 887 if (mExitWithoutCleanup) { 888 ALOGI("VM exiting with result code %d, cleanup skipped.", code); 889 ::_exit(code); 890 } else { 891 ALOGI("VM exiting with result code %d.", code); 892 onExi…

System.err Removed xxxxxxxx

218 public static boolean updateHeaderToSpecificActivityFromMetaDataOrRemove(Context context, 219 List<Header> target, Header header) { 220 221 Intent intent = header.intent; 222 if (intent != null) { 223 // Find the activity that is in the system</header>…

Found no subtypes in a system IME

W/InputMethodManagerService( ): Found no subtypes in a system IME: com.android.inputmethod.pinyin 690 private boolean isValidSystemDefaultIme(InputMethodInfo imi, Context context) { 691 if (!mSystemReady) { 692 return false; 693 } 694 if (…

ResourceType: Failure getting entry for

W/ResourceType(): Failure getting entry for 0x7f060000 (t=5 e=0) in package 0 (error -75) resID 0x7f060000 T = 5 E = 0 ip = 0 offset = -75 言語:日本語 IME:谷歌拼音输入法(Google PinIn)にチェックが入っているとでるようだ。 言語:日本語 IME…

/libcore/luniの意味

"lang util net io"

InputChannel-JNI

E/InputChannel-JNI( 444): Error 9 dup channel fd -2147483647. 2147483647 = FFFF FFFF 8000 0001 190 static void android_view_InputChannel_nativeReadFromParcel(JNIEnv* env, jobject obj, 191 jobject parcelObj) { 192 if (android_view_InputChan…

BackStackRecord.getBreadCrumbTitle

235 void updateCrumbs() { 236 FragmentManager fm = mActivity.getFragmentManager(); 237 int numEntries = fm.getBackStackEntryCount(); 238 int numPreEntries = getPreEntryCount(); 239 int numViews = mContainer.getChildCount(); 240 for (int i …

Activity ??? has leaked IntentReceiver android.accounts.AccountManager$???@??? that was originally registered here. Are you missing a call to unregisterReceiver()?

533 IntentReceiverLeaked leak = new IntentReceiverLeaked( 534 what + " " + who + " has leaked IntentReceiver " 535 + rd.getIntentReceiver() + " that was " + 536 "originally registered here. Are you missing a " + 537 "call to unregisterRece…