/system/extras/fatblock/ |
fatblock.h | 51 time_t mtime; member in struct:file
|
/external/chromium/chrome/browser/sync/engine/ |
syncer_proto_util.cc | 28 using syncable::MTIME; 296 !ClientAndServerTimeMatch(local_entry.Get(MTIME), 297 server_entry.mtime())) { 298 LOG(WARNING) << "mtime mismatch"; 347 "mtime: %" PRId64"d (client: %" PRId64"d), " 354 entry.mtime(), ServerTimeToClientTime(entry.mtime()),
|
/external/openssh/ |
sftp-common.c | 60 a->mtime = 0; 78 a->mtime = st->st_mtime; 97 st->st_mtime = a->mtime; 119 a.mtime = buffer_get_int(b); 153 buffer_put_int(b, a->mtime);
|
sftp-common.h | 41 u_int32_t mtime; member in struct:Attrib
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarController.java | 86 private final Time mTime = new Time(); 92 mTime.switchTimezone(Utils.getTimeZone(mContext, this)); 306 mTime.setToNow(); 464 Log.d(TAG, "mTime " + (mTime == null ? "null" : mTime.toString())); 472 // Set mTime if selectedTime is set 474 mTime.set(event.selectedTime); 477 // selectedTime is not set so set mTime to startTime iff it is not 479 long mtimeMillis = mTime.toMillis(false) [all...] |
/frameworks/base/services/java/com/android/server/ |
NetworkTimeUpdateService.java | 70 private TrustedTime mTime; 96 mTime = NtpTrustedTime.getInstance(context); 169 if (mTime.getCacheAge() >= mPollingIntervalMs) { 170 mTime.forceRefresh(); 174 if (mTime.getCacheAge() < mPollingIntervalMs) { 175 final long ntp = mTime.currentTimeMillis();
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SFTPv3FileAttributes.java | 74 * The MTIME attribute. Represented as seconds from Jan 1, 1970 in UTC. 77 public Integer mtime = null; field in class:SFTPv3FileAttributes
|
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
SharedStorageAgent.java | 66 int type, String domain, String relpath, long mode, long mtime) 93 FullBackup.restoreFile(data, size, type, -1, mtime, outFile);
|
/external/chromium/chrome/browser/sync/syncable/ |
syncable_columns.h | 28 {"mtime", "bigint default 0"},
|
/external/oprofile/libabi/ |
op_abi.c | 52 { "offsetof_header_mtime", offsetof(struct opd_header, mtime) },
|
/external/oprofile/libabi/tests/ |
abi_test.cpp | 82 header->mtime = 1034790063;
|
/external/qemu/block/ |
cow.c | 39 int32_t mtime; member in struct:cow_header_v2 247 /* Note: if no file, we put a dummy mtime */ 248 cow_header.mtime = cpu_to_be32(0); 260 cow_header.mtime = cpu_to_be32(st.st_mtime);
|
/external/robolectric/ |
update-downloads.rb | 27 download_html += " <td class=\"date\">#{File.mtime(f).strftime("%Y/%m/%d %H:%M:%S %Z")}</td>\n"
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/ |
osx_last_crash.rb | 24 files=`find #$LogDir -mtime -#$Days -type f | grep -v synergy`
|
/frameworks/base/core/java/android/app/backup/ |
FullBackup.java | 87 * the mode nor the mtime values will be applied to the restored file. 88 * @param mtime A timestamp in the standard Unix epoch that will be imposed as the 96 long size, int type, long mode, long mtime, File outFile) throws IOException { 157 outFile.setLastModified(mtime);
|
BackupAgent.java | 464 * @param mtime The modification time of the file when it was backed up, suitable to 469 File destination, int type, long mode, long mtime) 471 FullBackup.restoreFile(data, size, type, mode, mtime, destination); 480 int type, String domain, String path, long mode, long mtime) 486 + " mtime=" + mtime); 520 onRestoreFile(data, size, outFile, type, mode, mtime); 534 FullBackup.restoreFile(data, size, type, mode, mtime, null); 664 int type, String domain, String path, long mode, long mtime, 668 BackupAgent.this.onRestoreFile(data, size, type, domain, path, mode, mtime); [all...] |
/frameworks/base/core/java/com/android/internal/backup/ |
IObbBackupService.aidl | 43 long fileSize, int type, in String path, long mode, long mtime,
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
FirstFrameAnimatorHelper.java | 74 private long mTime = System.currentTimeMillis(); 79 Log.d("FirstFrameAnimatorHelper", "TICK " + (newTime - mTime)); 80 mTime = newTime;
|
/packages/apps/Email/tests/src/com/android/email/ |
RefreshManagerTest.java | 107 assertEquals(mClock.mTime, s.getLastRefreshTime()); 113 assertEquals(mClock.mTime, s.getLastRefreshTime()); 121 assertEquals(mClock.mTime, s.getLastRefreshTime()); 185 assertEquals(mClock.mTime, mTarget.getMailboxListStatusForTest(ACCOUNT_1) 215 assertEquals(mClock.mTime, mTarget.getMailboxListStatusForTest(ACCOUNT_2) 283 assertEquals(mClock.mTime, mTarget.getMessageListStatusForTest(MAILBOX_1) 313 assertEquals(mClock.mTime, mTarget.getMessageListStatusForTest(MAILBOX_2)
|
/frameworks/base/core/java/android/app/ |
AppOpsManager.java | 309 private final long mTime; 316 mTime = time; 330 return mTime; 342 return mDuration == -1 ? (int)(System.currentTimeMillis()-mTime) : mDuration; 354 dest.writeLong(mTime); 362 mTime = source.readLong();
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/ |
AddVoicemailActivity.java | 74 private TextView mTime; 125 String dateStr = mTime.getText().toString(); 157 mTime.setText(DATE_FORMATTER.format(new Date()));
|
/frameworks/base/location/java/android/location/ |
Location.java | 81 private long mTime = 0; 131 mTime = l.mTime; 152 mTime = 0; 503 return mTime; 513 mTime = time; 776 if (mTime == 0) return false; 796 if (mTime == 0) mTime = System.currentTimeMillis(); 834 if (mTime == 0) [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
NetworkPolicyManagerServiceTest.java | 119 private TrustedTime mTime; 192 mTime = createMock(TrustedTime.class); 197 mStatsService, mNetworkManager, mTime, mPolicyDir, true); 245 mTime = null; [all...] |
NetworkStatsServiceTest.java | 113 private TrustedTime mTime; 133 mTime = createMock(TrustedTime.class); 138 mServiceContext, mNetManager, mAlarmManager, mTime, mStatsDir, mSettings); 173 mTime = null; [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
SettingsActivity.java | 70 private long mTime; 88 mTime = System.currentTimeMillis(); 233 mOffset = tz.getOffset(mTime);
|