Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
3d9b364b
Kaydet (Commit)
3d9b364b
authored
Şub 09, 2015
tarafından
Jan Holesovsky
Kaydeden (comit)
Miklos Vajna
Şub 16, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
It is not necessary to be _that_ verbose.
Change-Id: Ie7685beae20df8b3798070135fad529cde3604a9
üst
8ca64909
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
file.cxx
sal/osl/unx/file.cxx
+0
-3
No files found.
sal/osl/unx/file.cxx
Dosyayı görüntüle @
3d9b364b
...
@@ -281,7 +281,6 @@ sal_uInt64 FileHandle_Impl::getPos() const
...
@@ -281,7 +281,6 @@ sal_uInt64 FileHandle_Impl::getPos() const
oslFileError
FileHandle_Impl
::
setPos
(
sal_uInt64
uPos
)
oslFileError
FileHandle_Impl
::
setPos
(
sal_uInt64
uPos
)
{
{
SAL_INFO
(
"sal.file"
,
"FileHandle_Impl::setPos("
<<
m_fd
<<
", "
<<
getPos
()
<<
") => "
<<
uPos
);
m_fileptr
=
sal
::
static_int_cast
<
off_t
>
(
uPos
);
m_fileptr
=
sal
::
static_int_cast
<
off_t
>
(
uPos
);
return
osl_File_E_None
;
return
osl_File_E_None
;
}
}
...
@@ -377,7 +376,6 @@ oslFileError FileHandle_Impl::readAt (
...
@@ -377,7 +376,6 @@ oslFileError FileHandle_Impl::readAt (
if
(
-
1
==
nBytes
)
if
(
-
1
==
nBytes
)
return
oslTranslateFileError
(
OSL_FET_ERROR
,
errno
);
return
oslTranslateFileError
(
OSL_FET_ERROR
,
errno
);
SAL_INFO
(
"sal.file"
,
"FileHandle_Impl::readAt("
<<
m_fd
<<
", "
<<
nOffset
<<
", "
<<
nBytes
<<
")"
);
*
pBytesRead
=
nBytes
;
*
pBytesRead
=
nBytes
;
return
osl_File_E_None
;
return
osl_File_E_None
;
}
}
...
@@ -400,7 +398,6 @@ oslFileError FileHandle_Impl::writeAt (
...
@@ -400,7 +398,6 @@ oslFileError FileHandle_Impl::writeAt (
if
(
-
1
==
nBytes
)
if
(
-
1
==
nBytes
)
return
oslTranslateFileError
(
OSL_FET_ERROR
,
errno
);
return
oslTranslateFileError
(
OSL_FET_ERROR
,
errno
);
SAL_INFO
(
"sal.file"
,
"FileHandle_Impl::writeAt("
<<
m_fd
<<
", "
<<
nOffset
<<
", "
<<
nBytes
<<
")"
);
m_size
=
std
::
max
(
m_size
,
sal
::
static_int_cast
<
sal_uInt64
>
(
nOffset
+
nBytes
));
m_size
=
std
::
max
(
m_size
,
sal
::
static_int_cast
<
sal_uInt64
>
(
nOffset
+
nBytes
));
*
pBytesWritten
=
nBytes
;
*
pBytesWritten
=
nBytes
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment